
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (98)
-
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 (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
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 ;
Sur d’autres sites (6013)
-
error of streaming video using fluent-ffmpeg node.js module
23 mai 2013, par user824624I am running the fluent-ffmpeg sample to stream the video, which works well. Now in contract show the video in flashe version based flowplayer, I am now using html5 version flowplayer, but it said the video file not found.
app.get('/video2/abc', function(req, res) {
console.log('/video/:filename');
res.contentType('mp4');
var pathToMovie = 'public/flowplayer/470x250.mp4' ;
var proc = new ffmpeg({ source: pathToMovie, nolog: true })
.writeToStream(res, function(retcode, error){
if(error) console.error('error',error);
else console.log('file has been converted succesfully');
});
});here is my html template.
<code class="echappe-js"><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"> </script><script src="http://releases.flowplayer.org/5.4.0/flowplayer.min.js"></script>
<script><br />
// global configuration (optional)<br />
flowplayer.conf = {<br />
rtmp: "rtmp://s3b78u0kbtx79q.cloudfront.net/cfx/st",<br />
swf: "http://releases.flowplayer.org/5.4.0/flowplayer.swf"<br />
};<br />
<br />
// force flash with query - only for testing, do not use this switch in production!<br />
if (/flash/.test(location.search)) flowplayer.conf.engine = "flash";<br />
<br />
// install player manually<br />
$(function() {<br />
$(".player").flowplayer({<br />
// reverse fraction of video aspect ratio<br />
// video dimensions: 470px / 250px<br />
ratio: 25/47<br />
});<br />
});<br />
</script> -
avcodec/mpegvideo : flip motion vector visualization for backward motion vectors
9 juillet 2014, par Michael Niedermayer -
How to burn colorful subtitle into video using ffmpeg ?
17 juin 2014, par qliqI want to burn an srt file into a mp4 video. To make the subtitles perfectly visible, I want the subtitle text to be yellow on a brownish semi-transparent background.
I know that there are some GUI tools like Arista Transcoder but it does not allow color manipulation. I also know that ffmpeg make these manipulations possible but the gazillion flags on the docs are over the top of my head.
So I appreciate a ready made ffmpeg command to do so.