
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (64)
-
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 -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (5111)
-
How to make trimmed video start on a keyframe at 0:00 ?
23 mai 2021, par throwaway513I am trying to make my video start at 0:00.0 but it doesn't work ?


First I find the keyframes of my video using :


ffprobe -loglevel error -skip_frame nokey -select_streams v:0 -show_entries frame=pkt_pts_time -of csv=print_section=0 input.mp4

0.000000
8.308308
9.743076
10.710711
19.019019
21.054388



I use this to trim it to start at 19 secs


ffmpeg -i input.mp4 -ss 00:00:19.019019 -t 00:00:10 -c copy output.mp4



But the video starts at 00:00:02.0350, which is the next key frame (19+2=21).


To get it to start at the closest point to 0 at 19 secs I go back two previous frames


ffmpeg -i input.mp4 -ss 00:00:18.952285619 -t 00:00:10 -c copy output.mp4



Which the output video starts at 00:00:00.065982649 on 19.019019 as the first frame.


How come I can't make the video start at 00:00:00.00 on the key frame without re-encoding ?


-
How to make timelapse with ffmpeg from files with date-time names ?
4 novembre 2019, par LA_I understand how to make timelapse video from the sequence of files.
But what if my files have names like YYYYMMDDHHmmSS.jpg ? How can I pass them in the correct order ? I would prefer not to rename them (there are 55’000 files, almost 10 Gb). -
movenc : Make sure the RTP hint tracks have nondecreasing DTS
7 juillet 2013, par Martin Storsjömovenc : Make sure the RTP hint tracks have nondecreasing DTS
The RTP timestamps can be decreasing for codecs with B-frames. For
these cases, make sure the timestamps in the MP4 file track itself
are nondecreasing, and add an offset to the RTP packet hint instead
to produce the intended RTP timestamp.Signed-off-by : Martin Storsjö <martin@martin.st>