Recherche avancée

Médias (91)

Autres articles (84)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (9977)

  • FFmpeg : Windows vs Linux issues

    16 octobre 2022, par Chris

    I have run into an issue that I am pretty sure I have narrowed down to FFmpeg.

    


    I have a Flask app that restreams live streams using FFmpeg.

    


    ...

@app.route("/play/", methods=["GET"])
def play():
    def streamData():
        try:
            with subprocess.Popen(
                ffmpegcmd,
                stdin=subprocess.DEVNULL,
                stdout=subprocess.PIPE,
                stderr=subprocess.PIPE,
            ) as ffmpeg_sb:
                while True:
                    chunk = ffmpeg_sb.stdout.read(1024)
                    if len(chunk) == 0:
                        break
                    yield chunk
        except:
            pass
        finally:
            ffmpeg_sb.kill()

    return Response(streamData())

...



    


    I am using the following command.

    


    ffmpeg -loglevel panic -hide_banner -i <url> -vcodec copy -acodec copy -f mpegts pipe:</url>

    &#xA;

    When I run my Flask app on Windows, both VLC and TVHeadend play the piped output perfectly.&#xA;However under Linux only VLC will play the piped output. I can get TVHeadend to play the stream from Linux, but it requires me to enable the AV Library option in TVHeadend, which I want to avoid. I have tested this using WSL (Ubuntu) and Docker (alpine + Ubuntu) on my Ubuntu server where the app will live.

    &#xA;

    I can only assume its because FFmpeg behaves differently between Windows and Linux ? I have tried several different version of FFmpeg... So I don't think its a version issue.

    &#xA;

    The version of FFmpeg I am currently using on Windows is this one https://www.gyan.dev/ffmpeg/builds/ but I experienced the same success on older versions, so again, I don't think its a version number issue.

    &#xA;

    Can anyone suggest how I can go about finding out what the cause is ?&#xA;Is it possible that some default values differ between Windows and Linux ?

    &#xA;

    Any advice is appreciated !

    &#xA;

  • libavdevice/gdigrab : fix capture of windows with non-ASCII titles

    20 mars 2021, par He Yang
    libavdevice/gdigrab : fix capture of windows with non-ASCII titles
    

    Properly convert the UTF-8 input string to Windows wchar, and
    utilize the wchar version of FindWindow.

    Signed-off-by : He Yang <1160386205@qq.com>

    • [DH] libavdevice/gdigrab.c
  • Revision 43414f3f7b : Fixed a crash windows build Change-Id : I58baa1da1f3bfc8a6da454399139fe6a7473ff1

    28 mai 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/x86/vp9_temporal_filter_apply_sse2.asm



    Fixed a crash windows build

    Change-Id : I58baa1da1f3bfc8a6da454399139fe6a7473ff10