
Advanced search
Medias (1)
-
Rennes Emotion Map 2010-11
19 October 2011, by
Updated: July 2013
Language: français
Type: Text
Other articles (65)
-
List of compatible distributions
26 April 2011, byThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Les tâches Cron régulières de la ferme
1 December 2010, byLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Publier sur MédiaSpip
13 June 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
On other websites (7793)
-
avformat/file: dup file descriptor for pipe
14 December 2022, by Zhao Zhili -
Piping multiple chunked *.ts file streams from m3u8 to one .ts file using Node.js
7 January 2017, by 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 May 2020, by 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?