
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (43)
-
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
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 -
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 (6037)
-
How statically compile ffmpeg in Alpine with libass / l-smash / x264 / fdk-aac
3 août 2017, par mamcxI’m trying to build a static binary with dependencies. It faile with :
ERROR : libass not found using pkg-config
I’m following https://github.com/zimbatm/ffmpeg-static/blob/master/build.sh as sample
This is the docker
git clone --depth 1 https://github.com/l-smash/l-smash \
&& git clone --depth 1 git://source.ffmpeg.org/ffmpeg \
&& git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git \
&& git clone --depth 1 https://github.com/mulx/aacgain.git \
&& git clone --depth 1 git://git.videolan.org/x264.git \
&& hg clone https://bitbucket.org/multicoreware/x265 \
&& git clone --depth 1 https://chromium.googlesource.com/webm/libvpx \
&& git clone --depth 1 git://git.opus-codec.org/opus.git \
&& git clone --depth 1 https://github.com/libass/libass.git
mkdir /usr/local/src/nasm
cd /usr/local/src/nasm
curl http://www.nasm.us/pub/nasm/releasebuilds/2.13.01/nasm-2.13.01.tar.bz2 | tar -xj -C .
cd nasm-2.13.01
./configure --prefix=$TARGET_DIR --bindir=$BIN_DIR \
&& make --quiet -j ${NUM_CORES} \
&& make --quiet install
mkdir /usr/local/src/harfbuzz/
cd /usr/local/src/harfbuzz/
curl https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.4.6.tar.bz2 | tar -xj -C .
cd harfbuzz-1.4.6
./configure --prefix=$TARGET_DIR \
&& make --quiet -j ${NUM_CORES} \
&& make --quiet install
cd /usr/local/src/libass
./configure --prefix=$TARGET_DIR --bindir=$BIN_DIR --enable-static --disable-shared \
&& make --quiet -j ${NUM_CORES} \
&& make --quiet install
# Build L-SMASH
# =================================
cd /usr/local/src/l-smash
./configure --prefix=$TARGET_DIR --bindir=$BIN_DIR \
&& make --quiet -j ${NUM_CORES} \
&& make --quiet install
# =================================
# Build libx264
# =================================
cd /usr/local/src/x264
./configure --prefix=$TARGET_DIR --enable-static --disable-shared --disable-opencl --enable-pic \
&& make --quiet -j ${NUM_CORES} \
&& make --quiet install
# =================================
# Build libx265
# =================================
cd /usr/local/src/x265/build/linux
cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$TARGET_DIR" -DENABLE_SHARED:bool=off ../../source
make --quiet -j ${NUM_CORES} \
&& make --quiet install
# =================================
# Build libfdk-aac
# =================================
cd /usr/local/src/fdk-aac
autoreconf -fiv \
&& ./configure --prefix=$TARGET_DIR --disable-shared \
&& make --quiet -j ${NUM_CORES} \
&& make --quiet install
# # =================================
# # Build libvpx
# # =================================
# cd /usr/local/src/libvpx
# ./configure --disable-examples --disable-unit-tests --enable-pic \
# && make --quiet -j ${NUM_CORES} \
# && make --quiet install
# # =================================
# # Build libopus
# # =================================
# cd /usr/local/src/opus
# ./autogen.sh \
# && ./configure --disable-shared \
# && make --quiet -j ${NUM_CORES} \
# && make --quiet install
# =================================
# Build ffmpeg.
# =================================
# --enable-libx265 - Remove until we can figure out compile error
cd /usr/local/src/ffmpeg
[ ! -f config.status ] && PATH="$BIN_DIR:$PATH" \
PKG_CONFIG_PATH="$TARGET_DIR/lib/pkgconfig" ./configure \
--extra-libs="-ldl" \
--prefix="$TARGET_DIR" \
--pkg-config-flags="--static" \
--extra-cflags="-I$TARGET_DIR/include" \
--extra-ldflags="-L$TARGET_DIR/lib" \
--extra-ldexeflags="-static" \
--bindir="$BIN_DIR" \
--enable-gpl \
--enable-libass \
--enable-libfdk-aac \
--enable-libfontconfig \
--enable-libfreetype \
--enable-libfribidi \
--enable-libmp3lame \
--enable-libopus \
--enable-libtheora \
--enable-libvorbis \
--enable-libvpx \
--enable-libx264 \
--enable-nonfree \
--enable-postproc \
--enable-pic \
--enable-pthreads \
--enable-shared \
--disable-stripping \
--disable-static \
&& make --quiet -j ${NUM_CORES} \
&& make --quiet install
# Remove all tmpfile -
iFrameExtractor no ffmpeg with build_universal script
15 août 2016, par AlecGambleI’m trying to follow this tutorial on how to extract the frames from an iphone video :
http://www.codza.com/extracting-frames-from-movies-on-iphone#more-343
It says to do the following :
- open Terminal
- clone the repository :
git clone git://github.com/lajos/iFrameExtractor.git
- go to the ffmpeg folder in the project :
cd iFrameExtractor/ffmpeg
- build the ffmpeg libraries :
./build_universal
So there’s no ffmpeg folder in iFrameExtractor after cloning the repository so I went to the github page and it says to download the latest version of ffmpeg and move to to the ffmpeg folder (I presume it just means within iFrameExtractor) :
- Download the latest ffmpeg (0.11.1 tested) :
git clone git://source.ffmpeg.org/ffmpeg.git
So I’ve done that but there’s no file or directory when I try to run
./build_universal
and I can see that there isn’t.Any ideas what I’m doing wrong ?
Alternatively I was also looking at just installing ffmpeg-ios and trying to extract the frames myself :
https://github.com/kewlbear/FFmpeg-iOS-build-script
and I’ve run the script so I’ve got that folder in my xcode project as well but I’m unsure on how to link it properly ?
-
lavf : add WebVTT muxer.
12 juin 2013, par Matthew Heaneylavf : add WebVTT muxer.
This revision creates a WebVTT muxer, that outputs files having the
format described in the following specification :