
Recherche avancée
Autres articles (51)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 : (...)
Sur d’autres sites (5444)
-
Transcode H264 stream into mpeg2 with ffmpeg and nginx-rtmp module
21 mai 2015, par insideI am using nginix web server and nginx-rtmp module for managing my video stream encoded in h264. Here is my nginx conf :
rtmp {
server {
listen 1935;
application big {
live on;
exec ffmpeg -re -i rtmp://localhost:1935/$app/$name -vcodec
libx264 -vprofile baseline -acodec libvo_aacenc -ac 1 -ar 441000
-f flv rtmp://localhost:1935/hls/${name};
}
}
application hls
{
live on;
hls_path /usr/local/nginx/html/video;
}
}it works well in browser, however because my mobile client is Adobe Air it would only work on Android but not Apple, because Apple doesn’t support H264 encoding through AIR applications, so I was trying to transcode the stream to something supported for example mpeg. And this is how I changed my ffmpeg :
exec ffmpeg -re -i rtmp://localhost:1935/$app/$name -vcodec
mpeg2video -acodec copy -b:v 10M -b:a 128k
-f mpegts rtmp://localhost:1935/hls/${name};However it just won’t show the video not in a browser nor on device, my assumption is that it probably failed to transcode.
Maybe I am missing something ? Any ideas are highly appreciated.
Thank you. -
avfilter/avfiltergraph : remove unnecessary channel layout copy
5 août 2022, par James Almeravfilter/avfiltergraph : remove unnecessary channel layout copy
It's not modified, so we can simply use a const pointer to it.
Also check the return value of the other copy in the function while at it.Reviewed-by : Nicolas George <george@nsup.org>
Signed-off-by : James Almer <jamrial@gmail.com> -
how to make video module with nodejs like facebook did with photos
31 mai 2017, par aharitJust wondering how to start ? The needs :
With around 10 photos, being able to produce a small video of 5-10sec, with animations for example (transition ?), i want to reproduce the facebook videos process if anybody know about that, which technical stack is the best, modules (ffmpeg, wrapper ffmpeg)(pyhton, nodejs).
Thx