
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (111)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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
Sur d’autres sites (15191)
-
How to stream an webm video through ffmpeg using node.js ?
4 juillet 2012, par Marcos LopesI have built an node.js server that gets ffmpeg video and pass it to all listeners connected, but the video doesn't play. What i'm doing wrong ?
Here is my ffmpeg command and output : http://pastebin.com/56BMrx7V
and in my node.js app :
var http = require('http');
var server = http.createServer(function(req, res) {
if (req.url === '/listen') {
listen(req, res);
} else if (req.url === '/publish' && req.method === 'POST') {
stream(req, res);
}
});
var stream = require('stream');
var writeStream = new stream.Stream();
var listeners = [];
writeStream.writable = true;
writeStream.write = function(data) {
listeners.forEach(function(listener) {
listener.write(data);
});
};
writeStream.end = function() {
listeners.forEach(function(listener) {
listener.end();
});
};
var listen = function(req, res) {
listeners.push(res);
res.writeHead(200, {
'Date': new Date().toUTCString(),
'Connection': 'close',
'Content-Type': 'video/webm',
'Transfer-Encoding': 'chunked'
});
};
var stream = function(req, res) {
req.on('data', function(data) {
writeStream.write(data);
});
req.on('end', function() {
writeStream.end();
});
}
server.listen(3000);
console.log('Listening on localhost port 3000');Thanks.
-
nginx video mp4 streaming - jwplayer seeking
18 juin 2012, par abrahabAs you can see nginx streaming solution works and return different content-length when
flv
requested withstart
parameter :
http://www.hotgirlscompany.com/1.flv?start=0
http://www.hotgirlscompany.com/1.flv?start=300000But the problem that jwplayer v5 can not seek this video to any position. Seems (from http sniffer) player request
?start=0
and then ignore any mouse clicks at loading line, and can not go to position I want).Of course, I added
provider=http
toflashVars
.
You can download the video and see that its converted as H.264/AAC. Then makedmp4box -inter 500 1.flv
. But still can not steam it :(Any suggestions ?
Maybe example how to property reconvert this video with ffmpeg to make it playable ? -
ffmpeg image to .avi slow motion
9 mars 2014, par Preetam RamdhaveI have 15 images which I want to convert in the
.avi
format. I am able to convert the AVI files. But when I convert it the video file not even last for 1 second. I wan to make this move slow motion.ffmpeg -f image2 -i C:\\SecurePass\\APU\\ProcessedFiles\\2e54026b-e2e8-4796-917a-
26313eeaee5a__T0000100001_%d.jpg -r 30 -s 300x400 C:\\SecurePass\\APU\\VideoFiles\\T0000100001_3.aviI am using above command. the above command is converting the image file.
What should I do in this case ?
I want to build this slow motion move and it should be in
.avi
format.