
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (39)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
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 (7090)
-
ffmpeg on android : playing MPEG2 TS udp multicast stream
27 août 2013, par user1513822I want to make android media player using ffmpeg.
(catch MPEG2 TS multicast stream via WIFI network and decode it)
I checked followings :- My iptime AP supports WIFI multicast protocol.
(send multicast stream in wired PC, and wifi connected PC can receive it) - My Android phone can receive multicast stream via WIFI.
I coded NDK socket programming which is join udp multicast group and receive packets
(I added multicast access grant to AndroidManifest.xml) - FFMPEG library is ported to android and it can play local media file.
But when I try to open network stream using FFMPEG library, avformat_open_input() function returns fail.
gFormatCtx = avformat_alloc_context();
av_register_all();
avcodec_register_all();
avformat_network_init();
if(avformat_open_input(&gFormatCtx,"udp://@239.100.100.100:4000",NULL,NULL) != 0)
return -2;this code always return "-2".
If I use "av_dict_set()" api, which option should I use ?av_dict_set(&options, "udp_multicast", "mpegtsraw", 0);
please let me know what should I check for avformat_open_input error ?
thanks.
- My iptime AP supports WIFI multicast protocol.
-
avformat : remove duplicate includes
21 septembre 2013, par Michael Niedermayeravformat : remove duplicate includes
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Rtmp streaming not playing on VLC player
7 février 2021, par Madhuraank BIn terminal :


ffmpeg -f v4l2 -i /dev/video0 -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -s 1280x720 -r 30 -b:v 1500k -bufsize 1500k -maxrate 7000k -f flv rtmp://192.168.1.6:1935/live/test



I get :




Output #0, flv, to 'rtmp ://192.168.1.6:1935/live/test' :
Metadata :
encoder : Lavf58.20.100
Stream #0:0 : Video : h264 (libx264) ([7][0][0][0] / 0x0007), yuv420p, 1280x720, q=-1—1, 1500 kb/s, 30 fps, 1k tbn, 30 tbc
Metadata :
encoder : Lavc58.35.100 libx264
Side data :
cpb : bitrate max/min/avg : 7000000/0/1500000 buffer size : 1500000 vbv_delay : -1
frame= 115 fps=0.1 q=21.0 size= 3088kB time=00:00:17.96 bitrate=1407.9kbits/s speed=0.0141x




When I open
VLC player
and open network stream in networkrtmp://192.168.1.6/live/test
, but it does not play it shows no error it just keeps on loading.

Thanks in advance