Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (43)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6874)

  • Which parts of ffmpeg to compile for gif processing in Android ?

    10 mars 2018, par JasonStack

    I need to add gif creation to an Android application. The FFmpeg library, as it stands, is too big for my needs. Which parts (directories) of the library source code do I need to compile with NDK for my application ?

    cmake_minimum_required(VERSION 3.4.1)

    add_library( # Name of the library
                ffmpeg

                # Sets the library as a shared library.
                SHARED

                # Provides a relative path to your source file(s).
                src/main/cpp/ffmpeg )
  • subtitles.srt : Invalid data found when processing input

    12 mars 2018, par CoXier

    When I convert srt file to ass file by ffmpeg, an error occurs.

    subtitles.srt : Invalid data found when processing input

    And subtitles.srt is here :

    1
    00:00:01,000 --> 00:00:03,000
    Hello!

    I don’t know why this is invalid data. And I have googled srt format and I don’t think my file is wrong. Is there anything I mistake ?

  • C++ video processing loop

    15 mars 2018, par Oleksiy Druzhynin

    I want to write an application which takes a video stream and in the cycle do processing frames and fragments of audio.

    I saw such loop here :

    I saw on the forums some solution with pipes here

    Is it any library wrapper on ffmpeg/avlib which I could just write my callback without tones of spaghetti around like here