Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (67)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (11773)

  • avcodec/bintext : Add error message when resolution is too small for font.

    9 avril 2019, par Nikolas Bowe
    avcodec/bintext : Add error message when resolution is too small for font.
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/bintext.c
  • decreasing video resolution using ffmpeg increases file size

    11 octobre 2024, par user270700

    I try to decrease video resolution using ffmpeg by,

    &#xA;&#xA;

    ffmpeg -y -hide_banner -loglevel panic -i "input.mp4" -vf "scale=-1:256" -q:v 1 -c:a copy -threads 1 "output.mp4"&#xA;

    &#xA;&#xA;

    But the video file size is increased. &#xA;The original height is larger than 256.&#xA;Why the file size is increased though the resolution is decreased ?

    &#xA;

  • Convert s3 video files resolution and store it back to s3

    5 avril 2019, par Pritam Roy

    I want to convert s3 bucket video file resolutions to other resolutions and store it back to s3.
    I know we can use ffmpeg locally to change the resolution.
    Can we use ffmpeg to convert s3 files and store it back using Django ?

    I am puzzled as from where to start and what should be the process.
    Whether I should have the video file from s3 bucket in buffer and then convert it using ffmpeg and then upload it back to s3.
    Or is there anyway to do it directly without having to keep it in buffer.