Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (43)

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

  • Les vidéos

    21 avril 2011, par

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (6875)

  • concat selected videos in textfile using ffmpeg

    12 mai 2022, par tejas netradyne

    i want to select videos from file1.txt which contains

    


      

    1. file 'video1.mp4'
    2. 


    3. file 'video2.mp4'
    4. 


    5. file 'video3.mp4'
    6. 


    


    using ffmpeg command i store them in file1.txt and concatenate it :

    


    command= ffmpeg -f concat -i < ( for f in *.mp4; do echo "file '$(pwd)/$f'"; done ) outputfile.mp4


    


    how to apply start and end to this so that i can select videos starting from video1.mp4 to video2.mp4 to be concatenated using python.

    


  • You can generate a video with audio and videos clip with ffmpeg

    8 mai 2018, par Jhonny Luis

    I am making an application in which I have to generate a single video clip of x duration, I was recommended to use the ffmpeg but I do not know if it could be created and if possible how the structure would be, since I understand that you need a file with a structure in which the path is established in this case videos and audio, I am working on codeigniter with php 7, I have already executed the ffmpeg to change the format of a video.

    The question is the following, from a database I bring the list of the route of the videos its duration and weight, equal with the audios, the thing is how I can do to create the video with ffmpeg from this.

  • shell script to convert several videos into mp4 using ffmpeg

    20 juillet 2012, par Subhransu

    I am trying to write a shell script to convert several videos to mp4 format :

    HERE IS THE CODE


    UPDATE

    It is executing ,but when i am checking the folder no file were being converted .

    Please help me with this .