
Recherche avancée
Autres articles (51)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (6390)
-
lavu/tx : generalize MDCTs
10 septembre 2022, par Lynne -
SharedArrayBuffer not defined when using Cypress
15 janvier 2023, par unlocoI'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 AlmeidaI'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 ?