Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (54)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

Sur d’autres sites (10428)

  • New Matomo Mobile 2.4.0 released

    12 janvier 2018, par Matomo Core Team

    New Matomo Mobile 2.4.0 update is now available for Android 6+ and iOS10.3+ devices. This is the first mobile release that shows signs of the new Matomo branding instead of Piwik. Don’t be surprised if the app still shows the Piwik app icon. This is on purpose as the name of the app changed to Matomo Mobile and some users would otherwise not find the app anymore if they haven’t heard of the renaming from Piwik to Matomo before.

    What’s new in Matomo Mobile ?

    This new version brings some bug fixes and improvements to our Android and iOS apps :

    • Piwik is now Matomo which includes some name changes in the app as well as showing the new logo
    • Fixed broken “Get-involved” link
    • Links to Matomo or other websites now open in the browser app and no longer in the app itself
    • Improved visitor log to support more actions (see #12284)
    • We have updated the underlying framework bringing some performance and compatibility improvements

    Download the Apps

    Update now or install either the iOS version or the Android version. Android users can also download the latest version from our website : download Matomo Mobile 2.4.0 from our website.

    If you experience any issues with this version please let us know.

    Sponsor

    The new Matomo Mobile release has been sponsored by InnoCraft, the creators of Matomo.

    Happy analytics on the go,

    The post New Matomo Mobile 2.4.0 released appeared first on Analytics Platform - Matomo.

  • Anomalie #3863 : liste de tous les plugins dans les résultats de recherche du back-office

    25 novembre 2016, par b b

    Appliqué par svp:r100674 et reporté en 3.1 par http://zone.spip.org/trac/spip-zone/changeset/100675 merci :)

  • AVSubtitleRect DVBSub format explanation

    6 mars 2020, par Captain Jack

    I am trying to convert the DVBSub data in AVSubtitle to RGB format but it doesn’t seem to be working. I am just getting random colours out.

    Here’s the code :

    /* rects comes from AVSubtitleRect type elsewhere*/

    int bw = rects[0].w;
    int bh = rects[0].h;
    uint32_t colour;
    uint32_t *bitmap;
    int r, g, b;

    /* Give it some memory */
    bitmap = malloc(bw * bh * sizeof(uint32_t));

    for (int y = 0; y < bh; y++)
      {
           for (int x = 0; x < bw; x++)
           {
               /* data[0] holds index data */
               const uint8_t index = rects[0]->data[0][y * bw + x];

               /* data[1] holds colours - get colour from index */
               colour = rects[0]->data[1][4 * index];

               r = (colour >> 16) & 0xFF;
               g = (colour >>  8) & 0xFF;
               b = (colour >>  0) & 0xFF;

               /* construct bitmap pixel by pixel (24 bit RGB) */
               bitmap[y * bw + x] = r << 16 | g << 8 | b;
           }
       }

    There is some information here Dump subtitle from AVSubtitle in the file but I am not sure I am understanding it correctly.

    I am sure that I am getting the data correct and text based subtitles look fine. Not quite sure what I am doing wrong here.