
Recherche avancée
Autres articles (111)
-
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" ; -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (10004)
-
How to add current UTC Time in MKV file metadata using ffmpeg ?
1er mai 2022, par ShahpariI am not sure if it's possible, but is there anyway we can add current UTC time inside the mkv metatag using ffmpeg ? i read https://wiki.multimedia.cx/index.php?title=FFmpeg_Metadata but i could not find anything.


-metadata "Creation Time"="Need to add time tag/code"



output will show


Creation Time: UTC 2020-06-04 02:40:29



-
Split video on android via ffmpeg
27 septembre 2016, par LiorI have tried to use ffmpeg to split video,
by addingcompile 'org.bytedeco:javacv:1.+'
and
compile 'org.bytedeco.javacpp-presets:ffmpeg:3.1.2-1.2:android-arm'
to my gradle file i got all of *.os files which is JNI wrap of all ffmpeg library to my android project .According ffmpeg wiki there is option to split the video but how i deal with command like
ffmpeg -ss 00:22:30 -i Mononoke.Hime.mkv -ss 00:00:30 -frames:v 1 out3.jpg
in android.I hope for some help if someone delt with splitting video file on android before, Thanks.
-
Is there a way to non-linear speed-up video with ffmpeg ?
3 mars 2020, par leoossaI’ve seen thousands of websites suggesting using setpts to speedup video
ffmpeg -i input.mp4 -filter:v "setpts=0.5*PTS" output.mp4
The thing is - I don’t want to speed-up video in a linear way. I want it to accelerate. So I want ’acceleration’ (Wiki) to be constant and ’speed’ to be growing.
From what I’ve seen on ffmpeg docs setpts can be an equation, I tried to play with PREV_OUTPTS but with no success.
Is it even possible to achieve that with ffmpeg ?