
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (78)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (...)
Sur d’autres sites (12442)
-
Error - bind failed : Address already in use
22 février 2021, par Pasindu DilshanI use the shaka packager to create a .mpd file from the live stream. For that, I used the following command to packaging stream.


packager \ 'in=udp://127.0.0.1:40000,stream=audio,init_segment=audio_init.mp4,segment_template=audio_$Number$.m4s' \ 'in=udp://127.0.0.1:40000,stream=video,init_segment=h264_480p_init.mp4,segment_template=h264_480p_$Number$.m4s' \ 
--mpd_output h264_live.mpd



And I executed this command to generate an SDP file.


ffmpeg -re -stream_loop 100 -i input.mp4 -vcodec copy -an -f rtp rtp://127.0.0.1:11111 -sdp_file saved_sdp_file -acodec copy -vn -f rtp rtp://127.0.0.1:11112



After that, I executed the following command to get a stream using the SDP file.


ffmpeg -protocol_whitelist "file,rtp,udp" -i saved_sdp_file -vcodec h264 -tune zerolatency -f mpegts udp://127.0.0.1:40000



There was an error when I used the above command. The error is shown below :
please, help me to solve this issue.




-
doc/fate : Add email address for contacting the FATE admin
29 juin 2012, par Alexander Strasserdoc/fate : Add email address for contacting the FATE admin
-
FFPMEG : stream local file to UDP address, make client aware about video length and current frame time offset (make stream seekable ?)
10 décembre 2014, par klimJust started to use FFMPEG. This is a really great library which is capable of video life transcoding and streaming.
I use following commands to transcode and stream local video file to UDP address :
ffmpeg -y -re -i inputvideo.mpeg2 -vsync 1 -vcodec mpeg4 -b 1600k -r 15 -crf 20 -acodec aac -ar 44100 -strict -2 -f mpegts udp ://192.168.1.30:1234It works smooth. I can open this udp address in VLC player and play life stream.
Does anybody know how to make client aware about video duration and current time stamp ?
Ideally would be nice to make stream seekable, as far as I understand it is not possible, but at least I would like to tell VLC client the total duration of the video and current frame time stamp, so it could show the progress.
Thanks.