
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (3)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...) -
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)
Sur d’autres sites (796)
-
What is Audience Segmentation ? The 5 Main Types & Examples
16 novembre 2023, par Erin — Analytics Tips -
error of streaming video using fluent-ffmpeg node.js module
23 mai 2013, par user824624I am running the fluent-ffmpeg sample to stream the video, which works well. Now in contract show the video in flashe version based flowplayer, I am now using html5 version flowplayer, but it said the video file not found.
app.get('/video2/abc', function(req, res) {
console.log('/video/:filename');
res.contentType('mp4');
var pathToMovie = 'public/flowplayer/470x250.mp4' ;
var proc = new ffmpeg({ source: pathToMovie, nolog: true })
.writeToStream(res, function(retcode, error){
if(error) console.error('error',error);
else console.log('file has been converted succesfully');
});
});here is my html template.
<code class="echappe-js"><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"> </script><script src="http://releases.flowplayer.org/5.4.0/flowplayer.min.js"></script>
<script><br />
// global configuration (optional)<br />
flowplayer.conf = {<br />
rtmp: "rtmp://s3b78u0kbtx79q.cloudfront.net/cfx/st",<br />
swf: "http://releases.flowplayer.org/5.4.0/flowplayer.swf"<br />
};<br />
<br />
// force flash with query - only for testing, do not use this switch in production!<br />
if (/flash/.test(location.search)) flowplayer.conf.engine = "flash";<br />
<br />
// install player manually<br />
$(function() {<br />
$(".player").flowplayer({<br />
// reverse fraction of video aspect ratio<br />
// video dimensions: 470px / 250px<br />
ratio: 25/47<br />
});<br />
});<br />
</script> -
FFMPEG command to mux video stream into HLS fMP4
16 décembre 2020, par LinuxVirginI have been trying to display my IP Cameras output onto a webpage to be viewed on a iThing (ipad or iphone)


Im diplaying the output below in a video tag like below


<video class="video-js vjs-default-skin" width="400" height="300" controls="controls">
 <source type="application/x-mpegURL" src="http://127.0.0.1/wordpress/prog_index.m3u8">
</source></video>



Im using ffmpeg to mux/convert (I may have my terminology wrong) the cameras http stream (not RTSP stream).


Ive tried multiple commands below and some commands work on a PC/Chrome but none of them work on a ipad/safari or chrome.


All the files are being generated in the correct locations on the webserver to allow them to be diplayed


ffmpeg -i http://username:password@192.168.102.92/ISAPI/Streaming/channels/102/httpPreview -force_key_frames "expr:gte(t,n_forced*2)" -sc_threshold 0 -s 640x480 -c:v libx264 -b:v 1536k -c:a copy -hls_time 6 -hls_playlist_type vod -hls_segment_type fmp4 -hls_segment_filename "fileSequence%d.m4s" -hls_wrap 3 prog_index.m3u8



ffmpeg -i http://username:password@192.168.102.92/ISAPI/Streaming/channels/102/httpPreview -force_key_frames "expr:gte(t,n_forced*2)" -sc_threshold 0 -s 640x480 -c:v libx264 -b:v 1536k -c:a copy -hls_time 6 -hls_playlist_type vod -hls_segment_type fmp4 -hls_segment_filename "fileSequence%d.m4s" -hls_list_size 10 prog_index.m3u8



ffmpeg -i http://username:password@192.168.102.92/ISAPI/Streaming/channels/102/httpPreview -force_key_frames "expr:gte(t,n_forced*2)" -sc_threshold 0 -s 640x480 -b:v 1536k -c:a copy -hls_time 6 -hls_segment_type fmp4 -hls_segment_filename "fileSequence%d.m4s" -hls_list_size 10 prog_index.m3u8



ffmpeg -i http://username:password@192.168.102.92/ISAPI/Streaming/channels/102/httpPreview -force_key_frames "expr:gte(t,n_forced*2)" -sc_threshold 0 -s 640x480 -b:v 1536k -c:a copy -hls_time 3 -hls_flags delete_segments -hls_segment_type fmp4 -hls_segment_filename "fileSequence%d.m4s" prog_index.m3u8



Can someone point out where Im going wrong, I think its the FFMPEG cmd ?