Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (74)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Publier sur MédiaSpip

    13 juin 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

Sur d’autres sites (12803)

  • Evolution #3312 (Nouveau) : Étendre #INTRODUCTION à tout objet éditorial

    23 octobre 2014, par marcimat ☺☮☯♫

    Il reste des spécificités des brèves dans le core dans la balise introduction : le nombre de caractères à couper.

    On pourrait déclarer le champ ou les champs d’application de l’introduction ainsi que le nombre de caractères désirés dans la déclaration de l’objet éditorial.

    Ainsi :
    1) un objet quelconque pourrait éventuellement utiliser #INTRODUCTION
    2) définir sa longueur de coupe
    3) virer un peu plus les brèves du core :p

  • lavc/libaribb24 : add error handling to region handling

    11 février 2019, par Jan Ekström
    lavc/libaribb24 : add error handling to region handling
    

    Fixes some rather embarrassing mistakes that somehow passed my
    eyes.

    * Now catches if memory allocation has failed during bprint usage
    by checking av_bprint_is_complete().
    * Now catches if adding an ASS rectangle into an AVSubtitle failed.
    * Returns AVERROR_INVALIDDATA if we get an invalid region buffer
    length.

    • [DH] libavcodec/libaribb24.c
  • How to use MeidaToolkit.NetCore to convert videos in Asp Core 2

    21 mai 2020, par AlTheSwede

    I'm using MediaToolkit.NetCore which is in an early stage in order to convert videos into mp4 format but I have not been able to get it to work on ASP Core 2.

    



    With MeidaToolkit.NetCore I tried this :

    



    var inputFile = new MediaFile {Filename = @"C:\Path\To_Video.flv"};

var outputFile = new MediaFile {Filename = 
@"C:\Path\To_Save_New_Video.mp4"};

using (var engine = new Engine())

{ engine.Convert(inputFile, outputFile);}


    



    But the problem is that ffmpeg.exe is not embedded in library binaries so I get an error on new Engine(). In order to fix this, you have to pass a path to ffmpeg.exe explicitly in the constructor, which I don't know how to do.

    



    How can I pass the ffmpeg.exe in the constructor above ?