
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (97)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...) -
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 (2980)
-
Build PJSIP with video support on Windows 7, with MinGW
3 juillet 2015, par Daniel VI’m trying to build PJSIP with video support for Windows OS, on my Windows 7 PC by using MinGW.
Following the official guide from PJSIP :
http://trac.pjsip.org/repos/wiki/Getting-Started/Autoconf#VideoSupportfor2.0andaboveBuilding PJSIP without video support works as expected for me.
- I’m using the latest PJSIP 2.2.1 from SVN
- SDL2-devel-2.0.3-mingw.tar.gz (MinGW 32/64-bit)
- ffmpeg-20140805-git-de41798-win32-dev
I have added "#define PJMEDIA_HAS_VIDEO 1" in the config_site.h file
and I’m building PJSIP with the following options :
./configure —with-ffmpeg="/c/PJSIP/ffmpeg" —with-sdl="/c/PJSIP/SDL"but I have the following compilation error for SDL :
c:/PJSIP/SDL/lib/libSDL2main.a(SDL_windows_main.o): In function `console_main':
/Users/slouken/release/SDL/SDL2-2.0.3-source/foo-x86/../src/main/windows/SDL_win
dows_main.c:140: undefined reference to `SDL_main'
collect2.exe: error: ld returned 1 exit status
make[2]: *** [../bin/pjsua2-test-i686-pc-mingw32] Error 1
make[2]: Leaving directory `/c/PJSIP/trunk/pjsip/build'
make[1]: *** [pjsua2-test-i686-pc-mingw32] Error 2
make[1]: Leaving directory `/c/PJSIP/trunk/pjsip/build'
make: *** [all] Error 1The same error is available with SDL-2.0.2 too.
-
FFmpeg compilation with encoder x264 not found Windows
23 novembre 2016, par Bernhard LutzFFmpeg compilation with encoder x264 not found Windows
I am trying to compile FFmpeg with several encoder (x264, NVENC). I already
managed to compile FFmpeg with MinGW and also x264 but I do not know how I can
tell where my compiled encoders are.I have a folder where my FFmpeg sources are and in this directory I have my
compiled x264 encoder in a subfolder called x264.OS : Windows 10
Compiler : MinGW
-
FFMPEG for android in Windows not successfully compile
23 décembre 2014, par PRAKASH UBHADIYAI am trying to compile FFMPEG for android in Windows 8.1 but i got error at 32 line in build_android.sh
./build_android.sh : line 32 : syntax error : unexpected end of file
when i execute command in cygwin
chmod +x build_android.sh
./build_android.sh
If you are knows steps to compile ffmpeg for android in windows and how to use ffmpeg in android then pleas reply me.
I am referencing .
http://www.packtpub.com/sites/default/files/downloads/Developing_Multimedia_Applications_with_NDK.pdf
,https://trac.ffmpeg.org/wiki/CompilationGuide/Android and
http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9
build_android.sh
#!/bin/bash
NDK=E:/android-ndk-r9d
SYSROOT=$NDK/platforms/android-9/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.6/prebuilt/windows
function build_one { ./configure \
--prefix=$PREFIX \
--disable-shared \
--enable-static \
--disable-doc \
--enable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-ffserver \
--enable-avdevice \
--disable-doc \
--disable-symver \
--cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
--target-os=linux \
--arch=arm \
--enable-cross-compile \
--sysroot=$SYSROOT \
--extra-cflags="-Os -fpic $ADDI_CFLAGS" \
--extra-ldflags="$ADDI_LDFLAGS" \
$ADDITIONAL_CONFIGURE_FLAG
make clean
make
make install }
CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-marm"
build_one