
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (109)
-
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (13661)
-
C++ : FFMPEG and SDL resources
22 janvier 2013, par advs89I'm looking for resources (preferably books, but websites are fine too) for using FFmpeg and/or SDL with C++.
Stuff I'd like to be able to do (eventually) :
- Decode and play videos in realtime to a QT widget (the QT part isn't a problem)
- Overlay text and images on the video (in realtime)
- Loop video
- Cross-fade from one video to another (in realtime)
- Some kind of DVD functionality
- LIVE sources ? (i.e. webcam, stream, etc.)
So far I've looked at (and consider helpful) the following resources :
- FFmpeg and SDL Tutorial by Dranger (extremely helpful)
- Stack Overflow : ffmpeg C API documentation/tutorial (not a duplicate, btw)
-
Sample code bundled with FFMPEG libraries
(I'll try and update this list with anything helpful below)
Thanks for any help...
Also : Operating System is Windows (but maybe one day cross-platform)
Also 2 : Resources using alternatives are welcome too... i.e. DirectShow, VFW, etc. -
Revision 84ec68d21a : mips msa configuration patch for MIPS SIMD Arch (MSA) P5600 and I6400 For P5600
16 mars 2015, par Parag SalasakarChanged Paths :
Modify /build/make/configure.sh
Modify /build/make/rtcd.pl
Modify /configure
mips msa configuration patch for MIPS SIMD Arch (MSA) P5600 and I6400For P5600 :
CROSS=$MTI/bin/mips-mti-linux-gnu- CFLAGS=’-EL’ CXXFLAGS=’-EL’ LDFLAGS=’-EL’\
../configure —target=mips32-linux-gcc —cpu=p5600 —enable-msaFor I6400 :
CROSS=$IMG/bin/mips-img-linux-gnu- CFLAGS=’-EL’ CXXFLAGS=’-EL’ LDFLAGS=’-EL’\
../configure —target=mips64-linux-gcc —cpu=i6400 —enable-msaChange-Id : Id25f721ea1f1991d5116e04dba713aebd7378f05
-
android- How to compile ffmpeg for all cpu architectures
11 décembre 2014, par Sujith ManjavanaHow to compile ffmpeg for all cpu architectures in android. Currently i’m using the following script which generates libs for arm only.
#!/bin/bash
NDK=$HOME/ndk32
SYSROOT=$NDK/platforms/android-9/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86
function build_one
{
./configure \
--prefix=$PREFIX \
--enable-shared \
--disable-static \
--disable-doc \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-ffserver \
--disable-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_oneI want to support all possible platforms.