Recherche avancée

Médias (0)

Mot : - Tags -/api

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (52)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • Revision 59408 : Au final si... c’était nécessaire

    16 mars 2012, par kent1@… — Log

    Au final si... c’était nécessaire

  • ffmpeg command for create final video from two different videos and two different audios

    16 décembre 2020, par Kashyap Rathod

    I have two videos and two audios

    


    1 :-
video 1 - length :- 60 sec || audio 1 - length :- 15 sec

    


    2 :-
video - length :- 86 sec || audio 2 - length :- 18 sec

    


    Play video1 and audio1 together, if audio1 is ended then restart that audio till video1 end. this will final video 1.

    


    same way,

    


    play video2 and audio2 together, if audio2 is ended then restart that audio till video2 end. this will final video 2.

    


    after that concatenate those final video 1 and final video 2 and create single video as output.

    


    Thank you in advance.

    


  • Extract final frame from a video using ffmpeg

    14 mai 2020, par Saavestro

    I know how to extract the first frame by using

    



    ffmpeg -ss 00:00:00 -i input.mp4 -vframes 1 -q:v 31 output.png

    



    Here, the option -ss requires to know the exact time of the frame to extract.

    



    I would like to have the final frame of any .mp4 without knowing the exact final time of the video.

    



    Is there a way to achieve this ?