Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (79)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

Sur d’autres sites (8002)

  • Set libm in the configure script if the OS has libm

    11 septembre 2012, par Brad Smith

    Set libm in the configure script if the OS has libm

  • Revision b192d99f73 : Fix ads2gas script to look for ALIGN as a word. Change-Id : I4efc4f4e87e8666b692

    11 décembre 2012, par Frank Galligan

    Changed Paths : Modify /build/make/ads2gas.pl Fix ads2gas script to look for ALIGN as a word. Change-Id : I4efc4f4e87e8666b69257de82c5c5dd4aadee28c

  • Windows Batch Script For loop

    14 avril 2013, par Dobbo1989

    I am new to batch scripts, I am trying to figure out how to create a script that will take all video files in a folder videos*.* and then use ffmpeg on each one and output the files to converted*.mp4 where the filenames are the same.

    However I cant figure out how to get the for loop working so that I can extract the name and extension type of file I am processing.

    for %%f IN (videos\*.*) DO (convert.bat %%f)

    convert.bat

    ffmpeg.exe -i %1 -f mp4 converted\%~n.mp4

    I have tried both with and without double quotes however it wont recognise the file.