Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (17051)

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

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