Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

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 (5571)

  • vulkan : add support for encode and decode queues and refactor queue code

    7 novembre 2021, par Lynne
    vulkan : add support for encode and decode queues and refactor queue code
    

    This simplifies and makes queue family picking simpler and more robust.
    The requirements on the device context are relaxed. They made no sense
    in the first place.

    The video encode/decode extension is still in beta, at least on paper,
    but I really doubt they'd change needing a separate queue family.

    • [DH] libavfilter/vf_avgblur_vulkan.c
    • [DH] libavfilter/vf_chromaber_vulkan.c
    • [DH] libavfilter/vf_overlay_vulkan.c
    • [DH] libavfilter/vf_scale_vulkan.c
    • [DH] libavfilter/vulkan.h
    • [DH] libavutil/hwcontext_vulkan.c
    • [DH] libavutil/hwcontext_vulkan.h
  • Merge commit ’b4ec7a5fee644ad9882e10c097817b65447b8e55’

    4 septembre 2013, par Michael Niedermayer
    Merge commit ’b4ec7a5fee644ad9882e10c097817b65447b8e55’
    

    * commit ’b4ec7a5fee644ad9882e10c097817b65447b8e55’ :
    mem : Document the av_realloc family of functions properly

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/mem.h
  • Drawing text on video with avconv only at the start of the video

    21 juillet 2013, par Gael

    I want to embed the creation date of personnal videos, but only at their start (let say the 10 first seconds).

    I'm using the drawtext of avconv :

    avconv -i input.avi -vf
    "drawtext=fontcolor=white:fontsize=30:fontfile=/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-L.ttf:text='$date':x=30:y=h-text_h-30"
    test.mpg

    but I do not find any option to tell to just write the date on only a portion of the video. I could split the start of the video, or make an srt file, but there is probably an easier solution.