Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (111)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

Sur d’autres sites (7845)

  • List of file and the file size using cmd or media info/ffmpeg [duplicate]

    22 juillet 2021, par firekid2018

    We can use to get the file name dir /b>list.txt using windows CMD. is there anyway we can get the file size info with name using cmd/mediainfo/ffmpeg or other app ? CMD can generate the file size but it's in "bytes" formate. i am looking for KB/MB/GB format.

    


    logo.png 32KB
Header.png 160kb


    


  • How to embed SCC closed caption file into a video file mov/mp4/mpg

    5 août 2015, par Santhosh S

    I am trying to embed a closed caption (SCC) file into a video file and hitting on some problems.

    Please suggest how to embed SCC closed caption file into a video file mov/mp4/mpg

    Does FFMPEG support closed captions - scc files as input ?

    Which open source tools can I use to do the above task ?

    Thanks

  • GIF file running only once in MP4 output file using FFMPEG

    5 février 2023, par asdasd asdasd

    I have a gif file with accompanying mp3 music.

    


    My goal is to run the gif file with the mp3 music file and out-put it as an MP4 file. This works, HOWEVER

    


    Once the file is outputted, I have some issues

    


    Firstly, the gif runs only once and freezes after that, the music runs until the file ends.

    


    Here is the fmpegg command I am using

    


     subprocess.run(
        ["ffmpeg", "-i", gif_file, "-i", chosen_mp3, "-pix_fmt", "yuv420p", "-t", "10", "-loop", "0", output_file],
        check=True,shell=True
    )


    


    How can I make it so that the gif does not freeze up after running once, i.e loops until end of file or loops for an N amount of times ?

    


    In the code above, I tried to make it loop for 10 seconds but still the same issue is happening.