Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (13)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (4025)

  • FFMPEG Does not work on Windows Server 2008

    25 août 2011, par Khaldoun

    I have an ASP.NET MVC Web Site ,the user can upload a video and When Done It finish uploading I show him an image extracted from the Video,
    To do this I used the FFMPEG exe to get a frame.
    Everthing works well in the developement machine , when I use the test environement it does not work !!
    I've given the read/write and execute permissions to following folders :
    1. videos(folder that store uploaded video files)
    2. thumbnails (folder that store the thumbnails of videos, captured by ffmpeg)
    3.ffmpeg.exe file at root and given read/write execute permissions to that file also.
    but it does not work.

    var _converter = new ImageConvertor(@System.Configuration.ConfigurationManager.AppSettings["FFmpegExec"].ToString());
               _converter.WorkingPath = Server.MapPath("~/VideoSamples");
               OutputPackage oo = _converter.ConvertToFLV(videoFilepath);
               FileStream outStream = System.IO.File.OpenWrite(Path.Combine(Server.MapPath("~/VideoSamples"), id.ToString() + ".flv"));
               oo.VideoStream.WriteTo(outStream);

    This Code Works on developement env but not in test env !!!
    Any Ideas Please

  • FFmpeg Windows directshow filter

    24 mai 2016, par kiwijus

    I’m trying to open a directshow video source (webcam/push source) using the ffmpeg api however I’m not having any luck.
    I’ve tried using

    av_open_input_file()

    however I don’t think this is the right way... Does anyone have any pointers ?

    I’m using visual studio and c++ on a windows system

  • Usage of libx264.dll in C++ under windows

    19 janvier 2012, par Anuj

    I have been able to build the libx264 dll from source using hints from here.
    I am successfully able to load the Dll via my application using the LoadLibrary method.
    But when i try to get the address of the methods available via the x264.h header using GetProcAddress(), i always get back NULL.

    Has anyone worked with libx264.dll before in VS or are there any references to some sample code for the same.