Recherche avancée

Médias (91)

Autres articles (62)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5548)

  • Please HELP Me with the followinf FFMpeg Code

    4 février 2016, par OMi

    I am using the following code to add plain text to videos. It works fine on localhost with EasyPHP server but I am not able to get the output on server (ffmpeg hosting). In addition, video conversion, video to audio everything is working fine. Please help me out. I need asap. Please give me your precious time.

    @exec('ffmpeg -y -i '.$source_file.' -vf drawtext="fontfile=font_omiA.ttf: \ text='.$watermark_text.': fontcolor=white@0.5: fontsize=20: \ x=(w-text_w)-3: y=(h-text_h-line_h)+10" '.$output_filename.'');

    Thank you, please help me :)

  • PHP - Problems running ffmpeg.exe with shell_exec on Windows

    30 septembre 2012, par King

    I am trying to encode an FLV file to MP4 with ffmpeg.exe, its all working fine when running the code on the commandprompt (I have tried simply echoing the command and pasting it into the cmdline)

    Note : Using windows.

    Here is the code :
    it does not return anything, and does not encode anything, there are no errors, nothing happens :(, system($cmd, $returnval) returns 1 that's all
    running commands like dir works fine, so I have the required access.

    <?php
    $title = $_GET['file'];
    // encoding command > , below shows info "flv/'.$title.'.flv" "mp4/'.$title.'.mp4"
    $cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -i "flv/'.$title.'.flv"');
    $ll = system($cmd, $fv);
    echo "CMD: $cmd \nFull output: $fv \nLL = $ll";
    ?>

    ffmpeg.exe -h will return the help text, I am starting to wonder if it could have something to do with the other outputs having colours in them ?

    Any ideas ? :O

    (The cd is not the problem because $cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -h'); works fine, its actually already in that directory)

  • Should I just replace OpenAL, FreeImage, and FFMPEG with SFML ?

    15 juillet 2012, par SteveDeFacto

    I needed SFML for creating a window and getting input but I also noticed it can replace many other libraries I've been using such as OpenAL, FreeImage, and FFMPEG. The only thing is that FFMPEG can load video files. However, others have made extensions to SFML to allow it to load video files and FFMPEG feels like more of a burden than it's worth since to do anything with it is very complex and building the library as static seems incredibly difficult. Are there any reasons I should keep using these other libraries when SFML appears to support everything I need ?