Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (47)

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

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

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

  • lavu/tx : generalize MDCTs

    10 septembre 2022, par Lynne
    lavu/tx : generalize MDCTs
    

    The same code can perform any-length MDCTs with minimal changes.

    • [DH] libavutil/tx_template.c
  • SharedArrayBuffer not defined when using Cypress

    15 janvier 2023, par unloco

    I'm using Vite and Cypress for dev and testing

    


    I'm loading ffmpeg, it loads fine on Chrome but on Cypress, it gives this error

    


    ReferenceError: SharedArrayBuffer is not defined


    


    Apparently, it's caused by cross origin isolation.

    


    I tried disabling web security in Cypress.json but it didn't help

    


    Sample code

    


    import { createFFmpeg } from "@ffmpeg/ffmpeg"

const ffmpeg = createFFmpeg({ log: true })
ffmpeg.load()



    


    Is there a workaround ?

    


    Minimal Repro
https://github.com/unlocomqx/cypress-ffmpeg

    


  • Reducing latency of FFmpeg audio stream using Opus encoding

    28 septembre 2022, par Victor Almeida

    I'm trying to stream my microphone audio using FFmpeg, but there's a delay of about 3 seconds from when the audio is recorded to when it is played.

    


    The snippet below contains the minimal command for which I can reproduce the problem.

    


    ffmpeg -f dshow -i "audio=Microphone (Realtek(R) Audio)" -f opus - | ffplay -


    


    However, I've tried various other flags to no effect. Such as :

    


      

    • -analyzeduration 0
    • 


    • -loglevel 0
    • 


    • -audio_buffer_size 50
    • 


    • -fflags nobuffer
    • 


    • -flags low_delay
    • 


    • -acodec libopus
    • 


    


    Is there any way to reduce the latency to less than a second while still using Opus encoding ?