
Recherche avancée
Autres articles (83)
-
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. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (7242)
-
ffmpeg:Unable to broadcast to live stream from webcam
13 mai 2020, par gbenga ogunbuleI have this code that I believe should be able to grab from webcam and broadcast a live stream i.e. Users will be able to watch or stream live what there admin is doing at that moment in time.



I have this code for it



C:\Apache24\htdocs\v­ideo\assets\ffmpeg\b­in>ffmpeg -f dshow -i video="HP Webcam" -c:v libx264 -preset ultrafast -tune zerolatency -r 10 -async 1 -c:a libmp3lame -b:a 24k -ar 22050 -bsf:v h264_mp4toannexb -maxrate 750k -bufsize 3000k -f mpegt s C:\Apache24\htdocs\v­ideo\assets\uploads\­videos\en.mp4




Also notice I use the absolute path
mpegt s C:\Apache24\htdocs\v­ideo\assets\uploads\­videos\en.mp4
insteadlocalhost/video/assets/uploads/videos/en.mp4
and the reason is because, when I use the latter, it is recording the video into the folder where I run the command.


And this is the HTML code I wrote for it.



<video width="320" height="240" controls="controls">
 <source src="assets/uploads/videos/en.mp4" type="video/mp4">
Your browser does not support the video tag.
</source></video>




How do I online streaming using ffmpeg


-
How to set youtube live title and description in ffmpeg
10 novembre 2022, par J CI am using following code to live stream video in youtube.

ffmpeg -y -loop 1 -i "still.jpg" -i "audio.mp3" " -c:v libx264 -pix_fmt yuv420p -crf 21 -r 1 -g 30 -keyint_min 5 -x264opts "keyint=5:min-keyint=5:no-scenecut" -s 1280x720 -tune zerolatency -b:a 128k -c:a aac -ar 48000 -strict experimental -f flv rtmp://a.rtmp.youtube.com/live2/steam-key
.
I would like to set youtube live title and description in the above command. Is it possible ?

-
How to decode a live stream encoded using FFMPEG ?
22 mars 2018, par Amber BeriwalI am not very proficient with C programming and working on live streaming using FFMPEG. Basically, I want to put a watermark on a live streaming video.
Using FFMPEG, I have been able to record a video from webcam, encode it and send to some ip:port using UDP. Now, my receiver(written in Java) is receiving the data in packets but I don’t know how to decode it for editing or play it. If I use ffplay, it plays it automatically. I referred some links :
Similar Question
Decoding Encoding ExampleCould anyone please tell, how can I proceed for the solution. Any hints would be appreciable.
- How the data is encoded. Is it some FFMPEG format or generic format ?
- If a live stream is coming, then what information does each packet contains ? Whether it is a complete video itself or a portion of complete video file ?