Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (104)

  • 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 (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (7423)

  • lavf/mkv : Only skip prores header if the packet is large enough.

    21 mai 2015, par Carl Eugen Hoyos
    lavf/mkv : Only skip prores header if the packet is large enough.
    

    Fixes a possible endless loop.

    • [DH] libavformat/matroskaenc.c
  • lavf/avidec : Do not fail for very large idx1 tags.

    17 octobre 2016, par Carl Eugen Hoyos
    lavf/avidec : Do not fail for very large idx1 tags.
    

    Fixes demuxing the sample file from github pull request 197,
    the size of its idx1 tag is 6171936 bytes, followed by a JUNK
    tag of 9505704 bytes.

    • [DH] libavformat/avidec.c
  • FFMPEG Control Duration Of Video Watermark ? [duplicate]

    20 février 2017, par Briana Wilson

    This question already has an answer here :

    So far I have this code which allows me to batch watermark videos using FFMPEG :

    for %%a in ("C:\filepath\*.mp4") do ffmpeg -i "%%a" -q 40 -s 640x480 -vf "movie=watermark.png [watermark]; [in][watermark] overlay=x=(main_w-overlay_w)/2:y=(main_h-overlay_h)/2 [out]" "C:\filepath\%%~na.mp4"

    What I’m trying to figure out is how I can control the duration of the watermark so that it appears 60 seconds into the video and disappears 15 seconds later.

    Any guidance or help in figuring this out would be greatly appreciated.

    P.S. I need the code to be able to be run in batch.