Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (78)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9352)

  • avformat/wavenc : Check umid length

    10 mai 2015, par Michael Niedermayer
    avformat/wavenc : Check umid length
    

    Fixes potential out of array read

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

    • [DH] libavformat/wavenc.c
  • lavc/lpc : do not explode when windowing a 1-length array

    21 septembre 2022, par Lynne
    lavc/lpc : do not explode when windowing a 1-length array
    

    Divided by 0.

    • [DH] libavcodec/lpc.c
  • ffmpeg output file size grows faster than linearly with movie length

    14 janvier 2021, par Jakob Filser

    I'm using ffmpeg to string together some .bmp images into a movie. In total, there are 1001 frames, amounting to 0:40 length. The command I'm using is

    &#xA;

    ffmpeg -f image2 -i render.%05d.bmp -c:v libx264 -s 512:268 render.mp4&#xA;

    &#xA;

    The output file is 33,2 MB large, which is about twice the size of a full HD (about 16 times the pixels !) video of the same length. Apart from the file size being unreasonably large, I realized it grows faster than linearly (can't tell exactly if it is quadratic, exponential etc.) with the number of frames. After 100 frames it is about 1536 KB large (which is already too large), after 500 frames it is already 15104 KB, and after 1001 it finally arrives at 34085 KB.

    &#xA;

    My educated guess would be that for each frame it stores some information about all of the previous frames again, which makes absolutely no sense.

    &#xA;

    What am I doing wrong ? Before you recommend libx265 to me : It turns the entire video green.

    &#xA;