
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (95)
-
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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (7408)
-
Is there a way to generate ffmpeg command-lines by analyzing an existing video file ?
24 décembre 2014, par PreservedMooseIs there a tool or technique that is able to generate a valid ffmpeg encode command, based on the properties of an existing source file ?
In other words, I’d like to take an H264 QuickTime file, run it through the aforementioned (possibly) mythical tool, and have it spit out an ffmpeg command line that can be used to encode another video that matches the exact specs of the source file.
Apple’s Compressor has similar functionality, where you can just drag a Quicktime file to the Compressor Presets window, and it will automatically create an encoding preset that matches the specs of that file.
Is there a similar way to achieve this with ffmpeg ?
-
ffmpeg decode one video frame at a time
28 juillet 2014, par KrishnaMost ffmpeg examples online show video decoding using a
while ()
and the entire sequence is decoded in one attempt. For example,while(av_read_frame(pFormatCtx, &packet)>=0) {
if(packet.stream_index==videoStream) {
// Decode video frame
avcodec_decode_video(pCodecCtx, pFrame, &frameFinished,
packet.data, packet.size);
// Did we get a video frame?
if(frameFinished) {
... do something
}
}
// Free the packet that was allocated by av_read_frame
av_free_packet(&packet);
}Is there a technique to (1) create a function that will decode only one frame and (2) then call that function repeatedly (how many ever times needed).
I wrote such a function and tried to decode an HEVC stream and I always get this error "Could not find ref with POC xx", where xx stands for some integer. Looks like it can’t find references — how do I get around this ?
Thanks !
-
ffmpeg android applying multiple filters in string array commands causes error
13 février 2018, par Nikhil SolankiString[] command = {"-y",
"-i",
selectedVideoPath,
"-vf",
"hue=s=0",
"scale=-1:'min(ih,720)'",
"-vcodec",
"mpeg4",
"-ss",
startMs,
"-to",
endMs,
"-preset",
"ultrafast",
"-strict",
"experimental",
getAppPath(context) + fileName};I am using above command in FFMPEG.execute() but its give error in Logcat :
Unable to find a suitable output format for ’scale=-1 :’min(ih,720)’’
scale=-1 :’min(ih,720)’ : Invalid argumentSo may be there is different technique to execute multiple filters command which I want know.
Note : selectedVideoPath and getAppPath(context) + fileName is source video path and destination video path with file name proper.