
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (36)
-
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 (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (5126)
-
Save http stream video android
11 novembre 2013, par ChebTSFor one of my android projects I need to implement saving of video from HTTP stream (right now I am just show live stream video to user).
I google that problem and find some solution, I can use FFmpeg. But FFmpeg is c++ library.
Is there are some easy way to save video from HTTP stream ?
-
C# FFMPEG - How to get extracted frames without save in file system
4 janvier 2023, par kadamI need to process frames from video and live stream without saving into file system.


C# I am trying using below code, but not getting frames


Process proc = new Process();
 proc.StartInfo.FileName = @"E:\ffmpeg\bin\ffmpeg.exe";
 proc.StartInfo.Arguments = String.Format(@"-i E:\ffmpeg\bin\video.mp4 -f rawvideo pipe:1");
 proc.StartInfo.UseShellExecute = false;
 proc.StartInfo.RedirectStandardOutput = true;
 proc.Start();
proc.OutputDataReceived += (sender, args) => DataReceived(args);
 proc.ErrorDataReceived += (sender, args) => DataReceived(args);



I can get frames in nodejs successfully using below code



const spawnProcess = require('child_process').spawn
 ffmpeg = spawnProcess('E:\\ffmpeg\\bin\\ffmpeg.exe', [
 '-i', 'rtsp://username:password@192.168.6.37/ch1/main/sub-stream',
 '-vcodec', 'mjpeg','-vf','fps=2',
 '-f', 'rawvideo',
 //'-s', HW, // size of one frame
 'pipe:1'
 ]);
 ffmpeg.stderr.pipe(logStream);
 let frames = [];
 ffmpeg.stdout.pipe(new ExtractFrames("FFD8FF")).on('data', (data) => {
 var fName=new Date().getTime()+".png";
 (
 async () => await ProcessFrame(Buffer.from(data).toString('base64'))
 )();
 })



Same thing
await ProcessFrame(Buffer.from(data).toString('base64'))
I want in C#

-
Live Streaming RTMP to RTSP
19 septembre 2013, par user2794054i need to test a restream work like this.
now i m using crtmpserver. i want to restream rtmp live source to iis smooth streaming format & rtsp format. Please guide me
rtmp live to rtsp live
&
rtmp to live http streaming (target IIS server)Thanks