
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (41)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (5798)
-
controlling the speed of the hls play list, generated by ffmpeg
27 mars 2024, par tamirgI have a ffmpeg process which the input is an rtsp stream, and the output is a m3u8 play list.


when i simply watches the rtsp input stream, the play speed is correct and everything works fine.
but when i play the created HLS playlist, it seems to play in a much faster speed.


The way i create the ffmpeg process :


_SEGMENT_FILE_FORMAT = 'output%d.ts'
output_dir_path = "C:\\Tempdir"


source = ffmpeg.input(
 'rtsp://myrtspserveraddress',
 rtsp_transport='tcp',
 fflags='nobuffer', 
 flags='low_delay' 
)

pipe = source.output(
 os.path.join(output_dir_path, _SEGMENT_FILE_FORMAT),
 **dict(vcodec='copy', video_bitrate='1000k'),
 copyts=None,
 f='segment', 
 segment_list_flags='live',
 segment_time=10,
 segment_list_size=20, 
 segment_wrap=20,

 segment_format='mpegts',
 segment_list=os.path.join(output_dir_path, "test_file"),
 segment_list_type='m3u8',
)



Which seems to create a list of "10 seconds" files, but the actual data in those files, is pretty much a 30 seconds video which simply plays much faster.


What exactly controls the "play speed" of the video, and how can i know why it plays faster, and control it so the play speed would be the actual speed matching the RTSP stream ?


-
avformat/rtpdec_asf : free the buffer pointed by the AVIOContext
6 novembre 2017, par James Almeravformat/rtpdec_asf : free the buffer pointed by the AVIOContext
Don't free the buffer allocated in ff_wms_parse_sdp_a_line() after
calling avformat_open_input(), as it may free it and replace it with
another one.Should fix ticket #6808
Tested-by : Carl Eugen Hoyos <ceffmpeg@gmail.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
how to play H264 mpegts in iphone
26 décembre 2012, par jAckOdEMy server encode video files (h264/acc, mpegts based format) by ffmpeg, and send to a client in a iPhonse. The default mediaplayer of ios sdk can not play those videos. How to play H264/mpegts in Ios ? Is there any opensource player for ios that can play h264/mpeg-ts file.
Thanks.