Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (55)

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

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8666)

  • FFMPEG, Netbeans and C++ [duplicate]

    28 janvier 2017, par Murtadha

    This question already has an answer here :

    I used to work on C++ project on Netbeans and I would like to use ffmpeg libraries / include files all the stuff inside my program. I don’t know how to install ffmpeg in there and integrate it with Netbeans have installed also the latest mingw ? I have surfed the net for such a topic then I have found one but to be honest I understand a very little.

    System info :

    Windows 8 64bit
    Netbeans 7.3 32.b
    mingw 32bit
    opencv 4.4 32.bit

  • FFmpeg chokes on filenames inside of quotes w/ whitespaces [duplicate]

    18 février 2016, par user3578907

    This question already has an answer here :

    I’m trying to convert all of my FLACs in to MP3s. Each artist has a folder, and each album has a subfolder. I used the find command to compile a clean list of all of the FLACs in to a file called songlist, and tried dumping it in to FFmpeg with

    (for SONG in `cat songlist` ; do ffmpeg -i "$SONG" -f mp3 -ab 256000 "`basename "$SONG" .flac`.mp3" || break; done)

    Any time ffmpeg reaches a file with a space or special character it interprets it directly. I don’t understand why, as I thought the quotes around $SONG would sanitize it enough. Any thoughts on how to accomplish this task more efficiently or how to fix my code are welcomed.

    songlist is just filled with full paths to the files. No quotes around the paths.

  • how to concat multiple image paths to video using ffmpeg [duplicate]

    25 avril 2017, par Charith Valluru

    This question already has an answer here :

    how can i concat multiple image paths in command line and convert it into a mp4 using ffmeg. I have tried using pipe(|), space and comma too.

    Any help would be really appreciated.