Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (110)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

Sur d’autres sites (16555)

  • lavf : Print a warning if failed to avoid negative timestamps when requested

    22 octobre 2014, par Michael Niedermayer
    lavf : Print a warning if failed to avoid negative timestamps when requested
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/mux.c
  • Pydub AudioSegment.from_file() fails for mp3 audio file : Decoding failed. ffmpeg returned error code : 1,

    27 mars 2021, par Nisuga Jayawardana

    Couldn't find any fix. Looks like a bug. How to fix this ?

    &#xA;

        # Grab the file from the request&#xA;    file_uploaded = request.FILES.get(&#x27;sourceFile&#x27;)&#xA;    file_path = uploads_base_path &#x2B; file_uploaded.name&#xA;    &#xA;    # saving the uploaded file&#xA;    open(file_path, &#x27;wb&#x27;)&#xA;&#xA;    extension = file_uploaded.name.split(&#x27;.&#x27;)[-1]&#xA;    with open(file_path, "rb") as wav_file:&#xA;        audio_segment = AudioSegment.from_file(wav_file, format=extension)    &lt;-------------Error&#xA;&#xA;    # create .wav filename for the file&#xA;    wavFileName = uploads_base_path &#x2B; &#x27;out.wav&#x27;&#xA;    print(wavFileName)&#xA;&#xA;    # convert audio file to .wav type&#xA;    audio_segment.export(wavFileName,"wav")&#xA;

    &#xA;

    // Pydub Error
    &#xA;Decoding failed. ffmpeg returned error code : 1
    &#xA;Output from ffmpeg/avlib :
    &#xA;ffmpeg version N-101739-gcad3a5d715 Copyright (c) 2000-2021 the FFmpeg developers
    &#xA;built with gcc 9.3-win32 (GCC) 20200320

    &#xA;

    // FFMPEG Error
    &#xA;[cache @ 000001c52157fdc0] Inner protocol failed to seekback end : -40
    &#xA;Last message repeated 1 times
    &#xA;[mp3 @ 000001c52157f400] Failed to read frame size : Could not seek to 1026.
    &#xA;[cache @ 000001c52157fdc0] Statistics, cache hits:0 cache misses:0
    &#xA;cache:pipe:0 : Invalid argument

    &#xA;

  • avformat/concatdec : avoid NULL dereference when failed to open file.

    29 janvier 2015, par Zhang Rui
    avformat/concatdec : avoid NULL dereference when failed to open file.
    

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/concatdec.c