
Recherche avancée
Autres articles (97)
-
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 -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (6603)
-
Revision 7059 : On ne tient pas compte de modifier l’objet pour gérer les signalements ...
3 novembre 2012, par kent1 — Log -
Anomalie #3024 (Fermé) : spip_loader.php et IE8 (oui.... les pros du C/S traditionnels l’exigent !)
3 mai 2015, par b bIE8 n’est plus supporté depuis le 8 avril 2014, cf http://fr.wikipedia.org/wiki/Internet_Explorer#Internet_Explorer_8 => on ferme.
-
ffmpeg live encoding with variable fps matching source
8 juillet 2020, par arunk2We are trying to encode a rtmp stream to HLS. During conversion we
observe variation in the fps during processing (fps -> no.of frames processed per second).


Observation :
While tracing back the problem we observed, when there are more frame drops at source (during video upload from tools like OBS), we see a low fps for processing.


We are using a fixed frame rate with '-r 30' parameter for encoding. we observed ffmpeg is waiting for 30 frames from input stream to to process, which causes delay in chunks generation (ts files in our case, as we use HLS). This slow processing creates issues during HLS playback.


FFMPG command used


ffmpeg -fflags nobuffer -i rtmp://********* -vcodec libx264 -b:v 600k -r 30 -acodec aac -ab 128k -ac 2 -ar 44100 -g 90 -preset ultrafast -f hls -hls_time 3 -hls_list_size 3 output.m3u8



Question
Is there an option in ffmpeg to encode HLS at variable frame-rate with incoming frame-rate rather than a fixed rate ? Or any alternative which will help in generation of chunks without delay ?