Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (94)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6056)

  • Create movie programatically

    14 novembre 2019, par Martin Delille

    I would like to create a movie programatically.

    My first iteration is to create a picture sequence with QPainter rendering (see https://github.com/MartinDelille/videogenerator) and then assemble them with ffmpeg but I would be more happy to generate the video file directly.

    I choose QPainter, but I’m open to QML rendering mechanism which is more modern in my opinion.

    What would be the best approach for this ?

  • ffmpeg AVFrame get full decoded data to char*

    20 décembre 2018, par mmmaaak

    I get Frames in loop and decode it with ffmpeg getting AVFrame as e result of it.

    So I must get neccessary pixel data of frame into char* and give as a callback function’s parameter. So how I can generete such char* array ? In internet I saw some examples such as :

    for(y=0; ydata[0]+y*pFrame->linesize[0], 1, width*3, pFile);
    }

    or something like this. Is it true ? And which size would be my char* ? As I see we write width*3 *height bytes ?

  • How to convert AVI movie to proper Apple itunes compatible movie ? [on hold]

    10 février 2019, par sd100

    I am converting an AVI movie to Itunes compatible movie the playback in itunes is garbled.

    Hi so I’ve used the following command with ffmpeg to convert avi to itunes movie :

    ffmpeg -i *.avi -c copy -map 0 output.mp4

    However when I add to itunes library the movie is garbled. What’s the right command to convert to mp4 compatible with itunes ? Thanks !