
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (106)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (14178)
-
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 ?