
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (56)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (9254)
-
FFmpeg, Icecast and metadata
26 mai 2019, par user3768884I use FFmpeg streaming to the Icecast server on my Windows machine in the following way (sound card line in) :
ffmpeg -f dshow -channels 2 -i audio="Line In" -codec:a libmp3lame -b:a 128k -legacy_icecast 1 -content_type audio/mpeg -ice_name "Radio test 1" -ice_description "This is Radio test 1" -ice_genre "Rock" -ice_url "http://www.radiotest.com" -f mp3 icecast://source:password@ip:port/mountpoint
This works ok.
But I noticed an Icecast statistics that FFmpeg do not send "audio_info" metadata to Icecast while than edcast/altacast etc send it. And edcast/altacast do not send "user_agent" while FFmpeg is forced to send it.
Do I get FFmpeg to send "audio_info" metadata to Icecast ?
-
How to merge 1 video and 8 channel audio
5 mai 2022, par jiiiinI want to add 1 video(.mov) and 2.0 stereo audio to this command.


ffmpeg -i out1.wav -i out2.wav -i out3.wav -i out4.wav -i out5.wav -i out6.wav -filter_complex "[0:a][1:a][2:a][3:a][4:a][5:a]join=inputs=6:channel_layout=5.1(side):map=0.0-FL|1.0-FR|2.0-FC|3.0-LFE|4.0-SL|5.0-SR[a]" -map "[a]" -c:a pcm_s24le video.wav



Finally, I want a .mov material with 1 vidoeo + 8 channel audio (5.1+2.0). I'm looking for a way to modify the command. I'd appreciate your help.


-
How two receive two video streams and output as a single video stream, using ffmpeg and in multicast ? [closed]
10 décembre 2024, par ShodanI am trying to stream two UDP video stream to LAN multicast


Have one computer receive these multicast streams,


combine them side by side and re-transmit them as a single stream


For testing purposes I stream two test files as follows


ffmpeg -re -i testfile1.mp4 -c copy -f mpegts udp://239.0.0.1:9991
ffmpeg -re -i testfile2.mp4 -c copy -f mpegts udp://239.0.0.1:9992



On another computer, I can watch either of these stream while they are outputting using this test command


ffplay -hide_banner -fflags nobuffer -flags low_delay -probesize 32 -analyzeduration 0 -max_delay 0 "udp://239.0.0.1:9991"
ffplay -hide_banner -fflags nobuffer -flags low_delay -probesize 32 -analyzeduration 0 -max_delay 0 "udp://239.0.0.1:9992"



Both video play back on the second computer while streaming


I also run wireshack and tcpdump on several hosts on the network, all can see the multicast packets on 239.0.0.1:9991 and 239.0.0.1:9992


Now I try the "receive, combine, re-transmit" command as follows


ffmpeg -i "udp://239.0.0.1:9991" -i "udp://239.0.0.1:9992" -filter_complex "[0:v:0][1:v:0]hstack=inputs=2" -c:v libx264 -preset ultrafast -f mpegts "udp://239.0.0.1:9990"



Here is a video screenshot of this process in action




On all of the hosts, no packets to UDP port 239.0.0.1:9990 are never received


Is there something wrong with this method ?