
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 (9)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)
Sur d’autres sites (4233)
-
tools/ : Add gen-rc tool for generating Windows resource files
11 décembre 2013, par Timothy Gu -
How to build ffmpeg in Android NDK under Windows
30 août 2016, par Oliver WickendenI’m trying to build ffmpeg in Android NDK under Windows to put into an app but having issues.
I found various guides on how to do this but they were all many years old and no longer worked.What I’ve done so far is install NDK and downloaded the latest ffmpeg 3.1.2 source code into the sources folder. I also installed cygwin.
I then created a script, build_android.sh, with the code (taken from another guide) :
#!/bin/bash
NDK=/cygdrive/c/Android/ndk/android-ndk-r12b
SYSROOT=$NDK/platforms/android-24/arch-arm64/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/windows-x86_64
function build_one
{
./configure \
--prefix=$PREFIX \
--disable-shared \
--enable-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_oneWhen I run this I get :
Makefile:198: /tests/Makefile: No such file or directory
make: *** No rule to make target '/tests/Makefile'. Stop.Anyone know how to successfully build ffmpeg in NDK or have any guides that work with the latest version ?
Thanks,
Oliver -
use ffmpeg as dll in c++ windows
8 mai 2022, par user19068953I need to import ffmpeg but I don't want to use it as static lib I want to dynamicly link it but I couldn't find a proper way to do it. I only found the source code from its site and the compiled .exe files. Is there a way for me to use it as dll ? do ffmpeg.dll exist or should I compile it myself ?