
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (27)
-
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. -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (5004)
-
FFMPEG - extract two consecutive frames
27 février 2020, par Radim BurgetI need to use FFMPEG to randomly select time (e.g. 0:10) and save two consecutive frames as PNG.
HOW TO SAVE FRAME TO PNG :
ffmpeg.exe -ss 0:10 -y -i test.avi -vcodec png -vframes 1 -an -f rawvideo test.png
HOW TO EXTRACT INFO ABOUT THE VIDEO FILE :
ffprobe -v error -select_streams v:0 -show_entries stream=duration,avg_frame_rate -of default=nw=1:nk=0 test.avi
Output :
avg_frame_rate=120/1
duration=59.808333QUESTION
How to determine next frame ? Frame rate 120/1 means 120 frames per second ?
EDIT
Possible solution - am I correct that extracting the frames at times +(1/120 = 0.00833333) would solve my problem ? :
-ss 0:10
-ss 0:10.00833333Does it guarantee exactly the next frame ? Is there any other approach ?
-
FFMPEG- how to convert mkv to MP4 without losing subs
9 janvier 2016, par RicardoHi i want to convert MKV to MP4 wihout losing quality and the subs.
i use this comand :
ffmpeg -i input.mkv -c:v copy -c:a copy output.mp4
but subtitles not appear on output.mp4
but it appears in input.mkv
I’m new around here.
-
avformat_open_input not read only ? is a bug ? [closed]
29 mai 2024, par qytI'm recording my screen on Windows using the command :
./ffmpeg -f gdigrab -framerate 30 -i desktop -c:v libx264 -crf 20 -preset ultrafast -max_muxing_queue_size 1024 -hls_time 5 -hls_list_size 10 -hls_flags delete_segments -hls_segment_filename "d:\\1\\file%03d.ts" "d:\\1\\playlist.m3u8"


Then I use the function
avformat_open_input
to open this m3u8 file, but after calling this function, the m3u8 file stops updating. When I use the command./ffmpeg -i D:\1\video.m3u8 -c copy -f mpegts "srt://xxxxx?streamid=#!::h=live/qyt,m=publish"
, the test results are the same. However, when I open the M3U8 file with a text editor, it updates normally. What's the problem ? Isavformat_open_input
exclusive ?

How can I make this function read-only ?
my ffmpeg version is v6.1.1