
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (47)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7509)
-
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
-
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



-
Converting a OBS Stream (RTMP) to a RTMP & RTSP Output
4 mai 2022, par cb1986I need to take an OBS RTMP output Stream and stream to a Youtube RTMP point and stream to a RTSP link for a client. I am currently using Wowza Streaming cloud but I am trying to find an alternative, like uisng FFMPEG in a AWS virtual machine maybe ?


Help


Thanks