Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (63)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4377)

  • lavc/qsv_hevc : correct QSV HEVC default plugin on Windows

    12 décembre 2018, par Zhong Li
    lavc/qsv_hevc : correct QSV HEVC default plugin on Windows
    

    1. Old logic meaned : everywhere, except Windows, ffmpeg has to use HW
    acceleration, but on Windows ffmpeg has to use (unavailable) software
    HEVC by default
    2. Software HEVC is available only if you provide corresponding
    software MediaSDK library, which isn't provided with ffmpeg. More
    information could be found in
    https://github.com/Intel-Media-SDK/MediaSDK/blob/master/doc/samples/readme-encode_linux.pdf
    3. HW HEVC decoding/encoding are available on Windows in the driver by default

    Note : Default case should be the most common case but this change still has potential risk
    on windows if HW path is not supported(or doesn't work as expection).
    (See the historical disscution : https://lists.libav.org/pipermail/libav-devel/2016-November/080419.html).
    In such case, two options suggested :
    1. Use the option "-load_plugin hevc_sw" to switch SW path manually.
    2. Or report bug to Intel windows driver if your GPU can support HEVC HW codec.
    (HEVC decoding is supported since Braswell, and encoding supported since Skylake)

    Patch started by Landgraph. Add similar change for hevc decoder and bump a new version.

    Reviewed-by : Mark Thompson <sw@jkqxz.net>
    Reviewed-by : Maxym Dmytrychenko <maxim.d33@gmail.com>
    Signed-off-by : Landgraph <me@landgraph.ru>
    Signed-off-by : Zhong Li <zhong.li@intel.com>

    • [DH] libavcodec/qsvdec_h2645.c
    • [DH] libavcodec/qsvenc_hevc.c
    • [DH] libavcodec/version.h
  • Working with raw output from ffmpeg 'gdigrab' on Windows

    7 mars 2023, par jugglingcats

    I'm trying to capture high quality screen recording with the minimum CPU load (what we're recording is already CPU intensive and suffers slowdown if encoding is being done at the same time as screen recording).

    &#xA;

    I'm using this command :

    &#xA;

    ffmpeg -f gdigrab -t 00:00:05 -i desktop -pix_fmt yuv420p -vcodec copy -y testing.avi&#xA;

    &#xA;

    When I open this in Windows Media Player or VLC it sort of works. It's the right size and duration, but the pixels are messed up, as shown below.

    &#xA;

    output in media player

    &#xA;

    Ultimately I'd like to be able to re-encode this to something smaller, again using ffmpeg, but I can't find the right ffmpeg incantation/options for this given the raw input file generated by the first command.

    &#xA;

  • HEVC with Alpha Encoding on Windows

    14 juillet 2023, par CodeVortex

    I know, this question has been asked before, but most of the answers to them are very old.

    &#xA;

    Actually, I am developing a website which uses transparent videos. So, I am using .webm format for them. However, as you know it is not possible to run .webm with transparency on Apple products. So, after researching on internet(stackoverflow etc), I found a solution that I should convert my video into a series of PNGs and then convert them into HEVC with alpha channel. However, according to the research I done, only the Apple hardware can properly encode HEVC with alpha channel.

    &#xA;

    I am a newbie to these codecs and formats stuff. So, I think that I read somewhere that latest versions of FFMPEG can also encode HEVC with alpha. However, being a noob I can't figure out any way to write a command for this purpose. Being a beginner with almost non-existent skills in this field of expertise, it is nearly impossible for me to understand the documentations correctly. I also tried using shutterencoder and some other tools but failed.

    &#xA;

    Although, there is a quicktime .mov solution but with that the file size becomes too large for my 10 sec video, almost 334 mb and as you know this size is too large for a animation video on a landing-page style basic website.

    &#xA;

    So, now my question is there any way to properly encode HEVC with alpha on Windows or Linux to maintain transparency ?

    &#xA;

    If this is not possible, then is there any other way to create such transparent videos on Windows or Linux which can be played on browsers of Apple devices ?

    &#xA;

    I am stuck on this for 3 days, So, any type of help is greatly regarded. I am also providing the link to my videos, if someone wants to take a closer look on codes and formats of these videos : Videos Link

    &#xA;

    P.S : if anyone with a mac device can encode these transparent videos for me, then that would be best and I shall be very grateful to you

    &#xA;