
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (88)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 ;
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (4236)
-
Volume Detect on half second window sizes [duplicate]
14 juin 2021, par user82395214How can I get the max volume of individual slices of a video using FFMpeg ?


Using this command, you can obtain the max volume for the whole clip :


ffmpeg -i video.avi -af "volumedetect" -vn -sn -dn -f null /dev/null


However, I want the max volume for every half second window in the audio file. How can I achieve this with ffmpeg ?


-
ffmpeg - where to save the video I plan to cut to frames
28 décembre 2017, par KyleI have ffmpeg up and running on my computer.
Now I am trying to cut a video into individual frames. The video is titled IMG_2299.MOV.
I am using the following command :
ffmpeg -i img_2299.mov $filename%12d.jpeg
Two questions :
1) where do I need the actual video saved for this to work ? In the same folder as the ff* executable files (/usr/loca/bin) ?
2) And where will the images created be saved ?I can run the command above — but I don’t see any results.
Thank you for any help you can offer.
-
How do I use FFMPEG to scene detect and split a clip at each cut ?
31 août 2015, par Brendan LuuI want to take an edited video and split it into a sequence at each cut. I figured out how to use scene detection with FFMPEG and have the correct timestamps for when scenes change but I would like to use the .txt or .csv to split the full video into individual clips. Can this be done ? If it’s possible, how can I do it ?
The command I used to get the scene detection is
ffprobe -show_frames -of compact=p=0 -f lavfi "movie=MOVIEFILENAME,select=gt(scene\,.4)" > MOVIEFILENAME.csv