Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (59)

  • 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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie 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 (...)

Sur d’autres sites (6956)

  • avcodec/sonic : add larger version and minor_version fields with version >= 2

    10 décembre 2013, par Michael Niedermayer
    avcodec/sonic : add larger version and minor_version fields with version >= 2
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/sonic.c
  • Updating app uses FFMpeg version used in older version of app

    29 juin 2020, par Android Developer

    I was using FFMpeg old version in my app and now i updated my app to new FFMpeg version.But when i update my old app version to new app version it still seems to use old version of FFMpeg until i uninstall old app version and then install new app version.I tried programmatically delete cache data in my new version of app using below code but with that also I face problem in some devices which still uses old FFMpeg version-

    &#xA;

      private void clearData()&#xA;    {&#xA;        try {&#xA;            PackageInfo pInfo = getPackageManager().getPackageInfo(getPackageName(), 0);&#xA;            int mCurrentVersion = pInfo.versionCode;&#xA;            SharedPreferences mSharedPreferences = getSharedPreferences("xyz",  Context.MODE_PRIVATE);&#xA;            SharedPreferences.Editor mEditor = mSharedPreferences.edit();&#xA;            mEditor.apply();&#xA;            int last_version = mSharedPreferences.getInt("last_version", -1);&#xA;            if(last_version != mCurrentVersion)&#xA;            {&#xA;                deleteCache(this);&#xA;            }&#xA;            mEditor.putInt("last_version", mCurrentVersion);&#xA;            mEditor.commit();&#xA;        } catch (Exception e) {&#xA;            FirebaseCrashlytics.getInstance().recordException(e);&#xA;        }&#xA;    }&#xA;    private void deleteCache(Context context) {&#xA;        try {&#xA;            File dir = context.getCacheDir();&#xA;            deleteCacheDir(dir);&#xA;        } catch (Exception e) { FirebaseCrashlytics.getInstance().recordException(e);&#xA;        }&#xA;    }&#xA;    private boolean deleteCacheDir(File dir) {&#xA;        if (dir != null &amp;&amp; dir.isDirectory()) {&#xA;            String[] children = dir.list();&#xA;            for (int i = 0; i &lt; children.length; i&#x2B;&#x2B;) {&#xA;                boolean success = deleteCacheDir(new File(dir, children[i]));&#xA;                if (!success) {&#xA;                    return false;&#xA;                }&#xA;            }&#xA;            return dir.delete();&#xA;        } else if(dir!= null &amp;&amp; dir.isFile()) {&#xA;            return dir.delete();&#xA;        } else {&#xA;            return false;&#xA;        }&#xA;    }&#xA;

    &#xA;

  • configure : use real libfdk-aac version instead of API version in help text

    5 février 2014, par Timothy Gu
    configure : use real libfdk-aac version instead of API version in help text
    

    Also use real name with a ’-’ instead of ’_’.

    Signed-off-by : Timothy Gu <timothygu99@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] configure