Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (36)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (5391)

  • avcodec/nvenc : add UHQ to AV1 for NVENC

    8 janvier, par Diego de Souza
    avcodec/nvenc : add UHQ to AV1 for NVENC
    

    This commit adds support for Ultra High Quality mode for AV1 on
    NVIDIA GPUs.

    Signed-off-by : Diego de Souza <ddesouza@nvidia.com>
    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/nvenc.h
    • [DH] libavcodec/nvenc_av1.c
  • Laravel FFMPEG Add HLS Video Watermark issue

    6 juin 2020, par Jefriiyer S

    I'm using "pbmedia/laravel-ffmpeg" : "^7.0" in "laravel/framework" : "^7.0" , I want to add water mark to the HLS video, Here is the example given in the github repo https://github.com/pascalbaljetmedia/laravel-ffmpeg

    &#xA;&#xA;

    FFMpeg::open([&#x27;video.mp4&#x27;, &#x27;video2.mp4&#x27;])&#xA;    ->export()&#xA;    ->addFilter(function(ComplexFilters $filters) {&#xA;        // $filters->watermark(...);&#xA;    });&#xA;

    &#xA;&#xA;

    But It's not have enough information, Here is the working example everyware in the internet

    &#xA;&#xA;

    addFilter(function ($filters) {&#xA;            $filters->watermark($watermarkPath, [&#xA;                &#x27;position&#x27; => &#x27;relative&#x27;,&#xA;                &#x27;bottom&#x27; => 50,&#xA;                &#x27;right&#x27; => 50,&#xA;            ]);&#xA;        })&#xA;

    &#xA;&#xA;

    But the watermark method has 2 more required parameters in the library

    &#xA;&#xA;

    addFilter(function (ComplexFilters $filters) {&#xA;            $filters->watermark($in,$watermarkPath,$out, [&#xA;                &#x27;position&#x27; => &#x27;relative&#x27;,&#xA;                &#x27;bottom&#x27; => 50,&#xA;                &#x27;right&#x27; => 50,&#xA;            ]);&#xA;        })&#xA;

    &#xA;&#xA;

    What should I pass for $in and $out&#xA;Here is the full code which I have

    &#xA;&#xA;

    $low = (new X264(&#x27;aac&#x27;))->setKiloBitrate(100);&#xA;$mid = (new X264(&#x27;aac&#x27;))->setKiloBitrate(250);&#xA;$high = (new X264(&#x27;aac&#x27;))->setKiloBitrate(500);&#xA;&#xA;&#xA;       FFMpeg::fromDisk(&#x27;local&#x27;)&#xA;        ->open($this->video->path)&#xA;        ->exportForHLS()&#xA;        ->addFilter(function (ComplexFilters $filters) {&#xA;            $filters->watermark(null,public_path(&#x27;watermark.png&#x27;),null, [&#xA;                &#x27;position&#x27; => &#x27;relative&#x27;,&#xA;                &#x27;bottom&#x27; => 50,&#xA;                &#x27;right&#x27; => 50,&#xA;            ]);&#xA;        })&#xA;        ->addFormat($low)&#xA;        ->addFormat($mid)&#xA;        ->addFormat($high)&#xA;        ->save("public/videos/{$this->video->id}/{$this->video->id}.m3u8");&#xA;

    &#xA;&#xA;

    By passing null I can't able to see any watermark , If I remove those nulls , I'll have error

    &#xA;&#xA;

    Please look at the required parameters in watermark function under ComplexFilters

    &#xA;&#xA;

    Please look at the required parameters in watermark function under ComplexFilters,&#xA;Thanks :).

    &#xA;

  • avcodec/ffv1enc : mark RGB48 support as non-experimental

    5 janvier 2018, par Jérôme Martinez
    avcodec/ffv1enc : mark RGB48 support as non-experimental
    

    Resulting bitstream was tested with a conformance checker
    using the last draft of FFV1 specifications.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    Also the files are already in the wild, and decoder support is
    thus needed. And with decoders widely supporting it, there is no
    advantage in not allowing it in the encoder.
    The exact bitstream format may change in future versions of the
    spec, if improvments are found.

    • [DH] libavcodec/ffv1enc.c