
Recherche avancée
Autres articles (111)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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" ;
Sur d’autres sites (7403)
-
Can I know the exact timestamps of a ffmpeg trim ?
17 juin 2021, par Vincent GarciaI want to trim very long video (e.g. >20h long) and I use ffmpeg this way :


ffmpeg -ss 7200 -i /path/to/my/video.mp4 -t 600 -codec copy out.mp4



This is supposed to provide a trim of 10 minutes starting 2 hours in the input video.
As I read online, by placing
-ss
before the-i
option, I'll get an approximate trim.

Is there a way to know precisely when the trim actually started ?


Thank you.


-
More detail about ffmpeg command
5 septembre 2020, par user1955215In this link After merge videos, the duration is too long - ffmpeg user Gyan has provided a solution shown below


ffmpeg -i intro.mp4 -s hd720 -r 30000/1001 -video_track_timescale 30k -c:a copy newintro.mp4



As the ffmpeg command above did what I was struggling to do, I am eager to learn more. Pointers in that direction will help. Thanks.


-
FFMPEG reads fps of input h264 file wrong, resulting in wrong duration of output file
20 janvier 2015, par JolJolsI am trying to convert an .h264 file created with python from an incoming stream to xvid format with ffmpeg.
The file is 30min long and 12fps. However, the converted file automatically creates a file that is 25fps and thus 14.4min long. If I set fps like
ffmpeg -i test.h264 -r 12 test.avi
it creates a video of 14.4min long with a fps of 12.How can I set it to see the incoming video as 12fps ? I tried recording immediately in xvid coded in python using FOURCC but on mac OS X the only codec that seems to work is mp4v. I also tried using MP4Box, which creates the right video duration and fps but for which I cannot set it to the xvid coded (which I need).