Recherche avancée

Médias (91)

Autres articles (79)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

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

Sur d’autres sites (3905)

  • Install ffmpeg-php with PHP 5.3.x [closed]

    4 octobre 2012, par Proloy

    I know that this question has been asked many times on this site. I tried all and nothing works for me. I also saw some rumor that ffmpeg-php doesn't work well with PHP 5.3.x.

    I am totally fed up. My FFMPEG-PHP worked fine for PHP 5.2.x but after I upgraded to PHP 5.3.x it stopped to show in phpinfo().

    I have a centOS 5.8 box.

    Can anyone tell me why this happened ?

  • How to limit FFMpeg CPU usage ?

    6 juillet 2012, par user735647

    I am calling FFMpeg inside a C# Windows Forms application. Since it uses so much CPU(almost 100%), none of my threads can continue working. Is there a way to limit this CPU usage ?

    Below is my working code,

    Process ffmpeg = new Process();
    ffmpeg.StartInfo.UseShellExecute = false;
    ffmpeg.StartInfo.FileName = '..\ffmpeg.exe'
    ffmpeg.StartInfo.CreateNoWindow = true;
    ffmpeg.Start();

    I've tried to set Process.PriorityClass to PriorityClass.BelowNormal but this totally blocked the ffmpeg process.

    Is there any other way out ?

  • How to mirror swscale PIX_FMT_YUYV422

    31 janvier 2012, par superg

    I'm trying to mirror libswscale PIX_FMT_YUYV422-type image horizontally. Using simple loop for each line with 16-bits per pixel results in having colors wrong, for example blue objects are orange. Here is my code :

      typedef unsigned short YUVPixel; // 16 bits per pixel
       for (int y = 0; y < outHeight; y++)
       {
           YUVPixel *p1 = (YUVPixel*)pBits + y * outWidth;
           YUVPixel *p2 = p1 + outWidth - 1;
           for (int x = 0; x < outWidth/2; x++) // outWidth is image width in pixels
           {
               // packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
               unsigned short tmp;
               tmp = *p1;
               *p1 = *p2;
               *p2 = tmp;
           }
       }

    Then I tried redefining YUVPixel as 32-bit type and modifying my loop accordingly. This results in correct colors, but looks like neighboring pixels are swapped. Any ideas, I'm totally lost with this ?