Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (33)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (5894)

  • Quickly check the integrity of video files inside a directory with ffmpeg with windows

    20 avril 2017, par Mathias Nervik

    I am checking the integrity of a lot of video files from a directory. I found this question (for Ubuntu). My question is what the code would be if I wanted to do the same on my Windows machine.

    ffmpegBin-folder: /downloads/ffmpeg/bin
    <br />
    videoSource-folder: /downloads/ffmpeg/videos
    <br />
    error-Folder: /downloads/ffmpeg/error

    When I do it with every single file instead of for the whole directory, I use the folowing code :

    bin\ffmpeg.exe -v error -i videos\fileName.mp4 -f null - >error\fileName.log 2>&amp;1

    PS. All the videos have the ".mp4" extension, but preferably I would like to fetch all the files despite them having different extension.

  • vulkan_decode : port to the new queue family API

    11 août 2024, par Lynne
    vulkan_decode : port to the new queue family API
    
    • [DH] libavcodec/vulkan_decode.c
    • [DH] libavcodec/vulkan_video.c
    • [DH] libavcodec/vulkan_video.h
  • vp9 : recon : Use emulated edge to prevent buffer overflows

    3 janvier, par Janne Grunau
    vp9 : recon : Use emulated edge to prevent buffer overflows
    

    The arm/aarch64 horizontal filter reads one additional pixel beyond what
    the filter uses. This can become an issue if the application does not
    allocate larger buffers than what's required for the pixel data. If the
    motion vector points to the bottom right edge of the picture this
    becomes a read buffer overflow. This triggers segfaults in Firefox for
    video resolutions which result in a page aligned picture size like
    1280x640.
    Prevent this by using emulated edge in this case.

    Fixes : https://bugzilla.mozilla.org/show_bug.cgi?id=1881185
    Signed-off-by : Janne Grunau <janne-ffmpeg@jannau.net>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavcodec/vp9recon.c