Recherche avancée

Médias (91)

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (11380)

  • Using ffmpeg for cutting mp3 in python -codec copy error

    2 novembre 2016, par Stijn Goethals
    def cut_file(file, start_time, end_time):
       """ Cut the mp3 file with start and end time. """
       output = file[:-4] + "_cut.mp3"
       try:
           os.remove(output)
       except Exception:
           pass
       p=Popen(["ffmpeg", "-i", file, "-c:a copy -ss", start_time, "-to", end_time, output], stdout=PIPE)
       p.communicate()
       os.remove(file)
       os.rename(output,file)
       return file

    When using this function for cutting a mp3 file I get error from ffmpeg. The error is :

    Unknown encoder ’0:07’

    Why doesn’t ffmpeg recognize the copy command when using Python ? Running the command in the shell doesn’t give me any errors.

    I have tried to change the order of the arguments but this give me the same sort of errors.

    I got the code out of the official documentation.

  • MLT framework windows build melt failed to load avformat

    22 juillet 2015, par Philip

    I build mlt framework on windows following the official guide http://www.mltframework.org/bin/view/MLT/WindowsBuild and the solution of Error building MLT framework on Windows for the errors.

    But when I call the command melt it doesn’t work correctly. (melt noise does work)

    Using melt -query "video_codecs" I get # No video codecs - failed to load avformat consumer.

    So it cannot load ffmpeg. Is there a problem with the compilation or is something related to Windows ?

  • avcodec/prores_aw : add support for prores 444 with alpha

    8 novembre 2018, par Martin Vignali
    avcodec/prores_aw : add support for prores 444 with alpha
    

    only 16b alpha is supported (not 8 bits)

    following official encoder, alpha data doesn't impact
    yuv plane quality.

    So the alpha data encoding is done after the yuv part.
    It's also avoid to loose quality in yuv part when
    alpha is not uniform.

    the alpha encoding funcs is mainly take from prores_ks
    encoder, except for the alpha data reorganization

    • [DH] libavcodec/proresenc_anatoliy.c