Recherche avancée

Médias (91)

Autres articles (40)

  • Creating farms of unique websites

    13 avril 2011, par

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (3966)

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

    17 avril 2018, par Steven Liu
    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
  • 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.