
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (42)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (5459)
-
avformat/hlsenc : Extend persistent http connections to playlists
15 décembre 2017, par Karthick Javformat/hlsenc : Extend persistent http connections to playlists
Before this patch persistent http connections would work only for media segments.
The playlists were still opening a new connection everytime.
This patch extends persistent http connections to playlists as well.Signed-off-by : Steven Liu <lq@chinaffmpeg.org>
-
Update a connection to websocket in Meteor
3 août 2017, par Lucas CarvalhoI’m new in meteor and i want to create a video stream using JSMpeg and ffmpeg.
With meteor, i can start a separeted server to receive the ffmpeg data and now i need to pass this data through a websocket connection for the clients logged in the server.
How I can create this connection or how i can pass this data thru JSMpeg on the client side ?
This is how i started the http server inside the meteor application :
var http = require('http');
var STREAM_PORT = 8081,
WEBSOCKET_PORT = 8082,
RECORD_STREAM = false;
Meteor.startup(() => {
// HTTP Server to accept incomming MPEG-TS Stream from ffmpeg
var streamServer = http.createServer( function(request, response) {
var params = request.url.substr(1).split('/');
if (params.length != 3){
console.log(
'Failed Stream Connection: wrong number of parameters.'
);
response.end();
}
var userEmail = params[0];
//here goes an function to get the user id
var userID;
var connName = userID + "-" + params[1] + "-" + params[2];
response.connection.setTimeout(0);
console.log(
'Stream Connected: ' +
request.socket.remoteAddress + ':' +
request.socket.remotePort, connName
);
request.on('data', function(data){
//here i need to pass the data to an websocket
socketServer.broadcast(connName, data);
if (request.socket.recording) {
request.socket.recording.write(data);
}
});
// Record the stream to a local file?
if (RECORD_STREAM) {
var path = 'recordings/' + Date.now() + '.ts';
request.socket.recording = fs.createWriteStream(path);
}
}).listen(STREAM_PORT);
}); -
How to close the served connections in ffserver
15 novembre 2018, par prateekjainI am trying to close the served connections in ffserver. Everytime i start a new ffmpeg with feed mapped to a stream, a connection is shown in ffserver status page.
I want to close that connection when a new stream needs to be started.I tried to kill ffmpeg on startin a new stream usng stream.kill method which kills ffmpeg but does not close the connection to ffserver.