Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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, par

    Multilang 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.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7720)

  • Anomalie #2127 : Mauvaise interprétation de SPIP des messages sur le forum avec des requêtes SQL

    26 juin 2011, par cedric -

    Bug présent en 2.0 et 2.1, mais on ne patche qu’en 3.0

  • Revision 86263 : La déclaration d’un afficher_si sur une checkbox était un peu restrictive ...

    24 novembre 2014, par nicolas.dorigny@… — Log

    La déclaration d’un afficher_si sur une checkbox était un peu restrictive : si on ne saisissait pas exactement @checkbox_1@ == "choix2" (avec deux espaces) le @champ@ n’était pas reconnu et générait une erreur de syntaxe en JS : if (@checkbox_1@=="choix2")

  • Giving FFmpeg access to my app's data directory ?

    5 novembre 2015, par jgads

    I’m working with one of the many Android FFmpeg libraries on GitHub, which each involve an NDK wrapper around a C binary. I’m trying to give other apps access to the video file I have edited with FFmpeg (and saved in External Storage), but at least on Android 6.0, the new permissions system prevents them from being able to access the shared file unless they themselves have the External Storage permission granted. The solution here would be to use content providers to open up a directory for other apps to access. However...

    My FFmpeg binary is contained within the app’s data directory, but it fails when I try to access or modify a video file saved there. As mentioned above, it has no problem accessing external storage.

    Is there a way to give FFmpeg access to my app’s data directory, giving it read and write permissions ? Would naming the library with the same package name do the trick ?

    Any ideas ? Thanks for any advice !