
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (48)
-
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 -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8391)
-
Got error (input/output error) during tcp opening, FFMPEG
1er juin 2012, par manutdI got error during tcp opening.
Exactly to say,avformat_open_input
always return -5 (input/output error).
I looked into the source of the error code using gdb and found thatgetaddrinfo
(in libavformat/tcp.c) function didn't work well as expected and returned the error value EIO.
ffmpeg source haveff_getaddrinfo
(in libavformat/os_support.c) function that is linked togetaddrinfo
but when I run the program and my program encounteredgetaddrinfo
, my program called other function in libc.so, dynamic library. I couldn't find which function is called.
I gave the valid url to ffmpeg. The valid url is "http://stream.radiojavan.com/radiojavan".I compiled ffmpeg source for Android-use and used ffmpeg version 0.8.1
This is my configuration../configure --target-os=linux \
--prefix=$PREFIX \
--enable-cross-compile \
--extra-libs="-lgcc" \
--arch=arm \
--cc=$PREBUILT/bin/arm-linux-androideabi-gcc \
--cross-prefix=$PREBUILT/bin/arm-linux-androideabi- \
--nm=$PREBUILT/bin/arm-linux-androideabi-nm \
--sysroot=$PLATFORM \
--extra-cflags=" -O3 -fpic -DANDROID -DHAVE_SYS_UIO_H=1 -Dipv6mr_interface=ipv6mr_ifindex -fasm -Wno-psabi -fno-short-enums -fno-strict-aliasing -finline-limit=300 $OPTIMIZE_CFLAGS " \
--disable-shared \
--enable-static \
--extra-ldflags="-Wl,-rpath-link=$PLATFORM/usr/lib -L$PLATFORM/usr/lib -nostdlib -lc -lm -ldl -llog" \
--disable-ffplay \
--enable-zlib \Any advise would be appreciated.
-
Compile ffmpeg for armv7s
14 août 2014, par user3929400I am trying to compile ffmpeg on OSX 10.9. I want to use the ffmpeg framework in an iOS testapplication using xCode.
I want to link the libfaac to ffmpeg and compile it for armv7s. When I follow the compilation guide (https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX) on the ffmpeg site, it does not work.
I used the following configuration :
./configure --prefix=/usr/local --enable-gpl --enable-nonfree --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --arch=armv7s
Another configuration I tried is
./configure --prefix=/usr/local --enable-gpl --enable-nonfree --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --arch=armv7s --enable-cross-compile --target-os=darwin
The difference between both configuration is the cross compile and target os.
Both configuration produces the following error message :
GNU assembler not found, install gas-preprocessor
Although, I have copied gas-preprocessor.pl into the directories /usr/local/bin and /usr/bin and modified the file read-write props by using chmod +x gas-preprocessor.pl
Can somebody help me to configure ffmpeg by giving for example an example configuration which does work ?
-
how to configure ffmpeg for android on windows ?
26 octobre 2023, par charlieChenI have download android-ndk-r20b,ffmpeg on win10 desktop, and msys2 environment to configure the ffmpeg, i have a script file to compile ffmpeg named "ffmpeg.sh" :


#!/bin/bash
BASEDIR=$(pwd)
TOOLCHAIN_PREFIX=/d/softwareToInstall/NDK/android-ndk-r20b/toolchains/llvm/prebuilt/windows/bin
CFLAGS='-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all'
LDFLAGS='-Wl,-z,relro -Wl,-z,now -pie'

./configure \
--target-os=android \
--prefix=../installationForAndroid \
--cross-prefix=$TOOLCHAIN_PREFIX/ \
--cc=$TOOLCHAIN_PREFIX/armv7a-linux-androideabi24-clang \
--cxx=$TOOLCHAIN_PREFIX/armv7a-linux-androideabi24-clang++ \
--ld=$TOOLCHAIN_PREFIX/arm-linux-androideabi-ld \
--nm=$TOOLCHAIN_PREFIX/arm-linux-androideabi-nm \
--arch=armv7a \
--enable-runtime-cpudetect \
--sysroot=/d/softwareToInstall/NDK/android-ndk-r20b/toolchains/llvm/prebuilt/windows/sysroot \
--enable-pic \
--enable-pthreads \
--enable-cross-compile \
--disable-debug \
--enable-version3 \
--enable-hardcoded-tables \
--disable-ffplay \
--disable-ffprobe \
--disable-pthreads \
--enable-gpl \
--disable-x86asm \
--enable-yasm \
--disable-doc \
--disable-shared \
--enable-static 



the i build ffmpeg with those commands :


$ cd ffmpeg-6.0
$ ./ffmpeg.sh
...
$make -j4
$ make -j4



than it report errors :




how to configure it ? i want compile ffmpeg for android on window10