
Recherche avancée
Autres articles (87)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (14334)
-
OpenCV binary deployment (Linux)
25 décembre 2013, par Vadim KantorovIn the institute we use Scientific Linux 5 on the cluster and I need to deploy an app that uses a modern OpenCV distribution (2.3.1 or 2.4.0). I don't have root privileges on the cluster.
Essentially, how do I package all the dynamic binary dependencies of ffmpeg (and hopefully x264), opencv so that I can xcopy-deploy my app ?
I have a working installation of OpenCV 2.3.1 on Ubuntu. If there was a way to controllably load the executable and copy along all the dynamic dependencies, I could use it.
Thanks,
Vadim -
Convert aac to mp3 using ffmpeg binary command in android
21 février 2016, par Long UniI’m trying to use ffmpeg binary to convert aac format to mp3 format in andorid
I am too referring to a example here : https://github.com/sjitech/ffmpeg-androidWhat I tried with failure is
p = Runtime.getRuntime().exec("/data/data/myapp/app_bin/ffmpeg -i /sdcard/chua.aac -acodec libmp3lame -ac 2 -ab 160 /sdcard/chua.mp3") ;
I make sure that "/sdcard/chua.aac" exists on my phone
I guess the problem may come from libmp3lame in the command which is disabled in ffmpeg binary when building before with the example but I’m not very sure
Please someone reveal what my problem is and how to fix it.
-
configure : Don’t use symlinks for creating the out of tree makefile
14 novembre 2013, par Martin Storsjöconfigure : Don’t use symlinks for creating the out of tree makefile
On some platforms (such as msys), symlinks are (poorly) emulated
by simply creating a copy of the file.This means that when building out of tree, the build tree gets
a copy of the original makefile, which can lead to unintuitive
build errors when the original makefile gets updated later.Instead simply create a stub makefile which includes the real
one.Signed-off-by : Martin Storsjö <martin@martin.st>