
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (102)
-
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 ;
-
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 (...) -
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 (8918)
-
wmalosslessdec : make MCLMS arrays big enough for what is written into them.
14 avril 2012, par Michael Niedermayerwmalosslessdec : make MCLMS arrays big enough for what is written into them.
-
gxfenc : assert that the to be written data has not been truncated.
9 septembre 2012, par Michael Niedermayergxfenc : assert that the to be written data has not been truncated.
-
Generate EPG (Electronic Program Guide) with FFMPEG re-stream
17 juin 2020, par Airat GaliullinI'll try to describe a situation :
I have Ubuntu server with installed ffmpeg and a streaming service that is creating HLS.



That streaming service for generating HLS need RTMP stream which is generated by ffmpeg from local files in VOD on this server (files are mp4 format).



I need to generate EPG on ffmpeg rtmp re-streaming step. Is it possible or may be other good solution for my situation ?



RTSP generation SH :



while true;
 do
 for file in $(ls -1);
 do
 ffmpeg -re -i "$file" -vcodec copy -bsf:v h264_mp4toannexb -acodec copy -f flv rtmp://localhost/path/for/channel
 done
 done