Advanced search

Medias (1)

Tag: - Tags -/pirate bay

Other articles (23)

  • Publier sur MédiaSpip

    13 June 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP Core : La Configuration

    9 November 2010, by

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes; une page spécifique à la configuration de la page d’accueil du site; une page spécifique à la configuration des secteurs;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques de (...)

  • Configuration spécifique pour PHP5

    4 February 2011, by

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

On other websites (6424)

  • How to optimize YUV to RGB color conversion code

    1 February 2016, by user_12

    I have written a function to convert an image in YUV420P to RGB but it is taking 30 millisecond to convert an image (size: 1280 x 720) into RGB, but when I am using ffmpeg function ( as this) to convert YUV image into RGB its taking only 2 millisecond for the same image. What is the problem with my code ? How can I optimize the code that I have written ??
    My code is given below

    int step = origImage->widthStep;
    uchar *data = (uchar *)origImage->imageData;
    int size = origImage->width * origImage->height;
    IplImage* img1 = cvCreateImage(cvGetSize(origImage), IPL_DEPTH_8U, 3);

       for (int i = 0; iheight; i++)
       {
         for (int j=0; jwidth; j++)
         {
           float Y = data[i*step + j];
           float U = data[ (int)(size + (i/2)*(step/2)  + j/2) ];
           float V = data[ (int)(size*1.25 + (i/2)*(step/2) + j/2)];

           float R = Y + 1.402 * (V - 128);
           float G = Y - 0.344 * (U - 128) - 0.714 * (V - 128);
           float B = Y + 1.772 * (U - 128);


           if (R < 0){ R = 0; } if (G < 0){ G = 0; } if (B < 0){ B = 0; }
           if (R > 255 ){ R = 255; } if (G > 255) { G = 255; } if (B > 255) { B = 255; }

           cvSet2D(img1, i, j,cvScalar(B,G,R));
         }
       }
  • Compile real static FFmpeg for macOS Arm Silicon? [closed]

    15 May 2023, by EngMec

    I'm trying to compile real static FFmpeg for macOS Arm Silicon.

    


    Could someone help me with a step-by-step where to put the downloaded files and especially how to Build for ARM (Apple Silicon) the script?

    


    explanatory capture

    


  • ffmpeg setting up in wamp (in local) OR server

    5 January 2013, by Rahul TS

    can anyone explain the procedure of installing ffmpeg in wamp.
    I got an answer to my previous question on ffmpeg and wamp that we have to interface the ffmpeg (here) with wamp.

    I need to have a step by step process of how to do this, as I am confused with the interfacing little bit

    I also want to know what is a way to install this ffmpeg into the server, or the procedure to do before we do the encloding procedures