
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (33)
-
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 -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (8526)
-
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
-
Extracting Frames from Video using FFMPEG in GPU and File Name with TimeStamp in Linux
2 septembre 2019, par SRajI have Long video 8hrs to be converted to individual frames to be saved in a folder with the filename in the format "InputVideoName_Frame_Number_TimeStampoftheframeinthevideo.jpg" for example : InputVideo2_234_130425 in a python code. My system has GPU to process the load.
I was able to get to a part of it by running the below code in terminal but was not able to have the filename in the format i need and also was not able to run it in python code with absolute pathnames
ffmpeg -i ActualPath/Video.mp4 -vf fps=1 Outputfolder/out%d.jpg