Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (49)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (5613)

  • How can I analyze file and detect if the file is in H.264 video format ? [on hold]

    5 octobre 2016, par codeDom

    I write software C/C++ to recover deleted files, and I need to identify files according to their binary content, so my question is there a simple way to know if a particular file is H.264 format video ? is H.264 has an signature ?

    I saw the code of FFMPEG here, but can it help me, how ?

  • Can not use ffmpeg to convert a flv file to mp4 file

    22 février 2023, par Karmylr

    I have a flv file, which can be played normally with potplayer, but it cannot be converted into mp4 format with ffmpeg. File : https://www.mediafire.com/file/ukexdhw15tyfrcx/2.22_xindongfang.flv/file

    


    I typed ffmpeg -i 2.22_xindongfang.flv -acodec copy -vcodec copy test.mp4, and the following error log appeared :

    


    [mp4 @ 0000018bbe928880] dimensions not set
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
Error initializing output stream 0:1 --


    


  • How to merge audio and video file using ffmpeg in python ?

    25 mai 2020, par NASK

    I need to merge both audio and video using ffmpeg in python 3.7,could you help me to solve this issue ?

    



    Here i used code :

    



    from pathlib import Path
glob_path = Path(r"D:\t")
file_name = [str(pp) for pp in glob_path.glob(r'**/*.mp4')]
print(file_name)

video_stream = ffmpeg.input(file_name[0])
audio_stream = ffmpeg.input(file_name[1])
print(video_stream)
print(audio_stream)
ffmpeg.output(audio_stream, video_stream, 'out.mp4').run()


    



    I getting this out put error

    



    [&#x27;D:\\t\\audio.mp4&#x27;, &#x27;D:\\t\\video.mp4&#x27;]&#xA;input(filename=&#x27;D:\\t\\audio.mp4&#x27;)[None] <b0ebefda3dca>&#xA;input(filename=&#x27;D:\\t\\video.mp4&#x27;)[None] &lt;388c87446fd1>&#xA;&#xA;&#xA;Traceback (most recent call last):&#xA;  File "C:\Users\LENOVO\PycharmProjects\calc_new\udownlod.py", line 18, in <module>&#xA;    ffmpeg.output(audio_stream, video_stream, &#x27;out.mp4&#x27;).run()&#xA;  File "C:\Users\LENOVO\PycharmProjects\calc_new\venv\lib\site-packages\ffmpeg\_run.py", line 320, in run&#xA;    overwrite_output=overwrite_output,&#xA;  File "C:\Users\LENOVO\PycharmProjects\calc_new\venv\lib\site-packages\ffmpeg\_run.py", line 285, in run_async&#xA;    args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream&#xA;  File "C:\Users\LENOVO\Anaconda3\lib\subprocess.py", line 775, in __init__&#xA;    restore_signals, start_new_session)&#xA;  File "C:\Users\LENOVO\Anaconda3\lib\subprocess.py", line 1178, in _execute_child&#xA;    startupinfo)&#xA;FileNotFoundError: [WinError 2] The system cannot find the file specified&#xA;</module></b0ebefda3dca>

    &#xA;