
Recherche avancée
Autres articles (8)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (3139)
-
Cannot read xvid video with opencv in python on mac
15 février 2017, par crazjoI have been trying for hours to read a xvid .avi file on my mac with python 2.7 and opencv. I have installed all the latest versions using brew and opencv is working in python and I can open images and other movie files but when I try to read a xvid avi file with
cap.cv2.VideoCapture('video.AVI')
ret, frame = cap.read()It fails as frame is empty. I have installed ffmpeg with brew and x264 as well and ran brew doctor. I am totally lost what to do now. Happy to provide more information if needed. I hope someone can help me, thanks.
-
How to pass commands to an application from python
3 avril 2015, par shreI am trying to run ffmpeg application from python.I am using the following code to execute the application
import subprocess
subprocess.call([’C :/ffmpeg/bin/ffmpeg.exe’])by this command the application is getting executed. could somebody tell me how can i pass commands to the application, i tried
subprocess.call([’C :/ffmpeg/bin/ffmpeg.exe’,’ffmpeg -i 2.mp4 -vn -ab 128 outputaudio.mp3’])
but its not working.
-
How to delete one specific stream out of two audio streams from multiple video files of same properties using python ?
8 avril 2015, par Anvesh KurapatiI have a folder with 200(or more) video files, each approximately 70MB in size(which doesn’t matter), and contain one video, one text and two audio streams, and audio streams belong to two different languages. All the files have the same two language audio streams. So how to delete one specific audio stream of the language of user’s choice, from each file, and keep everything else intact. For a single file, I could’ve used mkvcleaver or some other GUI tools. Or even ffmpeg. But as its repetitive, as in Zen of python, I am thinking it could be automated. How do I do it in Python 3.4 ?