Recherche avancée

Médias (91)

Autres articles (112)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

Sur d’autres sites (11697)

  • (WinError 2) combining video (.mp4) and audio (.mp4) using Python ffmpeg

    28 mai 2021, par Leon

    I'm new to using ffmpeg, and I'm trying to use ffmpeg to combine an audio only (.mp4 format) and a video only (also .mp4 format)

    


    I've tried reinstall FFmpeg, ffmpeg, and ffmpeg-python :

    


    import ffmpeg

def main():
    video_stream = ffmpeg.input('Video.mp4')
    audio_stream = ffmpeg.input('Audio.mp4')
    ffmpeg.output(audio_stream, video_stream, 'result.mp4').run()


if __name__ == "__main__":
    main() 


    


    It returns me this error :

    


    Traceback (most recent call last):&#xA;  File "C:\Users\leon\Downloads\Youtube_Project\Youtube_Combine.py", line 15, in <module>&#xA;    main()&#xA;  File "C:\Users\leon\Downloads\Youtube_Project\Youtube_Combine.py", line 11, in main&#xA;    ffmpeg.output(audio_stream, video_stream, &#x27;result.mp4&#x27;).run()&#xA;  File "C:\Users\leon\Downloads\Youtube_Project\venv\Downloads\lib\site-packages\ffmpeg\_run.py", line 313, in run&#xA;    process = run_async(&#xA;  File "C:\Users\leon\Downloads\Youtube_Project\venv\Downloads\lib\site-packages\ffmpeg\_run.py", line 284, in run_async&#xA;    return subprocess.Popen(&#xA;  File "C:\Users\leon\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__&#xA;    self._execute_child(args, executable, preexec_fn, close_fds,&#xA;  File "C:\Users\leon\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child&#xA;    hp, ht, pid, tid = _winapi.CreateProcess(executable, args,&#xA;FileNotFoundError: [WinError 2] The system cannot find the file specified&#xA;</module>

    &#xA;

  • Importing sub module of FFmpeg in Android

    3 mars 2024, par M. Usman Khan

    I was able to import the "full" module of FFmpeg library in Android like this :

    &#xA;

    api &#x27;com.arthenica:ffmpeg-kit-full:6.0-2&#x27;&#xA;

    &#xA;

    But this was adding about 90mb to my app. So I tried to import only "min-gpl" like

    &#xA;

    api &#x27;com.arthenica:ffmpeg-kit-min-gpl:6.0-2&#x27;&#xA;

    &#xA;

    But instead of decreasing, this actually increased my app size further (about 100mb).

    &#xA;

    Am I not doing it right ?

    &#xA;

  • Complex Text Animations with FFMPEG [closed]

    5 novembre 2020, par Judah Meek

    I'm trying to figure out how the text animations used by https://storycreatorapp.com/demo (click on "text" on the left sidebar to view them) are created.

    &#xA;

    I understand that the drawtext filter usually is used to draw the text, but what filter is used to hide the text at the beginning of the text animation (most of the animations have text seemingly to slide out from nowhere right in the middle of the screen) ?

    &#xA;