Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (53)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • 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 (5777)

  • mp4 metadata extraction in Python

    22 avril 2016, par TerraCode

    I have a program that has to edit several videos based off of data in a separate json-file. These videos are sequential and they have metadata in their own json file. The program edits them with a frame-by-frame overlay (eye-tracking data).

    What I’d like to do is compare individual mp4 metadata with the json-file metadata so I can compare timestamps, making sure everything is synchronized.

    If possible, how would I get to the mp4 metadata ?

  • Revision 1c6203192d : cq_test : allow test cases to be run out of order check that bitrates increase w

    13 août 2014, par James Zern

    Changed Paths :
     Modify /test/cq_test.cc



    cq_test : allow test cases to be run out of order

    check that bitrates increase with cqlevel at global test case teardown,
    rather than after each individual test case. this allows the tests to be
    run out of order with —gtest_shuffle.

    Change-Id : I9e0d4e6a2d920a1f2fe9aee7b7876a3e7eb5d297

  • How to setup FFmpegMediaMetadataRetriever to a project with another native library

    20 avril 2016, par kishidp

    So I have a project that uses a native library that only supports arm.

    I want to use FFmpegMediaMetadataRetriever for the metadata retriever, I added the dependency on build.gradle file. However, when I tried to run the application, the native library I’m using suddenly doesn’t work anymore.

    There was an error that says "UnsatisfiedLinkError", I assume the library was not loaded. I also assume that it has something to do with the FFmpegMediaMetadataRetriever having support to other CPU (x86, mips, etc.)

    I saw an option to use individual architecture, I added the arm aar as module to my project (I remove the FFmpegMediaMetadataRetriever dependency), I was able to run the app, but I don’t know what to do after that. Any help ?