
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (36)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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 (...)
Sur d’autres sites (5737)
-
Trouble setting up rtmp audio streaming with ffmpeg and nginx
20 septembre 2021, par igoryonyaCan't figure out how to set up rtmp streaming with ffmpeg.
I've been trying to figure it out for about 2 weeks now.
I need to stream the default sound from my sound card over rtmp stream.
I don't need a video, only an audio.


So, i've installed nginx with rtmp module and added the following code at the end of my "/etc/nginx/nginx.conf" file :


rtmp {
 server {
 listen 1935;
 application cam1 {
 live on;
 }
 }
}



restarted my nginx installation :


sudo systemctl status nginx.service



Checked that the 1935 port is listening :


~$ sudo netstat -nlp|egrep -i 'nginx'
tcp 0 0 0.0.0.0:1935 0.0.0.0:* LISTEN 1885931/nginx: mast 
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 1885931/nginx: mast 
tcp6 0 0 :::80 :::* LISTEN 1885931/nginx: mast



Launched an ffmpeg to capture my sound card, encode it into ogg format and stream it to the rtmp server (on the same computer with nginx installed) :


ffmpeg -re -f pulse -i default -c:a libvorbis -content_type 'audio/ogg' -vn -f ogg rtmp://127.0.0.1/cam1/test



And it looks like, it's streaming, by showing statistics.


Then, I try to open it with the vlc player to test the stream and the yellow bar on the progress bar just going back and forth and never starts playing.
I tried to use vlc on the same computer and on the computer on the same network.


Assuming, the computer, that is streaming rtmp has an IP : 192.168.0.1, I use the following connection URL in VLC :


rtmp://192.168.0.1/cam1/test



-
Use Ffmeg to Convert Video to Gif android studio
21 octobre 2014, par Donnie IbiyemiAm currently making a simple Androidapp that converts a video from the sd card into a gif.
I learnt Ffmeg is the most efficient method to handle the conversion. But i have no idea how to add ffmeg to my android studio project.
Please kindly point me in the right direction
-
Record on live stream material
6 juillet 2015, par Sami HI have a multiple live feeds from TV card in (udp) and I want a 6h timeshift buffer.
I have searched and found the -segment_time in FFMPEG.
But thing is i want the "record" to stream out (rtmp publish) continuously as if it was live material as well only with a 6h difference.