
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (71)
-
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (3030)
-
avcodec/ffwavesynth : use uint32_t to compute difference, it is enough
21 juin 2019, par Michael Niedermayeravcodec/ffwavesynth : use uint32_t to compute difference, it is enough
Fixes : signed integer overflow : 6494225984479297536 - -6043795377581187040 cannot be represented in type 'long'
Fixes : 15285/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFWAVESYNTH_fuzzer-5632780307791872Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Difference between .so file and java library in ffmpeg
1er septembre 2020, par yejafotIs there any difference between using ffmpeg with .so file(ndk,.cpp) or simply by using ffmpeg library(example : com.github.hiteshsondhi88.libffmeg). I see my collegues apps sell 10rs by using these libraries vs with app on cpp function call sells 1000rs+ ?


Implementation with java library :


FFmpeg ffmpeg = FFmpeg.getInstance(context);
try {
 // to execute "ffmpeg -version" command you just need to pass "-version"
 ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler() {

 @Override
 public void onStart() {}

 @Override
 public void onProgress(String message) {}

 @Override
 public void onFailure(String message) {}

 @Override
 public void onSuccess(String message) {}

 @Override
 public void onFinish() {}
 });
} catch (FFmpegCommandAlreadyRunningException e) {
 // Handle if FFmpeg is already running
}



-
In FFmpeg, can -filter_complex do everything that -filter can ? (i.e., is it a direct replacement)
1er avril 2020, par Robert SalesasThis may seem like a strange question but... is it possible to do everything -filter can do using only -filter_complex filters ? That is, is there anything that -filter can do, that is not possible with -filter_complex ?