
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (59)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (5912)
-
FFMPEG - remove "capacitor discharge" signals
28 août 2020, par Shannmicrophone of my cellphone is adding few "clicking" sounds to one audio channel. Those signals look like "capacitor discharge" (img below).
Do you know ffmpeg audio filter settings, how to get rid of them ?




-
x86/tx_float : enable AVX-only split-radix FFT codelets
24 septembre 2022, par Lynne -
The phenomenon of missing video data for the first part 1 to 2 seconds in streaming
22 novembre 2022, par 양관식The phenomenon of missing video data for the first part (1 to 2 seconds) in streaming - ffmpeg
(specific hls live streaming, intermittent occurrence)
( I'm using it to check the frame (fps) )


[root@ ]# ffmpeg -i http://live_streaming_url/PATH/definst/sample.stream/playlist.m3u8 -t 1 -f null -
frame= 5 fps=0.0 q=-0.0 Lsize=N/A time=00:00:01.00 bitrate=N/A speed=23.3x
video:3kB audio:188kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : unknown



When monitoring is performed by setting it to -t 10 (playtime), about 1 second of the first part is omitted, and only the frames for the next 9 seconds are added up
There is a phenomenon that is measured.


[root@streaming_monitoring_test ~]# ffmpeg -i http://live_streaming_url/PATH/_definst_/sample.stream/playlist.m3u8 -t 10 -f null -
ffmpeg version 4.4 Copyright (c) 2000-2021 the FFmpeg developers
 built with gcc 7 (GCC)
 configuration: --enable-demuxer=dash --enable-libxml2
**frame= 277 fps=134 q=-0.0 Lsize=N/A time=00:00:10.00 bitrate=N/A speed=4.84x 
video:145kB audio:1875kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown**

------------------------------------------------------------------------------------------------------




The reason for missing video data in the front part is under investigation
As a solution, the problem seems to be resolved when monitoring is carried out by adjusting the playback start time (-ss).


ffmpeg -i http://live_streaming_url/PATH/definst/sample.stream/playlist.m3u8 -ss 10 -t 1 -f null –
frame= 29 fps=7.2 q=-0.0 Lsize=N/A time=00:00:01.00 bitrate=N/A speed=0.249x

video:15kB audio:188kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : unknown


but.... Why is the video data missing for the first part (1 to 2 seconds) checked ?


thankyou...