
Recherche avancée
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)
-
Moved cross-domain resources into a separate folder.
12 janvier 2012, par Sebastian Tschanm README.md m application.js + cors/jquery.postmessage-transport.js m cors/jquery.xdr-transport.js + cors/postmessage.html + cors/result.html m index.html m jquery.fileupload-ui.js m package.json - style.css m test/index.html Moved cross-domain resources into a separate folder. Moved Bootstrap (...)
-
How to build ffmpeg with hardware decoding support for raspberry pi ? (cross compilation if possible)
29 avril 2022, par PPPIs it possible to build
ffmpeg
with decoding support for Raspberry Pi ? I've read thatmmal
can do hardware accelerated decoding on the Raspberry Pi.

I've tried on debian 10 x86_64 :


./configure \
 --prefix=${BUILD_DIR}/desktop/${FFMPEG_ARCH_FLAG} \
 --disable-doc \
 --enable-cross-compile \
 --cross-prefix=${CROSS_PREFIX} \
 --target-os=linux \
 --arch=${FFMPEG_ARCH_FLAG} \
 --extra-cflags="-O3 -fPIC $EXTRA_CFLAGS" \
 --enable-mmal \
 --enable-omx \
 --enable-omx-rpi \
 --enable-shared \
 --disable-debug \
 --disable-runtime-cpudetect \
 --disable-programs \
 --disable-muxers \
 --disable-encoders \
 --disable-bsfs \
 --disable-pthreads \
 --disable-avdevice \
 --disable-network \
 --disable-postproc 



where
CROSS_PREFIX=aarch64-linux-gnu-
andFFMPEG_ARCH_FLAG=aarch64
but obviously I getERROR: mmal not found
. I couldn't find MMAL to compile and install.

-
How to convert a video format into mp3 format using back end language script
20 juillet 2017, par GeorgeTheGoodI want to convert mp4 into mp3 with back end script (language doesn’t matter but preferably java or php). I know that there exists ffmpeg but I don’t want it to be done by hand. I want to build a website which requires link of a video and then converts it to mp3.