Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (39)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

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

Sur d’autres sites (5694)

  • avutil/hwcontext_d3d11va : prefer DXGI 1.1 factory when available

    13 mars 2024, par Timo Rothenpieler
    avutil/hwcontext_d3d11va : prefer DXGI 1.1 factory when available
    

    A lot of modern stuff straight up fails on the old 1.0 factory, which is
    masked by the fact that it's only used when an explicit adapter is
    specified.

    • [DH] libavutil/hwcontext_d3d11va.c
  • Is there a way to scale an avi using ffmpeg while keeping the videos alpha channel ?

    25 septembre 2016, par Megumiaraki

    I have been trying to change the scale of an avi but also keep the alpha channel. Also the video needs to open in after effects but when I try to open it I get the error below. I have this running in a for loop to work for all the videos in the folder.

    ffmpeg -i %%X -vf scale=!newWidth!:!newHeight! -pix_fmt bgra -r 24 -c:v rawvideo "resized\%%X"

    It seems to work but when I try to test the alpha channel in After Effects I get the error below :

    The item has an `unlabeled alpha Channel`....

    If I select the Straight-Unmatted (option).....

    I get the error :

    After Effects error :(error(4) reading frame from file (86::2)

    Any help would be great !

  • ffmpeg is not recognized

    23 décembre 2014, par Ofer Gozlan

    The following code gives me an error in the CMD window (Visual studio 2013 - c# project) :
    ’ffmpeg’ is not recognized as an internal or external command

    Process p = new Process();
           ProcessStartInfo info = new ProcessStartInfo();
           info.FileName = "cmd.exe";
           info.RedirectStandardInput = true;
           info.UseShellExecute = false;

           p.StartInfo = info;
           p.Start();

           using (StreamWriter sw = p.StandardInput)
           {
               if (sw.BaseStream.CanWrite)
               {
                   sw.WriteLine("ffmpeg -i test.mp4 test.mp3");
                   //    sw.WriteLine("mypassword");
                   //    sw.WriteLine("use mydb;");
               }
           }

    This error happens only when i run the command "ffmpeg -i test.mp4 test.mp3" from the code. the other way works - running the command straight from CMD.. any suggestions to make it work from the code ?