Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (56)

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

  • Revision 39c5a4b8be : tools_common.sh : Set VPX_TEST_EXE_SUFFIX for windows targets. Change-Id : Ic3c79

    23 avril 2014, par Tom Finegan

    Changed Paths :
     Modify /test/tools_common.sh



    tools_common.sh : Set VPX_TEST_EXE_SUFFIX for windows targets.

    Change-Id : Ic3c792bcb76917c4d4b829d0377a9c36e06dd77d

  • Building ffmpeg on Windows

    27 février 2014, par Niranjan

    I've the source code of ffmpeg and would like to build it in my win7. I've minGW installed on my machine. I found a step by step instruction from this link :

    http://www.gooli.org/blog/building-ffmpeg-for-windows-with-msys-and-mingw/

    The link 'Download updated bash for MSYS' did not follow. It showed the file is not found. When I try to build the program the way explained in the site, it shows an error :

    Unknown option “–extra-cflags=-mno-cygwin”.
    See ./configure –help for available options.
    ./myconfig : –extra-ldflags=-Wl,–add-stdcall-alias : command not found
    ./myconfig : –target-os=mingw32 : command not found

    From a similar question posted here, I followed the link http://ffmpeg.arrozcru.org/ but the static build downloaded from the site was corrupted. Pls help.

  • How to use the -threads option in fluent-ffmpeg for a windows server ?

    8 janvier 2020, par MetroSlim

    I’m struggling to find the right way to pass the -threads option to fluent-ffmpeg and to make it work nicely on a windows server.

    My actual process is code as follow :

    ffmpeg(video.pathToFile)      
           .input(musicFile)        
           .output(outputVideoFile)
           .outputOptions([
             '-c:v libx264',
             '-c:a aac',
             '-shortest',
             '-threads 2',
           ])
           .on('end', () => {          
               console.log("Merge done in : ", Math.round(+new Date()/1000) - unixTimestamp, 'sec');

               video.pathToFile = outputVideoFile;
               resolve(video);
           })
           .on('error', (error) => {
               reject(error);
           })
           .on('progress', function(info) {
               console.log('progress ' + info.percent + '%');
            })
           .run();

    But it doesn’t seems to work, I still get a 95% of CPU usage and I have 4 physicals cores on my windows server.