
Advanced search
Medias (91)
-
Collections - Formulaire de création rapide
19 February 2013, by
Updated: February 2013
Language: français
Type: Picture
-
Les Miserables
4 June 2012, by
Updated: February 2013
Language: English
Type: Text
-
Ne pas afficher certaines informations : page d’accueil
23 November 2011, by
Updated: November 2011
Language: français
Type: Picture
-
The Great Big Beautiful Tomorrow
28 October 2011, by
Updated: October 2011
Language: English
Type: Text
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 October 2011, by
Updated: October 2011
Language: English
Type: Text
-
Rennes Emotion Map 2010-11
19 October 2011, by
Updated: July 2013
Language: français
Type: Text
Other articles (67)
-
La sauvegarde automatique de canaux SPIP
1 April 2010, byDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Script d’installation automatique de MediaSPIP
25 April 2011, byAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Automated installation script of MediaSPIP
25 April 2011, byTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
On other websites (6219)
-
How to convert the AVPacket of ffmpeg to the webm stream with c++ code?
2 December 2020, by MichaelGDI am confused how to convert the ffmpeg AVPacket to a living stream in order to I can play it with HTML5.


I have already got the
AVPacket
of ffmpeg withavcodec_encode_video2


AVPacket pkt_; 
ret = avcodec_encode_video2(c_, &pkt_, picture_, &got_frame);



And I also know how to dump the packet to webM file.


file_.write(reinterpret_cast<char>(&(pkt_.size)), sizeof(int));
file_.write(reinterpret_cast<char>(&timestamp), sizeof(uint64_t));
file_.write(reinterpret_cast<char>(pkt_.data), pkt_.size);
</char></char></char>


But, How can I create a stream server with the packets for front-end playing?


-
ffmpwg failed with code 1 at ChildProcess
13 January 2021, by awabsI am trying to add a watermark over the a video in firebase storage using firebase functions and ffmpeg,
but no matter what I try it always exit the same error.


return spawn('ffmpeg', ['-i', tmpFilePath, '-vf',`drawtext="text='hello World'`, tmpFilePath]);



And I tried this as well:


return spawn('ffmpeg', ['-i', tmpFilePath, '-i', tmpLogoPath, '-filter_complex', '"overlay=10:10"', tmpFilePath]);



console log:


ChildProcessError: `ffmpeg -i /tmp/anything -vf drawtext="text='Stack Overflow' /tmp/anything` failed with code 1
at ChildProcess.<anonymous> (/workspace/node_modules/child-process-promise/lib/index.js:132:23)
at ChildProcess.emit (events.js:315:20)
at ChildProcess.EventEmitter.emit (domain.js:506:15)
at maybeClose (internal/child_process.js:1021:16)
at Socket.<anonymous> (internal/child_process.js:443:11)
at Socket.emit (events.js:315:20)
at Socket.EventEmitter.emit (domain.js:506:15)
at Pipe.<anonymous> (net.js:674:12)
at Pipe.callbackTrampoline (internal/async_hooks.js:120:14)
</anonymous></anonymous></anonymous>


-
Make .png and .gif to mp4 video using java code [closed]
17 February 2020, by Rahul KumarI have tried to make mp4 video using ffmpeg commond
with 2 .png image and one gif image to mp4 videoSequence of the video will be
aa1.png -> bb1.gif ->cc1.png = output.mp4I have tried this code
Process sysprocess = Runtime.getRuntime().exec(ffmpegPath+" -y -framerate 1 -start_number 1 -i "+splitFileGif+"\\img9.png -i "+splitFileGif+"\\"+animationImageFile.getOriginalFilename()+" -i "+splitFileGif+"\\main.mp3 -vf scale=720:756 -c:v libx264 -r 30 -pix_fmt yuv420p "+videoFilePath);