
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (103)
-
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 ;
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (13182)
-
ffmpeg exact start and end times
19 juin 2017, par Eng. M.HamdyI’ve searched a lot but didn’t find what I nedd.
I use this command :ffmpeg -ss <start> -i <srcfile> -t <duration> -c copy <dstfile>
</dstfile></duration></srcfile></start>to copy a part of the video, but the output file start time and duration may differ than "start" and "duration" specified.
I understand that ffmpeg seeks to the nearest Keyframe and that precise seeking to a timestamp is not possible unless re-encoding the video (I tried that but the output video losses quality !).
It’s important to me to know the exact start and end timestamp that ffmpeg use to generate the output, because I use this info to adjust subtitle timing.
Is there any way to make ffmpeg report start timestamp and end timestamp ?
Or else : Is there any way to know the previous and next keyframes to specific Timestamp, so I can adjust the video cut markers in my project to fit nearest keyframes ?
Thanks.Update :
Is it possible to seek to the second keyframe, and to the keyframe before the last one ?
what is the time interval between 2 keyframes ?
-
ffmpeg, how to extend video, the same clip multiple times concat
22 janvier 2018, par pc8181i want to extend the video clip to fixed 200 seconds even the clip is low duration in VB.Net. if video clip is 28-seconds then want to repeat concate the same clip and trim 200 seconds how to do this ?...
m trying something but i could not do how to repeat concat the same clip ...
cmd = String.Format("{0} -i {1} -c copy -ss {2} -t {3} -an -y -map 0
{4}.m2ts",ffexe, inf, inT, ouT, ouF ) -
FFMPEG : output scene change times in frames
29 mai 2019, par Mark RaishbrookI’m successfully using the
-vf select='gte(scene,0.4)',metadata=print:file=shotcuts.txt
command to get FFMPEG to detect scene changes and output the results to file. Is it possible to force the pts field to be in frames rather than the default, which seems to vary depending on the video format (e.g. frames for AVI files, nanosecs for MOV/MP4) ?Processing an AVI file, for example, outputs time stamps in frames :
frame 0 pts 151
frame 1 pts 206Whereas an MP4 file outputs as media time :
frame 0 pts 540000
frame 1 pts 738000