
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (15421)
-
avcodec/hevc : Update the USE_SAO_SMALL_BUFFER case for the alignment requirements...
2 février 2015, par Christophe Gisquetavcodec/hevc : Update the USE_SAO_SMALL_BUFFER case for the alignment requirements in FFmpeg
Use edge emu buffers
And enable the code unconditionallySpeed difference without USE_SAO_SMALL_BUFFER and with the new code :
Decicycles : 26772->26220 (BO32), 83803->80942 (BO64)Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Introducing the WebM Community Cross-License Initiative
25 avril 2011, par noreply@blogger.com (Matt Frost) -
Cross-compile FFMPEG for OSX10.6 on 10.8
12 juillet 2013, par SethI use static binaries of FFMPEG and X264 in a droplet application I use at work. I found a great script that greatly simplifies creating the static dependencies and compiling the programs themselves. I used to work on a 10.6.8 machine and as my other machines at work upgraded to 10.7 and 10.8, the old binary continued to work fine. However, I've recently upgraded to a new iMac with 10.8 and I've been wanting to update my ffmpeg to the latest 2.0 release.
As such, I've been trying to figure out cross-compiling for older OSX platforms and I've been failing. I've downloaded the OSX 10.6 SDK and I've tried all the various arch and target flags I can find for all the various libraries, but I still keep getting "Illegal Instruction" errors when trying to run ffmpeg or x264 on 10.6.8.
The entire code is at this repo : https://github.com/csparker247/ffmpeg-static It's really only using the build-crosscompile.sh script and env.source, though. Any and all help is greatly appreciated (even if you just link me to some suggested reading).
EDIT : I didn't have much time earlier so I wasn't able to explain as much as I'd have liked. Here's the configure command I'm using for ffmpeg. It should give an idea of how I'm trying to cross-compile. Chances are I'm doing it very wrong.
CFLAGS="-I$TARGET_DIR/include -mmacosx-version-min=10.6" LDFLAGS="-L$TARGET_DIR/lib -lm" ./configure --arch=x86_64 --target-os=darwin --sysroot=/SDKs/MacOSX.platform/MacOSX10.6.sdk --enable-cross-compile --cc=clang --prefix=${OUTPUT_DIR:-$TARGET_DIR} --extra-version=static --disable-debug --disable-shared --enable-static --extra-cflags=--static --disable-ffplay --disable-ffserver --disable-doc --enable-gpl --enable-pthreads --enable-postproc --enable-gray --enable-runtime-cpudetect --enable-libfdk-aac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-bzlib --enable-zlib --enable-nonfree --enable-version3 --disable-devices