
Recherche avancée
Autres articles (111)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (9994)
-
fftools/ffmpeg_enc : stop configuring filters from encoder flush
20 mai 2023, par Anton Khirnov -
ffplay does not play hls continuously and it stop after a few first segments
31 mai 2023, par LeXela-EDI am using the following command to read a RTSP stream from an IP camera and record it as HLS :


ffmpeg -i rtsp://<user>:<password>@<ip>:<port> -c:v copy -c:a copy -hls_segment_type mpegts -segment_list_type m3u8 -hls_list_size 5 -hls_wrap 5 -hls_time 5 -hls_flags split_by_time -segment_time_delta 1.00 -start_number 1 -segment_list live -reset_timestamps 1 -movflags faststart live.m3u8</port></ip></password></user>


However, while I am using ffplay as
ffplay -i live.m3u8
, it only plays a few first segments. Even VLC does play a few first segments too ! What am I missing ? shall I change my ffmpeg command or what ?

Thank you all in advance.


-
Manage mutiple OS commands across apis (need to start stop on user request)
30 mai 2023, par NitinThe scenario is I have to start
n
number of rtsp camera stream usingffmpeg
command. The user has option to start number of streams and can form tiler, so he can see many streaming cameras similar to (NVR live view).

I can start and stop stream using
os/exec
command withcontext
andffmpeg
streaming command with it (which start's stream).

My question is is "how can I cancel a particular stream based on user's request" (in Python I can kill OS process using process ID). Is there any way to stop/start particular stream, any references will be helpful.