Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (67)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (4518)

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

    


  • File created in subprocess.run not found by os.listdir()

    13 novembre 2019, par Abitbol

    I am using subprocess to launch an instance of ffmpeg extracting frames in a folder. Then I do os.listdir on that same folder and it returns an empty list ; off course I would except to see the files created by ffmpeg listed.

    Here is a minimal example

    import os
    import subprocess

    folder = 'generated'
    subprocess.run(['ffmpeg', '-i', 'input.mp4', '-vf', 'fps=4', f'{folder}/%05d.png'])
    print(os.listdir(folder))  # []

    I can testify that the files are created while the script is running.

    In the full example I am using ffmpeg complex filter to generate two output, I don’t think that is the source of the problem.