Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (61)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7462)

  • Naming convention to create/merge multiple video files

    25 octobre 2015, par Anay Bose

    I am trying to concat a few .mp4 files. I first create intermediate .mpg clips, and then merge them together with ’cat’ command ; then convert it to .mp4 files

    for example,

    ffmpeg -i input1.mp4 -qscale:v 1 intermediate1.mpg
    ffmpeg -i input2.mp4 -qscale:v 1 intermediate2.mpg

    // Now merge them together

    cat intermediate1.mpg intermediate2.mpg > intermediate_all.mpg
    ffmpeg -i intermediate_all.mpg -qscale:v 2 output.mp4

    Now, I would like to merge all .mpg files within a directory
    the following command works if I have max 9 .mpg files

    cat folder/*.mpg > intermediate_all.mpg

    But, if I got more then 9 .mpg files, the movie sequence breakes, meaning no. 10 clip shows up after no. 1 clip which I do not want. Is there any naming convention that I can follow with ffmpeg. In imagemagick, I can easily use the following syntax and it works, but in ffmpeg it is not working.

    cat folder/%d.mpg or cat folder/%d.mpg[0-10]
  • avdevice/x11grab : rename the "w" Window to "root" in paint_mouse_pointer

    8 septembre 2014, par Antonio Ospite
    avdevice/x11grab : rename the "w" Window to "root" in paint_mouse_pointer
    

    This specifies better the meaning of the variable, and is also in
    preparation of a subsequent change which will introduce a temporary
    Window variable for which "w" is an good name.

    Signed-off-by : Antonio Ospite <ao2@ao2.it>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavdevice/x11grab.c
  • ffmpeg - convert image sequence to video with reversed order

    28 mars 2018, par 0__

    Looking at the docs, it is not apparent to me whether ffmpeg would allow me to convert an image sequence to a video in reverse order, for example using this sequence :

    frame-1000.jpg
    frame-999.jpg
    frame-998.jpg
    ...
    frame-1.jpg

    Is it possible to give a "step direction" for the frame indices ?