
Recherche avancée
Autres articles (53)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (6388)
-
Fast FFMPEG Convert to MP3 and Download Using PHP
17 août 2016, par dickecilI using this command below to convert .m4a file into .mp3 file
system( "ffmpeg -i " . $m4a . " -ar 44100 -ab 128k -ac 2 " . $mp3 );
But it take up to 30 second until can downloadable using php.
Any idea to make it faster (like 2-5 second only) ?
-
ffmpeg hangs during download on network lags
30 juin 2016, par VladimirLeninffmpeg hangs infinitely when cutting off wifi while downloading m3u8 (which goes through http actually). Same happens occasionaly when trying to download multiple files from script probably due to network lags. Tried
-tiemout
option but with no avail.ffmpeg -y -i 'http://c.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=5005890079001&videoId=5005830251001' -c copy -f mp4 -bsf:a aac_adtstoasc 'file:/home/serj/.mirror0/OUT_DATA2/www.watoday.com.au/title-page/Sydney v Western Bulldogs: Scoring woes could cost Swans, Dogs a flag/00001-FootyFix - Can the Doggies upset the Swans again.mp4' -timeout 1000000
-
Download HLS ( HTTP ) Stream video using python
19 mai 2016, par LeDerpI need to download a streaming video(from a URL) using python the command line argument would be :
ffmpeg -i URL stream.mp4
I know I can use the subprocess command
subprocess.call('ffmpeg -i '+ URL +' stream.mp4', shell=True)
Is there any alternative like a API that I can use instead of using subprocess command