
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (37)
-
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 (...) -
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 (5146)
-
FFMPEG : preset not found in Windows Vista
18 mars, par StackOverflowNewbieI download FFMPEG from http://www.videohelp.com/tools/ffmpeg#download and saved it in my c :\program files\ffmpeg (Windows Vista). My
Path
's first 2 entries are :


c:\program files\ffmpeg\bin;c:\program files\ffmpeg\presets;




I found the following command on the net (http://paulrouget.com/e/converttohtml5video/)



ffmpeg -i input.avi -acodec libvorbis -ab 96k -vcodec libx264 -vpre main -level 21 -refs 2 -b 345k -bt 345k -threads 0 -s 320x240 output.mp4




When I run this on command line, I get the following error :



File for preset main not found



Any ideas what might be wrong ?


-
FFMPEG : preset not found in Windows Vista
12 juin 2012, par StackOverflowNewbieI download FFMPEG from http://www.videohelp.com/tools/ffmpeg#download and saved it in my c :\program files\ffmpeg (Windows Vista). My
Path
's first 2 entries are :c:\program files\ffmpeg\bin;c:\program files\ffmpeg\presets;
I found the following command on the net (http://paulrouget.com/e/converttohtml5video/)
ffmpeg -i input.avi -acodec libvorbis -ab 96k -vcodec libx264 -vpre main -level 21 -refs 2 -b 345k -bt 345k -threads 0 -s 320x240 output.mp4
When I run this on command line, I get the following error :
File for preset main not found
Any ideas what might be wrong ?
-
ffmpeg extensionless ts file [closed]
15 avril, par Erv00I want to download a video file that is streamed with HLS.

Unfortunately, the .m3u8 file references the segments that have no extension, and thus the HLS demuxer throws the following error :

detected format mpegts extension none mismatches allowed extensions in url <the url="url">
</the>


The url is like
https://example.com/segment3


I have tried to allow all extensions with
-allowed_extensions ALL,none
, but this does not work.

My question is, how can I make this work, without having to download all segments by hand ?