Recherche avancée

Médias (91)

Autres articles (38)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5852)

  • avcodec/nvenc : Remove always-true check

    31 juillet 2023, par Andreas Rheinhardt
    avcodec/nvenc : Remove always-true check
    

    nvenc_store_frame_data() is always called with frame != NULL
    (checked at the beginning of nvenc_send_frame()) ;
    in fact, frame is dereferenced unconditionally after the block
    guarded by the check for frame. Therefore Coverity complains
    about this in issue #1538295.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/nvenc.c
  • avcodec/error_resilience, mpeg12dec : Remove always-true checks

    1er août 2023, par Andreas Rheinhardt
    avcodec/error_resilience, mpeg12dec : Remove always-true checks
    

    Having a decode_slice callback is mandatory for HWAccels ;
    the only exception to this (and the reason why these checks
    were added) was XvMC, but it is no more since commit
    be95df12bb06b183c8d2aea3b0831fdf05466cf3.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/error_resilience.c
    • [DH] libavcodec/mpeg12dec.c
  • subprocess.Popen can't find the file when shell=False and doesn't know ffmpeg when shell=True [duplicate]

    26 novembre 2023, par Waschbrettwade

    I am trying to get an offline speech-to-text library called "vosk" running following this tutorial : https://medium.com/@johnidouglasmarangon/automatic-speech-recognition-with-vosk-828569219f2b

    &#xA;

    In this, subprocess.Popen is being used like this :

    &#xA;

    ffmpeg_command = [&#xA;            "ffmpeg",&#xA;            "-nostdin",&#xA;            "-loglevel",&#xA;            "quiet",&#xA;            "-i",&#xA;            filename,&#xA;            "-ar",&#xA;            str(SAMPLE_RATE),&#xA;            "-ac",&#xA;            "1",&#xA;            "-f",&#xA;            "s16le",&#xA;            "-",&#xA;        ]&#xA;&#xA;    with subprocess.Popen(ffmpeg_command, stdout=subprocess.PIPE) as process:&#xA;

    &#xA;

    When running this in Jupyter Notebook, no problem at all. But whenever I run this in VSCode, it produces the error :

    &#xA;

    FileNotFoundError: [WinError 2] The system couldn&#x27;t find the specified file (translated to English by me)&#xA;

    &#xA;

    When using shell=True as in

    &#xA;

    with subprocess.Popen(ffmpeg_command, stdout=subprocess.PIPE, shell=True) as process:&#xA;

    &#xA;

    it tells me in the terminal (translated) :

    &#xA;

    The command "ffmpeg" ist either written wrong or couldn&#x27;t be found. &#xA;

    &#xA;

    Do you have any idea what's causing these issues and how to fix them ?

    &#xA;