Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (78)

  • 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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (7677)

  • hevc/rext : basic infrastructure for supporting range extension

    15 juillet 2014, par Mickaël Raulet
    hevc/rext : basic infrastructure for supporting range extension
    
    - support for 4:2:2 and 4:4:4 up to 12 bits
    - add a new profile for range extension (cherry picked from commit d3c067fa65bbc871758d28aa07f54123430ca346)

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/hevc.c
    • [DH] libavcodec/hevc.h
    • [DH] libavcodec/hevc_cabac.c
    • [DH] libavcodec/hevc_filter.c
    • [DH] libavcodec/hevc_ps.c
    • [DH] libavcodec/hevcdsp.c
    • [DH] libavcodec/hevcdsp.h
    • [DH] libavcodec/hevcdsp_template.c
    • [DH] libavcodec/hevcpred.c
    • [DH] libavcodec/hevcpred_template.c
  • Revision 533470c998 : add unit test for datarate control Adds some basic datarate control tests.. Ch

    30 octobre 2012, par Jim Bankoski

    Changed Paths : Add /test/datarate_test.cc Modify /test/test.mk add unit test for datarate control Adds some basic datarate control tests.. Change-Id : I6eff18aa58ef7cfd14886c6b1e048247cd1ad247

  • Matplotlib animation won't save

    17 décembre 2014, par abe678

    I am trying to learn how to create matplotlib animations by using Jake Vanderplas’s basic example, but I’m having trouble getting the figure to save. I installed ffmpeg on my Mac via homebrew.

    The only changes that I have made are to add :

    import matplotlib
    matplotlib.use('TKAgg')

    When I run this script I receive the following error :

    anim.save('basic_animation.mp4', fps=30, extra_args=['-vcodec', 'libx264'])
    TypeError: save() got an unexpected keyword argument 'extra_args'

    Based on the many other similar questions, I’ve tried setting the ffmpeg path with

    plt.rcParams['animation.ffmpeg_path']

    but that also gives me an error :

    File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/__init__.py", line 660, in __setitem__
     See rcParams.keys() for a list of valid parameters.' % (key,))
    KeyError: 'animation.ffmpeg_path is not a valid rc parameter.See rcParams.keys() for a list of valid parameters.'

    After removing the rcParams setting, I also tried adjusting the save command to avoid the aforementioned TypeError :

    try:
       anim.save('basic_animation.mp4', fps=30, extra_args=['-vcodec', 'libx264'])
    except TypeError:
       anim.save('basic_animation.mp4', fps=30)

    This runs with no error, but the mp4 file is not created. I have read over every thread and tried every solution I can find, but nothing changes. The plt.show() call works just fine. Can anyone please point me in the right direction ? Thanks !

    Update : I’m using matplotlib version 1.1.1