Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (54)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (4175)

  • FFMPEG and PHP on mac does`t work

    8 août 2014, par Thomás Marques

    I need your help. Currently I use Mac OS X 10.9.4 and xampp apache 1.8.3-3. I need to use ffmpeg (version 3.2) to convert video files via php exec() but I cannot make it work. I did some testing running the terminal command line and the system operates normally. Only in php it doesn’t work.
    ffmpeg was compiled and installed through the brew.

    I ran the following test :

    exec("/usr/local/Cellar/ffmpeg/2.3/bin/ffmpeg -i /Applications/XAMPP/xamppfiles/htdocs/teste/trailer.mp4 /Applications/XAMPP/xamppfiles/htdocs/teste/trailer2.flv 2>&1", $o, $v);
    var_dump($o);
    var_dump($v);

    and got the following :

    array(4) {
       [0]=> string(51) "dyld: Symbol not found: __cg_jpeg_resync_to_restart"
       [1]=> string(82) "Referenced from: /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO"
       [2]=> string(63) "Expected in: /Applications/XAMPP/xamppfiles/lib/libJPEG.dylib"
       [3]=> string(67) " in /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO" } int(133)
  • jsp : process exec issue

    10 février 2012, par asd

    I have a problem when I try to execute the ffmpeg program to convert a video in a jsp page.

               Runtime rt = Runtime.getRuntime();                
               String comando;                
               comando = "ffmpeg -i \"" + saveFile + "\" -f mov -acodec libmp3lame -ab 128k -ar 48000 -ac 2 -y -vcodec libx264 \""+ absolute_path + "video\\conv\\" + file_name+"."+"mp4\"\n";
               out.println(comando);                
               Process p =  rt.exec(comando);

    the ffmpeg process start but it don't do anything and it doesn't end until manually terminated.
    When I execute the same line using cmd.exe it works without asking for any input, so I can't understand why the process don't convert this video.
    For developing I am using netbeans with the glassfish 3.1 server.
    Have you got any ideas on how could I see the output of the program executed by jsp or how could I fix it or any other ideas for converting a video in mp4 by a jsp page ?
    Thank you for your help.

  • ffmpeg and windows command line

    6 janvier 2013, par Kasper DK

    I am trying to use ffmpeg for windows to convert thousands of images and sounds to a single video file.

    ffmpeg -i apples.jpg -i oranges.jpg -i orangessound.wav -i bananas.jpg -vcodec mpeg4 test.avi

    My delphi program generates the command line as a string, and I use shellexecute to call it.

    But is it true that a command line cannot be longer than 8191 characters ? If so, can ffmpeg read the parameters from a file instead ?

    It is not possible in this case to rename the pictures with consecutive numbers