Recherche avancée

Médias (91)

Autres articles (101)

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

  • avformat/hls : copy rw_timeout from parent to child AVIOContexts.

    17 avril 2018, par Richard Shaffer
    avformat/hls : copy rw_timeout from parent to child AVIOContexts.
    

    The rw_timeout option is currently not applied when opening media playlist,
    segment, or encryption key URLs. This can cause the HLS demuxer to block
    indefinitely, even when the rw_timeout option has been specified. This change
    simply enables carrying over the rw_timeout option when the demuxer opens these
    URLs.

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Richard Shaffer <rshaffer@tunein.com>

    • [DH] libavformat/hls.c
  • Node.js Child Process Issue with Args - Quotes Issue ?, FFMPEG issue ?

    25 septembre 2017, par Brad

    I need to be able to execute FFMPEG from my Node.js application. I believe this problem likely has to do with properly specifying command line arguments, and not specific to FFMPEG, but as I have been unable to narrow down the issue, I present my entire problem.

    I can execute the following command from the command prompt successfully :

    C:\Brad\ffmpeg.exe -f dshow -i audio="Microphone (SoundMAX Integrated" testaaa.mp3

    FFMPEG starts as expected, records audio from my audio device, and writes an MP3 file. Now, I try to do the same thing within my Node.js application :

    childProcess = child_process.spawn('C:\\Brad\\ffmpeg.exe', ['-f', 'dshow', '-i', 'audio="Microphone (SoundMAX Integrated"', 'testaaa.mp3']);
    childProcess.stderr.on('data', function (data) {
       console.log('StdioSource received data from STDERR: ' + data);
    });

    From within Node.js, FFMPEG fails ! The error is simply :

    [dshow @ 0000000001eded80] Could not find audio device.
    audio="Microphone (SoundMAX Integrated": Input/output error

    Thinking that maybe for some reason this was a weird permissions error, I decided to run FFMPEG with -list_devices true from within my Node application, and sure enough, the device in question is listed :

    [dshow @ 000000000228ecc0] DirectShow video devices
    [dshow @ 000000000228ecc0] Could not enumerate video devices.
    [dshow @ 000000000228ecc0] DirectShow audio devices
    [dshow @ 000000000228ecc0]  "Microphone (SoundMAX Integrated"

    Any thoughts as to why I cannot properly specify the audio input device in the arguments for FFMPEG, or why FFMPEG does not recognize my audio input device when running as a child process to Node.js ?

    Any hints would be most appreciated.

  • hwcontext_qsv : Implement mapping frames from the child device type

    4 mars 2017, par Mark Thompson
    hwcontext_qsv : Implement mapping frames from the child device type
    

    Factorises out existing surface initialisation code to reuse.

    • [DBH] libavutil/hwcontext_qsv.c