
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (37)
-
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 (6307)
-
Disconnect Network Xcode app crash
15 novembre 2013, par Igor MalasevschiI am using ffmpeg library for publishing Video and Audio Live Streaming to the rtmp server.
I work under MacOS (in Xcode), for capturing I use Qtkit framework.As example i consulted the open source app QTFFmpeg : https://github.com/BigHillSoftware/QTFFmpeg
The main issue is : while i disconnect network cable application crash.
For encode and stream i use AVFormatСontext.Callback for video is :
-(void)captureOutput:(QTCaptureOutput*)captureOutput didOutputVideoFrame:(CVImageBufferRef)videoFrame
withSampleBuffer:(QTSampleBuffer*)sampleBuffer fromConnection:(QTCaptureConnection*)connection
returnval = av_interleaved_write_frame(avFormatContext, &avPacket);
if (returnVal != 0)
{ Never Happens !!!! }Started debug and application crahs on :0 mach_msg_trap.
Please help me to solve the issue.
IF you are able to download the source and try to debug without network will be very good.Thank You,
Igor -
Reducing the Frame-Rate of a Network Video Stream with FFMPEG
2 juillet 2013, par Adi ShavitI have a network video stream that I am decoding with the ffmpeg C library.
I'd like to reduce the maximal frame rate to some maximum, say 15 fps.
I used the filterfps=fps=15
, but even on a 25 fps video stream this caused frame duplication. I presume this was due to network delays.Is there some way to reduce the maximal frame-rate but avoid frame duplication and just get delays instead ?
If not, is there a way to identify if a decoded frame is one of the duplicates ? -
Why is merging of two network streams in ffmpeg raising RTP errors ?
13 février 2019, par KOMsandFriendsI want to take the video stream from network stream A, while taking the audio stream from network stream B.
I tried the command :
ffmpeg -i rtsp://192.168.1.1 -i http://192.168.1.2 -c copy -map 0:v:0 -map 1:a:0 -f mp4 out.mp4
Which continuously raises the following errors :
[rtsp @ 0x564b44779f60] max delay reached. need to consume packet
[rtsp @ 0x564b44779f60] RTP: missed 591 packetsWhile the commands
ffmpeg -i rtsp://192.168.1.1 -c copy -f mp4 out.mp4
and
ffmpeg -i http://192.168.1.2 -c copy -f mp3 out.mp3
work without problems.
The video stream is HEVC, the audio stream is MP3. What am I missing ?