
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (27)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (5090)
-
Piping multiple chunked *.ts file streams from m3u8 to one .ts file using Node.js
7 janvier 2017, par user2631534I im creating on-the-fly *.ts files (and updating m3u8 file with last 6 created *.ts files) and would like to stream this file to vlc player using new filename as single file.
For example...i have on-the-fly 1_.m3u8 file :
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:14
#EXT-X-MEDIA-SEQUENCE:1
#EXTINF:13.720000,1_1.ts
#EXTINF:4.560000,1_2.ts
#EXTINF:12.760000, 1_3.ts
#EXTINF:9.520000,1_4.ts
#EXTINF:8.560000,1_5.ts
#EXTINF:4.280000,1_6.ts
#EXT-X-ENDLISTAnd would like when i call http://myserverip:port/1.ts in chrome i get to download one file 1.ts that is reading files 1_1.ts and when reading is at end of this file then go to next file 1_2.ts, and 1_3.ts, and 1_4.ts, and 1_5.ts and 1_6.ts and then reading from beginning 1_1.ts, and 1_2ts and so on.
I need this so that i can stream one h.264 video without interrupting and without stopping when reading next ts file from my server. I use ffmpeg to generate ts chunk small files and overwrite when max 6ts are generated so that i always get from 1_1.ts to 1_6.ts so that my hdd is not full in short time.
I try using this node js code that run event when m3u8 file is changed and get last ts file name so that i pipe it to response...but problem is when 1_1.ts read file is end it stops stream...
stream.get('/stream', function(req, res) {
/* STREAM - header */
res.writeHead(200, {
'Content-Type': 'video/H264'
});
var fs = require('fs');
var Watcher = require('hls-watcher');
var w1 = new Watcher('/tmp/streams/1_.m3u8');
w1.listenFile();
w1.on("change", function(data){
//do things with ts files stored on data.
fs.createReadStream('/tmp/streams/'+data[0]).pipe(res);
console.log(data);
});
}); -
Combine an image into audio file and make a video file in android programmatically
6 mai 2020, par jagdishI gone through the tutorial of ffmpeg library to combine the image into audio file.



This is looking very complex and getting error with environment value is null.



I researched a lot but didn't find any solution.



Is there any way in Android to merge an image and an audio file to make a video ?


-
libffmpeg C++ : convert file to the same exact format of another file
12 mars 2015, par Andreawhat’s the correct way with libffmpeg (if possible with an example) to convert file A into the same aspect/fps/width/height of file B ? I could do that manually, frame by frame, using Cimg or another graphic library to scale it but i’m sure there is a better way to do this and i can’t find any tutorial about conversion.
I’ve read the drangers tutorial and other resources but i can’t find the right way to do this. (I need to do this via C++, so please don’t suggest to use the command line interface)
thank you