Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (85)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (8960)

  • Changed : Adding chapters using an array of chapter parts now adds the part counter to the filename before the extension.

    6 juin 2012, par Grandt
    Changed : Adding chapters using an array of chapter parts now adds the part counter to the filename before the extension.
  • ffmpeg convert image sequence to video

    11 juillet 2012, par knishua

    image sequences start with

    sdhdfd_plate_bg01_v001_fds_fdse_fdfd.1001
    sdhdfd_plate_bg01_v001_fds_fdse_fdfd.1002
    sdhdfd_plate_bg01_v001_fds_fdse_fdfd.1003

    using

    ffmpeg -i D:/imagesequence/sdhdfd_plate/sdhdfd_plate_bg01_v001_fds_fdse_fdfd.%04d.jpg -vf "[in]drawtext=fontsize=32:fontcolor=White:fontfile='/Windows/Fonts/arial.ttf':text='shotName':x=(w)/2:y=(h)-50[out]" D:/Uss/Temp/sdhdfd_plate_bg01_v001_fds_fdse_fdfd.%04d.jpg

    following error occurs

    D:/imagesequence/sdhdfd_plate/sdhdfd_plate_bg01_v001_fds_fdse_fdfd.%04d.jpg: N
    o such file or directory

    is it possible to convert these type images using ffmpeg

  • Display ffmepg's AVFrame in DirectX (in C# with SlimDX)

    14 mars 2012, par Sinan

    I have a C++ DLL which uses ffmepg to read a video. This DLL is used by a C# program.
    I want to display AVFrame in DirectX with SlimDX.
    When ffmepg thread gets a picture, it converts AVFrame to RGB24 bmp and transmits it to C# code thanks to a callback.
    It's working but, owing to bmp format, I lose alpha canal in the image.

    I try to display AvFrame (keyframe) in DirectX(9c) as a picture and overlay others frame using opacity.
    Here my source code when receiving new picture (videoByte) :

    Texture texture = Texture.FromMemory(device, videoByte, width, height,  0, Usage.None, Format.A8B8G8R8, Pool.Default, Filter.None, Filter.None, 0);
    device.Clear(ClearFlags.Target | ClearFlags.ZBuffer, System.Drawing.Color.DarkOrange, 1.0f, 0);
    device.BeginScene();
    if (isfKey)
    {
     sprite.Begin(SpriteFlags.None);
    }
    else
    {
     sprite.Begin(SpriteFlags.AlphaBlend);
    }
    sprite.Draw(texture, System.Drawing.Color.White);
    sprite.End();
    device.EndScene();
    device.Present();

    Do someone know how to display an AVFrame using DirectX ?