
Recherche avancée
Autres articles (111)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (13626)
-
Frame to FFmpeg to Live555 for H264 streaming
7 mai 2015, par user4873780I am working on a RTSP RTP-over-TCP H264 streaming application from a live HW-based encoder.
Please I need help I am sure this code exist, what I need a example that read a yuv420 frame (or any other format) convert it to H264 (this part of code is not so difficult) the output need to be going to LIVE555 server unicast (for multicast is not so difficult) I am working on Ubuntu
-
Record and save a live video streaming in iOS
25 décembre 2015, par KhushbooI am using dfurtsp player which is wrapper around ffmpeg player. I am able to play the live streaming successfully. Now I want to record the video as well. Please suggest me how to get started with the recording functionality.
I have also searched other players which supports recording but didn’t find any. If anybody knows any other player which supports this please let me know.
-
FFMPEG Streaming updated image in loop to FB Live Video
24 décembre 2016, par Aakash GuptaI am trying to stream image to fb live video using this command :
ffmpeg -loop 1 -re -i "input.jpg" -pix_fmt yuv420p -profile:v baseline -s 720x480 -bufsize 6000k -vb 400k -maxrate 1500k -deinterlace -t 60 -vcodec libx264 -preset veryfast -g 30 -r 30 -f flv "rtmp_link"
This command works perfectly for one single input file. But the problem is that I want ffmpeg to stream the latest and updated version of "input.jpg" file because my app is updating this "input.jpg" after every 2-3 seconds but the image that is streamed is the older version, not the updated one.
If I try to restart this loop, then streaming stops for approx. 4-5 seconds which is sufficient enough for FB live video to consider that streaming has been stopped and it then ends the live video.
So, is it possible to use the latest available version of input file for streaming in this loop ? I don’t know much about FFMPEG and I tried to search this issue but all in vain.