Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (40)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

Sur d’autres sites (9254)

  • How to make terminal refer to more recent ffmpeg installation path (currently refers to Anaconda's installation) ? [on hold]

    29 janvier 2019, par John Doe

    I would like to use ffmpeg to convert a WAV audio file to MP3, but ffmpeg doesn’t have a native MP3 encoder. Their documentation says you can use the external libmp3lame encoding library to achieve this, which "requires the presence of the libmp3lame headers and library during configuration" by "explicitly configur[ing] the build with —enable-libmp3lame."

    I tried installing the latest version of ffmpeg to my desktop and followed the configuration instructions to include libmp3lame. However, when I tried it out in my terminal, I got an error saying that ffmpeg could not find the libmp3lame encoder.

    When I enter "which ffmpeg" into my terminal, the path I am given refers to another, older installation of ffmpeg that was included automatically when I installed Anaconda years ago.

    How can I change the path of the installation my terminal refers to so that when I execute ffmpeg commands, it will use the version I more recently configured to include libmp3lame on my desktop and not the older installation included in Anaconda’s directories ?

  • How do you include ffmpeg in a php enviroment

    6 février 2019, par Joseph Williamson

    So looking through documentation and answers on stack overflow all leave out one detail thats throwing me off and thats how to actually include the library

    Following along the code listed here ffmpeg-php to create thumbnail of video

    class VideoTile
    {
       public static function createMovieThumb($srcFile, $destFile = "test.jpg")
       {
           // Change the path according to your server.
           $ffmpeg_path = 'D:\\ffmpeg\\bin\\';

           $output = array();

           $cmd = sprintf('%sffmpeg -i %s -an -ss 00:00:05 -r 1 -vframes 1 -y %s',
               $ffmpeg_path, $srcFile, $destFile);

           if (strtoupper(substr(PHP_OS, 0, 3) == 'WIN'))
               $cmd = str_replace('/', DIRECTORY_SEPARATOR, $cmd);
           else
               $cmd = str_replace('\\', DIRECTORY_SEPARATOR, $cmd);

           exec($cmd, $output, $retval);

           if ($retval)
               return false;

           return $destFile;
       }
    }

    The ffmpeg path is D:\\ffmpeg\\bin\\ I have downloaded the latest release for ffmpeg(4.1) and the uncompressed file does not contain any directory for bin

    I am very confused as to actually use this even with detailed code saying how to if I do not even know how to dictate the proper path

    I also realize that the link is almost 5 years old but as there are no post outlining how to do this in so long I figure its about time for some clear,concise, detailed solutions

  • Developing a multi-tool video & audio program

    14 février 2019, par Risviltsov

    I’m in the middle of the Microsoft TEALS Java program, and we’ve just done a picture editor. I got an idea to develop a multi-tool program that edits video and audio programs professionally for those who can’t afford $2,000 in editing programs but demand all the tools. I’ve ran into a brick wall with the planning :

    What tools should I put in it ? I want this program to have most, if not all possible ways to change media files (as if I was to combine programs like Audacity, a lot of Adobe programs, etc.)

    I’m learning up FFMPEG and AWT, but I really want to tackle this project’s planning this year, to tackle on the programming in the next two years independently. Yay straightforward freeware* & too much time !

    (I don’t think this post belongs here, but I’m in search of help for I have no budget nor any help [it’s going into culinary])

    Thanks for your time.