
Recherche avancée
Autres articles (66)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 2011Documentation 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 (...)
Sur d’autres sites (8799)
-
Can I merge h264 and aac to ts stream by code ?
20 octobre 2015, par whyThere are one h264 stream and aac stream I received from USB devise, I need to merge them and output to one file, I can do it by ffmpeg by
FFMpeg: ffmpeg -i audio.au -i video.h264 -vcodec copy -acodec copy play.ts
I want to do this in my c code, which is one linux c application.
who can gave me some examples code or tip ?
-
ffmpeg 4 or higher c++ code equivalence of this command ? [closed]
25 février 2020, par AintsoaI want the equivalence of this command on c++ code :
ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
I know that to make it we must use ffmpegcpp::Filter class like :
Filter* filter = new Filter("scale=640:150,transpose=cclock,vignette", encoder)
It’s for rotate but for the overlay ? thanks !!
-
System command error code of 126
15 octobre 2012, par mike O.Please, I am trying to convert an mpg file to flv with ffmpeg. I am using the php system() command to execute it. However, I get an error code of 126. Any idea of what that means ? Here is my code :
system($ffmpegPath. " -i ". $srcFile. " -b 4000k -maxrate 4000k -bufsize 1835k ". $destFile, $cmd_status)
Thanks. I discovered I was referring to the wrong ffmpeg binary. However, now that I am pointing to the right binary, I get an error of 127. Any help ?