Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (59)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10396)

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

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

  • How to let ffmpeg download partial m3u8 video without download the full ones ?

    15 octobre 2018, par 3142 maple

    I want to get a video from a m3u8 stream from range : 21:24 22:54.
    I found a answer at https://superuser.com/questions/758943/ffmpeg-cut-for-time-range , and it said I can use -ss 00:21:24.00 -t 90 to cut it.

    But I found that ffmpeg is actually download the whole video until 00:21:24.00 rather that just download 21:24 22:54 .
    How can I let it just download the 90 seconds I want ?

    The command I came up :

    ffmpeg -i "M3U8URL" -acodec copy -vcodec copy -ss 00:21:24.00 -t 90 output.mp4