
Recherche avancée
Autres articles (28)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (2734)
-
Anomalie #4124 : changer de fournisseur de vignette ou les supprimer
6 avril 2018, par cam.lafit -Salut
Par défaut je ne pense que la fonctionnalité des aperçus doit être
gérée dans SPIP même. Comme noté on a entre autres raisons la
dépendance à service tiers non maîtrisés.
Je ne pense pas non plus qu’on doive fournir un service spip sur ce
sujet, comme on peut le voir avec la danse des services existants
c’est une plaie à maintenir.Le fait de gérer ceci via un plugin simplifie la mise à jours des
serveurs de vignette. Thumbsite a été codé pour permettre l’ajout et
le retrait simple d’un générateur d’aperçu. Donc si easy-thumb est
manquant c’est facile à faire.Pour ma part par défaut, on devrait avoir l’option 2 : retirer la
gestion des vigenttes. On laisserait 2 plugins faire mieux si besoin
(un pour les aperçus sans présupposer de leur usages et un pour
surcharger statistiques si besoin) -
Automatically match output file with input file (Applescript x FFMPEG)
2 mars 2018, par WallieI use the following AppleScript as an Automator Service to right click a video file in the finder and burn in a matching subtitle file (.ass) with an ffmpeg terminal command. In this case ffmpeg encodes a new Prores 422(HQ) file.
on run {input, parameters}
tell application "Terminal"
activate
set filesString to ""
repeat with file_ in input
set filesString to filesString & " " & quoted form of (POSIX path of file_)
end repeat
do script "for f in" & filesString & "; do
base=$f
ffmpeg -y -i \"$base\" -c:v prores -profile:v 3 -pix_fmt yuv422p10le -vf \"ass=${base%.*}.ass\" -c:a copy \"${base%.*}_sub.mov\";
done"
end tell
return input
end runWould it be possible to automatically match the output file and it’s codec to the input file ?
We use a lot of different input formats due to a mixed windows / mac environment (Prores (mov), dnxhr (mxf/mov)) and I would like to not have 8-12 encoding options in the finder service menu’s of the workstations :).Thanks in advance !!
-
ffmpeg install failing on docker container
18 mai 2022, par Sarang ManjrekarI have a Dockerfile as below, where i am trying to install ffmpeg for audio-video processing.



FROM ubuntu:18.04
RUN apt-get update 
RUN apt install ffmpeg -y --fix-missing




I have tried other versions of Ubuntu docker image as well, but i keep getting the error as



E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/s/slang2/libslang2_2.3.1a-3ubuntu1_amd64.deb 503 Service Unavailable [IP: 91.189.88.162 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors4_3.4.0-4_amd64.deb 503 Service Unavailable [IP: 91.189.88.162 80]
E: Aborting install.




Where if i use the Libav-tools as :



RUN apt-get install libav-tools -y




I get the error as I need to update to avconv version 10, which is not helping either.



Can anyone here help for how should I go about extracting audio from videos on docker container ?