
Recherche avancée
Autres articles (55)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (6082)
-
Codeigniter - exec ffmpeg (win 8.1 with xampp)
31 août 2014, par xelAi want to merge some image files (jpeg,png) to a short stop motion video clip.
The User can upload the images and the webapp will do a short movie... Thats the plan.
I have tried some variations i found in www -> exec, shell_exec
The ffmpeg.exe is in my root Folder (xampp/htdocs/xxx/ffmpeg.exe)
I put a function in my controller to do the clip.
public function render() {
// Save the Session ID into the variable sessionId
$sessionId = $this->session->userdata('session_id');
// Path to the Userimage-Folder
$image_path = "C:\xampp\htdocs\xxx\uploads\$sessionId";
$command = "C:\xampp\htdocs\xxx\ffmpeg -framerate 1/5 -i".$image_path."/img_%03d.JPG -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4";
exec($command);
}The images are already in the same format and have a consecutive numbering.
I’am still a beginner, so please help me.
regards :)
-
FFMPEG Wrapping a raw video stream with OGG (or another wrapper)
9 juillet 2014, par CykonI’m building an application which takes in a rawvideo stream (piped in from an ffmpeg instance), manipulates and reads the raw video data, and pipes the output to another ffmpeg instance for encoding. Everything works great, however I’ve been trying to think of a solution which would allow audio to be sent into my program as well.
The Ogg container seems to have a great C library, and it appears as if there has been some movement to add support for raw video https://wiki.xiph.org/OggRGB
My plan was to pipe in a stream formatted for Ogg, use libogg to demux it, after parsing through the video data and manipulating it... use libogg again to encode and pipe out.
Unfortunately, FFMPEG throws an "Unsupported codec id in stream 0" error when asked to output OGG with rawvideo.
My test ffmpeg command is as follows :
ffmpeg.exe -i fs0.mp4 -f ogg -c:v rawvideo -pix_fmt rgb24 -s 192x144 -
Any solutions, or alternative solutions are welcome. As a side note, my program has the ability to take in multiple videos at once and outputs a combination of the inputs.
-
how to convert any audio file to wav on server side with node.js [on hold]
9 juin 2014, par pufmaigremy dear stackoverflow
I spent hours looking for an efficient and pretty way to transcode audio on server side, and I found a lot of informations... actually too much informations.
Sox for Node.js looks fine but there are not so much documentation, I was unable to convert a mp3 to wav with it :
https://www.npmjs.org/package/sox
Then fluent ffmpeg sounds good but I have the feeling I will loose a lot of time to achieve my goal with it :
https://github.com/fluent-ffmpeg/node-fluent-ffmpeg
and then i found some more obscure stuff like those ones :
https://github.com/andrewrk/node-plan-transcode
https://github.com/benvanik/node-transcoding
I’m not sure it’s really the "stackoverflow spirit" but I’m asking you wich way would you choose to achieve my goal because I’m feeling lost in the codec jungle.
thanks in advance !! love :)