Recherche avancée

Médias (91)

Autres articles (8)

  • Les formats acceptés

    28 janvier 2010, par

    Les 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 (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (508)

  • [FFMPEG]some dsd audio file cannot play with ffmpeg

    27 septembre 2022, par wazrx wazrxyya

    I'm writing an iOS music APP with FFMPEG, in the compile config, I add dsd_lsbf_planar、dsd_lsbf、dsd_msbf_planar、dsd_msbf, but not all the dsd files can play, the examples are below :

    


    Stream1 Audio : dsd_lsbf_planar, 352800 Hz, stereo, fltp, 5644 kb/s

    


    Stream2 : Audio : dsd_msbf (DSD / 0x20445344), 352800 Hz, stereo, fltp, 5644 kb/s

    


    the stream1 can play ,but the stream2 can not play, when I try to play it, an error happens in "avformat_open_input" method with error tip "Invalid data found when processing input"

    


    I do not know how to fixed it, someone can help me ? thanks very much !

    


  • ffmpeg mobile convert error (ffmpeg 2.0.2)

    6 février 2016, par user3273412

    My ffmpeg is showing this in the logs when I try to convert a video into mobile format

    [aac @ 0xf50860] The encoder ’aac’ is experimental but experimental codecs are not enabled, add ’-strict -2’ if you want to use it.
    /usr/bin/ffmpeg -i ’/home/admin/site/media/videos/flv/127.flv’ -y -y -vcodec libx264 -threads 0 -aspect 16:9 -s 432x240 -flags +loop -partitions 0 -subq 1 -trellis 0 -refs 1 -coder 0 -me_range 16 -g 300 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -maxrate 10M -bufsize 10M -rc_eq ’blurCplx^(1-qComp)’ -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -f mp4 -b:v 1800k -acodec libfaac -ac 2 -ab 128k -ar 44100 -profile:v baseline -level 1.3 -preset slow -pass 2 -passlogfile /home/admin/site/tmp/logs/ffmpegpass-PqkhuZH2 /home/admin/site/media/videos/mobile/127.nomov.mp4

    Anyone help me solve this issue please ?

  • ffmpeg-python wrapper ffmpeg.run() getting FILENOTFOUNDERROR

    26 novembre 2020, par Gerald Leese

    I'm trying to figure out and learn how to use the ffmpeg-python wrapper and am getting a file not found error. both the mp4 file I'm trying to process and the python file are both in a folder on my desktop. I'm not sure if I'm using it correctly here.

    



    I'm running windows 10 32bit, python 3.6 and have ffmpeg-python 0.16.0 installed. Is there additional packages I need installed in order for this to work ? I tried the same code on my 64 bit windows 10 desktop and got the same error.

    



    import ffmpeg

videoInput = ffmpeg.input('vid.mp4')

videoOutput = videoInput.output('test.avi')

videoOutput.run()


    



    This is the error that I get in python shell

    



    Traceback (most recent call last):&#xA;  File "C:\Users\geral\Desktop\PythonPrograms\ffmpegexample.py", line 7, in <module>&#xA;    videoOutput.run()&#xA;  File "C:\Users\geral\AppData\Local\Programs\Python\Python36-32\lib\site-packages\ffmpeg\_run.py", line 300, in run&#xA;    overwrite_output=overwrite_output,&#xA;  File "C:\Users\geral\AppData\Local\Programs\Python\Python36-32\lib\site-packages\ffmpeg\_run.py", line 272, in run_async&#xA;    args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream)&#xA;  File "C:\Users\geral\AppData\Local\Programs\Python\Python36-32\lib\subprocess.py", line 709, in __init__&#xA;    restore_signals, start_new_session)&#xA;  File "C:\Users\geral\AppData\Local\Programs\Python\Python36-32\lib\subprocess.py", line 997, in _execute_child&#xA;    startupinfo)&#xA;FileNotFoundError: [WinError 2] The system cannot find the file specified&#xA;</module>

    &#xA;