
Recherche avancée
Autres articles (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
Sur d’autres sites (15948)
-
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.

-
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.
-
ffplay got extra delay seconds than ffmpeg
14 juillet 2017, par jiandingzheI am working on low-latency video streaming. When I was making some tests, I noticed ffplay got much extra latency than ffmpeg, though they are the same software package.
The video is encoded in H.264, size 320x240, 15fps. The stream is packed in FLV format, uploading and receiving are both done via RTMP. ffmpeg is called fairly simple :
$ ffmpeg -i 'rtmp://my.path.to/my_rtmp_stream' -f sdl window_title
And ffplay is also called in simple way :
$ ffplay 'rtmp://my.path.to/my_rtmp_stream'
The ffmpeg would starts to show the video instantly, and plays the video with minor latency (<0.5s) ; while ffplay would start the video in 5 seconds, and introduce a delay of 8 seconds.
I further optimized the ffplay way, by minimizing probe size :
$ ffplay -probesize 32 'rtmp://my.path.to/my_rtmp_stream'
In this way, the startup goes quickly, but the delay is still 3 seconds.
Why they behave so differently ?