
Recherche avancée
Autres articles (50)
-
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 (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (5961)
-
Is ffmpeg a good upscaler from SD to HD ?
15 août 2014, par user3928079Is ffmpeg a good upscaler to convert SD videos to HD ?
I use the AVANTI GUI. I installed it and put the ffmpeg and ffplay exe into the folder ffmpeg in the program folder. What I know is that you can only preserve the detail when you upscale from SD to HD. You don’t really gain any additional information. TV companies like Samsung, Sony, LG, Panasonic, Sharp, and others refuse to think so and push the boundaries of upscaling so that additional information can be added when the image is upscaled from SD to HD and HD to 4K and so on and so forth. I’ve run a test through the AVANTI ffmpeg GUI.
Codec : XVID to H.264
Bitrate : 1640 kbps to 6000 kbps
Resolution : 640x480 to 1440x1080
Format : AVI to M4V
Audio Codec : AC3 to AAC
Audio Bitrate : 192 kbps
Audio Frequency : 48000 Hz
Upscale method : SplineWill this upscale method work in any way with converting SD video to HD video. There’s a lot of SD content out that haven’t made the transition to, or probably never will be, HD.
-
Anomalie #3273 : Bug fonctions avancées sous spip 3.0.17
27 septembre 2014, par Vincent MartyArgh... Je vais réinstaller spip sur ces sites alors ce doit être un ou des fichier(s) mal uploadé(s)...
Je vais regarder l’errorlog apache aussi
Merci pour vos tests -
Java, FfMPEG : Gson not found even though it's there.
19 avril 2018, par We are BorgI am working on a Spring-MVC application in which we are using FFProbe to get media information. Unfortunately, it’s not working on our live instance. We have ffmpeg & ffprobe installed on same path. The error we get is GSON is not foudn, although we have it.
Error log :
Caused by:
java.lang.NoSuchMethodError: com.google.gson.Gson.<init>(Lcom/google/gson/internal/Excluder;Lcom/google/gson/FieldNamingStrategy;Ljava/util/Map;ZZZZZZLcom/goo
gle/gson/LongSerializationPolicy;Ljava/util/List;)V
at com.google.gson.GsonBuilder.create(GsonBuilder.java:545)
at net.bramp.ffmpeg.FFmpegUtils.setupGson(FFmpegUtils.java:124)
at net.bramp.ffmpeg.FFmpegUtils.<clinit>(FFmpegUtils.java:23)
at net.bramp.ffmpeg.FFprobe.<clinit>(FFprobe.java:29)
</clinit></clinit></init>POM.xml :
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Apache Development Snapshot Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<parent>
<groupid>io.spring.platform</groupid>
<artifactid>platform-bom</artifactid>
<version>2.0.8.RELEASE</version>
<relativepath></relativepath>
</parent>
<dependencies>
<dependency>
<groupid>net.bramp.ffmpeg</groupid>
<artifactid>ffmpeg</artifactid>
<version>0.6.2</version>
</dependency>
<dependency>
<groupid>com.google.code.gson</groupid>
<artifactid>gson</artifactid>
</dependency>
</dependencies>Usage :
Error thrown on first line.
FFprobe ffprobe = new FFprobe("/usr/bin/ffprobe");
FFmpegProbeResult probeResult = ffprobe.probe(filePath);I can confirm that ffprobe file is available on
/usr/bin
. What am I doing wrong here ? Thank you.