
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (22)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (11195)
-
Ffmpeg - creating thumbnail from webm format and converting webm movie to flv movie
29 janvier 2015, par redI have got a problem in which i want to
make a thumbnail from webm movie using ffmpeg.I have this error when trying to make that
thumbnail :"Unknown format is not supported
as input pixel format"Furthermore i want to convert webm movie to
flv movie.Thanks in advance.
-
ffmpeg make error : doc/Makefile:84 : recipe for target 'doc/ffmpeg.pod' failed
11 décembre 2020, par Lin LingfengI download the FFmpeg from ffmpeg-snapshot.tar.bz2.
Following the INSTALL.md :


Installing FFmpeg


- 

-
Type
./configure
to create the configuration. A list of configure
options is printed by runningconfigure --help
.

configure
can be launched from a directory different from the FFmpeg
sources to build the objects out of tree. To do this, use an absolute
path when launchingconfigure
, e.g./ffmpegdir/ffmpeg/configure
.

-
Then type
make
to build FFmpeg. GNU Make 3.81 or later is required.

-
Type
make install
to install all binaries and libraries you built.









NOTICE


- 

- Non system dependencies (e.g. libx264, libvpx) are disabled by default.




ERROR


After the step1. When I run
make
, it failed :

...
...
CC libavutil/x86/lls_init.o
CC libavutil/x86/pixelutils_init.o
CC libavutil/xga_font_data.o
CC libavutil/xtea.o
AR libavutil/libavutil.a
GEN libavutil/libavutil.pc
HOSTCC doc/print_options.o
HOSTLD doc/print_options
GENTEXI doc/avoptions_format.texi
GENTEXI doc/avoptions_codec.texi
POD doc/ffmpeg.pod
Insecure dependency in open while running setuid at ./doc/texi2pod.pl line 79.
doc/Makefile:84: recipe for target 'doc/ffmpeg.pod' failed
make: *** [doc/ffmpeg.pod] Error 25



What's wrong ?


-
-
ffmpeg batch retains old filetype in name
3 juin 2018, par InsertDisplayNameHereI’m using the following
ffmpeg
script to convert all .mp4 files in the folder to .webm.for %%A IN (*.mp4) DO ffmpeg -i "%%A" -c:v libvpx -crf 4 -b:v 3M -c:a libvorbis "%%A.webm"
I am trying to make it go from
"xxx.mp4"
to"xxx.webm"
However when I run the script the file name goes from
"xxx.mp4"
to"xxx.mp4.webm"
Any suggestions are highly appreciated.