
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (83)
-
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...)
Sur d’autres sites (3641)
-
Compiling custom FFMPEG for mp3/wav to flac conversion
3 décembre 2019, par ArttuI need to compile ffmpeg from source for CentOS. The goal it to convert MP3 and WAV to FLAC. I tried to compile ffmpeg with this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
and it worked fine, but took approximately 20min and compiled a bunch unnecessary things, even thought I did not used next options as recommended in guide, but used :PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
--prefix="/opt/tmg/ffmpeg_build" \
--pkg-config-flags="--static" \
--extra-cflags="-I/opt/tmg/ffmpeg_build/include" \
--extra-ldflags="-L/opt/tmg/ffmpeg_build/lib" \
--extra-libs=-lpthread \
--extra-libs=-lm \
--bindir="/opt/tmg/ffmpeg_build/bin" \
--enable-gpl \
--enable-libfreetypeMy question is what do I need for MP3 and WAV to FLAC and how do I compile just that part ?
I found in configuration
--disable-all
option, but what do I have to enable ?Thanks in advance.
-
FFmpeg MSVC Compilation stuck
10 mai 2017, par EarinorFor several days now I try to build the FFmpeg Libraries. I’m using Windows7 64 Bit and MSVC2010. I followed this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/MSVC
I got rid of a view errors and configure is working finally. But when I try make, it runs for like half an hour and then gets stuck. It won’t proceed, I kept it running over night and nothing happend. I also tried different compiler options but it gets stuck every time at the same point.
ffv1dec.o_converted.c
d:\cpplibraries\ffmpeg-master\libavcodec\get_bits.h(308) : warning C4101: 're_cache' : unreferenced local variable
d:\cpplibraries\ffmpeg-master\libavcodec\golomb.h(360) : warning C4245: '=' : conversion from 'int' to 'unsigned int', signed/unsigned mismatchI also tried setting up a minGW64 Msys2 Environment but have the same issue there.
I also tried another setup but when I get rid of some errors I always get stuck at the exact same position.The cl.exe is running and is using memory but nothing happens.
I also get a ton of warnings like conversions from int to unsigned int, Makro redefinitions, etc.
I have no idea where to look to fix this, so I would appreciate some help.
-
FFMPEG Video Encode Single Input Multi Output
1er août 2014, par ShyamKGI have a custom video encoder filter which can produce upto 5 different bitrates for the same resolution.
Note that single instance of the encoder is optimized for producing these multiple outputs. Every encode call returns 5 output buffers.
This means that I would not want to run more than one encoder instance.I need to integrate this encoder to FFMPEG which should give multiple outputs for a single input. I have referred the following link regarding creating multiple outputs.
https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputsIn this link multiple outputs are created by running multiple encoder instances which is not my requirement.
Is there any way by which we can configure ffmpeg to give multiple output for one encoder instance ?