
Recherche avancée
Autres articles (106)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (13491)
-
Generate script from Handbrake preset
11 avril 2018, par cclloydIs it possible to generate a script/command to run from a Handbrake preset or from the queue on OS X ?
Like take the queue and generate a command I can run in terminal instead of through the GUI ? (Either with ffmpeg or with HandBrakeCLI)
-
ffmpeg gives rc buffer underflow error when streaming webcam [on hold]
9 novembre 2017, par Ard BoerI use this command in my terminal to stream my webcam locally :
ffmpeg -f avfoundation -pixel_format yuyv422 -framerate 10 -i "0" -b:v 512kb -maxrate 512kb -bufsize 512kb -an http://localhost:8090/feed2.ffm
For some reason it gives an error "rc buffer underflow". Hope someone can help me out to fix this.
-
How can I use ffmpeg with PHP's exec( ) command ?
22 janvier 2012, par John AndersonI'm running Max OS 10.7, MAMP (PHP 5.3.6), with FFMPEG installed. I want to convert videos from one format to another. The following entered into Terminal works fine :
ffmpeg -i /path/video.wmv /path/video.flv
The file video.wmv is converted to video.flv. Great ! Now, this PHP line DOESN'T work :
exec('ffmpeg -i /path/video.wmv /path/video.flv');
Why ? I've spent many hours reading up on this and I still can't figure out what is wrong. I have read the other discussions on this topic and there is no clear answer. Any help would be greatly appreciated ! (PHP safe_mode is off).