
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (68)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (7061)
-
HLS stream created by ffmpeg pauses every 5 seconds
17 juillet 2017, par megacraftI am having problem remuxing an H264/AAC encoded file. There is a file on a server with H264-encoded video with AAC audio (example :
input_video.mp4
). An I-frame exists every 5 sec video. It is read by ffmpeg splitter/muxer application which splits and muxes it into 5 second video clips and then sends to the client over HLS protocol.While playing on client player there is a short pause every 5sec. This issue occurs only when ffmpeg higher than 2.4 is used, so in case ffmpeg pre 2.4.x is used (e.g., 2.0.8) then created video plays just fine.
I have looked into https://github.com/FFmpeg/FFmpeg/blob/master/Changelog & https://github.com/FFmpeg/FFmpeg/blob/master/doc/APIchanges to spot changes in splitter/muxer but couldn’t find relevant info.
Please give an answer or hints if you had a similar problem and solved it or have any idea what causes this issue.
-
Delay video (and audio) by x seconds in FFMPEG HLS Stream
2 mai 2023, par Daniel SchmidtI have an input HLS stream
stream.m3u8
(e.g. using my macbook camera by runningffmpeg -f avfoundation -framerate 30 -i 0 -c:v libx264 -c:a aac -b:a 128k -ac 2 -crf 5 -preset veryfast -hls_time 1 -g 30 -sc_threshold 0 -f hls -hls_init_time 1 -hls_list_size 180 -hls_delete_threshold 180 -hls_flags delete_segments -hls_start_number_source datetime stream.m3u8
).

I want to use FFMPEG to create another HLS stream
stream-60.m3u8
in which the video is delayed by an arbitrary amount of seconds, e.g. 30s.

I tried
ffmpeg -itsoffset 30 -i ./stream.m3u8 -c copy stream-60.m3u8
but the video delay is around 5s.

-
How to ensure split video are of equal video duration of 15 seconds each ?
29 mai 2023, par Jeff BootsholzI tried following command on my Android App


-y -i temp_video.mp4 -t 60 -vcodec copy -map 0:v -movflags faststart -segment_time 15.0 -f segment -reset_timestamps 1 -segment_start_number 1 -segment_format mp4 output_%d.mp4



and retrieve my duration in seconds


I find out the split videos are of different length : 24s ,6s, 16s, 15s


how to ensure ?