Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (67)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (12496)

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

  • avformat/unix : set is_streamed to true

    6 février, par dank074
    avformat/unix : set is_streamed to true
    

    Currently when a Unix Domain Socket is used as input there is a loss
    of data when data is consumed from the stream. Setting is_streamed to
    true fixes this, since the unix domain socket is now treated like a
    consumable stream.

    Fixes : #9346
    Signed-off-by : dank074 <torresefrain10@gmail.com>
    Reviewed-by : Leo Izen <leo.izen@gmail.com>

    • [DH] libavformat/unix.c