Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (59)

  • 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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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" ;

Sur d’autres sites (9322)

  • avformat : add MODS demuxer

    1er septembre 2020, par Paul B Mahol
    avformat : add MODS demuxer
    
    • [DH] Changelog
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/mods.c
    • [DH] libavformat/version.h
  • avformat/aviobuf : discard part of the IO buffer in ffio_ensure_seekback if needed

    28 septembre 2020, par Marton Balint
    avformat/aviobuf : discard part of the IO buffer in ffio_ensure_seekback if needed
    

    Previously ffio_ensure_seekback never flushed the buffer, so successive
    ffio_ensure_seekback calls were all respected. This could eventually cause
    unlimited memory and CPU usage if a demuxer called ffio_ensure_seekback on all
    it's read data.

    Most demuxers however only rely on being able to seek back till the position of
    the last ffio_ensure_seekback call, therefore we change the semantics of
    ffio_ensure_seekback so that a new call can invalidate seek guarantees of the
    old. In order to support some level of "nested" ffio_ensure_seekback calls, we
    document that the function only invalidates the old window (and potentially
    discards the already read data from the IO buffer), if the newly requested
    window does not fit into the old one.

    This way we limit the memory usage for ffio_ensure_seekback calls requesting
    consecutive data windows.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/avio_internal.h
    • [DH] libavformat/aviobuf.c
  • ffmpeg add watermark by output part count (watermark1.png for part 1, ...)

    12 octobre 2020, par Steapy

    I have currently following code (not optimized yet !) :

    &#xA;

    converter.StartInfo.Arguments = @"-i video.mp4 -i watermark.png -filter_complex ""overlay = x = (main_w - overlay_w) / 2:y = (main_h - overlay_h) / 2"" output%03d.mp4";&#xA;

    &#xA;

    This renders all my parts with the same "watermark.png" file as a watermark. But now i want to do something like this :

    &#xA;

    converter.StartInfo.Arguments = @"-i video.mp4 -i watermark%03d.png -filter_complex ""overlay = x = (main_w - overlay_w) / 2:y = (main_h - overlay_h) / 2"" output%03d.mp4";&#xA;

    &#xA;

    "output000.mp4" has "watermark000.png" as a watermark,&#xA;"output001.mp4" has "watermark001.png" as a watermark,&#xA;"output002.mp4" has "watermark002.png" as a watermark, ...

    &#xA;

    I need it in only one line, as if i would type it in cmd and it should work in c# with UseShellExecute=false.

    &#xA;

    Any idea ?

    &#xA;