Recherche avancée

Médias (0)

Mot : - Tags -/xml-rpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (14330)

  • Merge commit ’b2212dec0f011893ec68eecaa990170fa24050d7’

    5 janvier 2014, par Michael Niedermayer
    Merge commit ’b2212dec0f011893ec68eecaa990170fa24050d7’
    

    * commit ’b2212dec0f011893ec68eecaa990170fa24050d7’ :
    aac : Fix TNS decoding for the 512 sample window family.

    also temporarily disable fate-aac-er_ad6000np_44_ep0 as this commit
    causes a mismatch with the reference pcm file
    The test will be reenabled after all fixes and with a new pcm reference

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

    • [DH] libavcodec/aacdec.c
    • [DH] libavcodec/aactab.c
    • [DH] libavcodec/aactab.h
    • [DH] tests/fate/aac.mak
  • swscale : add new frame testing API

    9 octobre 2024, par Niklas Haas
    swscale : add new frame testing API
    

    Replacing the old sws_isSupported* API with a more consistent family
    of functions that follows the same signature and naming convention,
    including a placeholder for testing the color space parameters that
    we don't currently implement conversions for.

    These functions also perform some extra basic sanity checking.

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Niklas Haas <git@haasn.dev>

    • [DH] doc/APIchanges
    • [DH] libswscale/swscale.h
    • [DH] libswscale/utils.c
    • [DH] libswscale/utils.h
    • [DH] libswscale/version.h
  • RN 0.74.7 can't find repo for ffmpeg-kit-react-native 6.0.2

    9 mai, par user938363

    My React Native 0.74.7 (on MacOS) app has hard time to find the ffmpeg-kit-react-native repo when run-android. It constantly complains no repo found on maven. Here is the error when react-native run-android :

    &#xA;

    * What went wrong:&#xA;Could not determine the dependencies of task &#x27;:app:processDebugResources&#x27;.&#xA;> Could not resolve all task dependencies for configuration &#x27;:app:debugRuntimeClasspath&#x27;.&#xA;   > Could not find com.arthenica:ffmpeg-kit-full-gpl:6.0.&#xA;     Searched in the following locations:&#xA;       - https://oss.sonatype.org/content/repositories/snapshots/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom&#xA;       - https://repo.maven.apache.org/maven2/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom&#xA;       - file:/Users/macbook/Documents/code/js/VmonFront/node_modules/jsc-android/dist/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom&#xA;       - https://dl.google.com/dl/android/maven2/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom&#xA;       - https://www.jitpack.io/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom&#xA;     Required by:&#xA;         project :app > project :ffmpeg-kit-react-native&#xA;

    &#xA;

    In android/build.gradle, the repo was specified :

    &#xA;

    buildscript {&#xA;    ext {&#xA;        buildToolsVersion = "34.0.0"&#xA;        minSdkVersion = 23&#xA;        compileSdkVersion = 34&#xA;        targetSdkVersion = 34&#xA;        ndkVersion = "26.1.10909125"&#xA;        kotlinVersion = "1.9.22"&#xA;&#xA;        ffmpegKitPackage = "full-gpl"&#xA;    }&#xA;&#xA;    repositories {&#xA;        google()&#xA;        mavenCentral()&#xA;        maven { url "https://jitpack.io" }&#xA;        // You can comment out the below line if it causes issues:&#xA;        maven { url &#x27;https://maven.arthenica.com/public/&#x27; } //&lt;&lt;&lt;===repo here&#xA;    }&#xA;&#xA;    dependencies {&#xA;        classpath("com.android.tools.build:gradle")&#xA;        classpath("com.facebook.react:react-native-gradle-plugin")&#xA;        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")&#xA;    }&#xA;}&#xA;&#xA;&#xA;apply plugin: "com.facebook.react.rootproject"&#xA;

    &#xA;

    Also the following code is added to android/app/build.gradle :

    &#xA;

    // &#128293; Add this block to override the wrong version in ffmpeg&#x27;s gradle.properties&#xA;configurations.all {&#xA;    resolutionStrategy {&#xA;        force "com.arthenica:ffmpeg-kit-https:6.0". //&lt;&lt;&lt;===6.0.2 or 6 didn&#x27;t work&#xA;        force "com.arthenica:ffmpeg-kit-full-gpl:6.0" // Include if using other packages&#xA;    }&#xA;}&#xA;

    &#xA;

    The problem seems to be with RN 0.74.7 only, as my RN 0.78.0 with ffmpeg-kit-react-native installed was able to download full-gpl version and installed successfully. What is missing here to install ffmpeg-kit on RN 0.74.7 ?

    &#xA;