
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (99)
-
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 (...) -
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 ;
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6836)
-
How to Embed CEA-608 Subtitles in Video using FFMPEG
25 septembre 2018, par Yogesh AgarwalHow can i embed CEA 608 subtitles via ffmpeg in a video ? I have SRT file and i can embed that via ffmpeg but it doesnt show up in facebook. It requires a CEA 608 Format of subtitles to be embedded inorder to show up in streams.
I am quite clueless here. I found libcaption plugin that can do it, but i am not sure how to install it as my repo doesnt have it. Any Pointers would greatly help me ! :)
There is one more plugin
libass
which can hardcode but i am not comfortable using it.
-
Recording a website with PhantomJS and FFMpeg ?
18 novembre 2016, par Rjaibi MejdiI want to record a website using Phantomjs and use pipeline and FFMpeg to create a live video (Server or Stream URL)
runner.js code :
var page = require('webpage').create();
page.viewportSize = { width: 640, height: 480 };
page.open('http://www.goodboydigital.com/pixijs/examples/12-2/', function () {
setInterval(function() {
page.render('/dev/stdout', { format: "png" });
}, 25);
});Commande Line :
$ phantomjs runner.js | ffmpeg -y -c:v png -f image2pipe -r 24 -i - -c:v libx264 -pix_fmt yuv420p -threads 10 -movflags +faststart -b:v 3500k -bufsize 1024k -f flv "rtmp://rtmp-api.facebook.com:80/rtmp/1734882043502131?ds=1&s_l=1&a=AaYJ7cQfH719X5Kl"
The problem is that I get this error when I want to start a live stream in facebook :
In the preview mode is working
When I start the Live I got this message
-
ffmpeg extract audio from streaming mp4
3 septembre 2016, par user6791548I am trying to extract audio from streaming mp4,it succeeds on
ffmpeg -i http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4 out2.mp3
But it fails on this facebook mp4 streaming video.(Hot girl alert)
It throws error :
out2.mp3: command not found
I suspect if ffmpeg forces I to have file extension ?