
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (101)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (6799)
-
vf_lut : Add support for RGB48 and RGBA64.
11 octobre 2015, par Steven Robertson -
re-stream rtsp stream to youtube [closed]
2 novembre 2024, par Darteri would like to re-stream an rtsp stream of a wifi camera to youtube
the stream is allready a H.264 codec.


The camera does not have any audio, but youtube needs audio to accept the stream, thats why i faked and audio stream.
I tried this


ffmpeg -re -rtsp_transport tcp -i rtsp://192.168.1.140/live -f lavfi -i anullsrc -f rawvideo rtmp://a.rtmp.youtube.com/live2/<stream key="key">
</stream>


but it fails


av_interleaved_write_frame(): Broken pipeB time=00:00:00.20 bitrate=884736.0kbits/s speed=0.0156x 
Error writing trailer of rtmp://a.rtmp.youtube.com/live2/dgyh-qzba-t13k-6qtf-6rgq: Broken pipe



i would like to not change the codec to not put any stress on the machine


-
FFplay/FFmpeg connect to a Socket
17 janvier 2013, par user1958067I hava a Wifi Webcam connected to my PC. that i can get the stream and play it with
"ffplay http://192.168.43.3:4555"
and it works fine !
Now i would like to plug this cam to the internet with an Android device. I wrote a Android app to connect to the cam via
Socket s = Socket(192.168.43.3,4555) ;
and s.getInputStream() gets me the Stream of the cam.How can i achieve to play the stream the same way as i mentioned above
(something like ffplay http://xxx.xxx.xx.x:port)
from my server ? I.e. open a socket,etc, ffplay/ffmpeg can connect to.
Its ok for me, to write an Java programm on the server side where ffmpeg/ffplay is, if its necessary.
I use "org.apache.commons.io.IOUtils.copy(InputStream,OutputStream)" to redirect one InputStream to other sockets OutputStream.