Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (82)

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

  • lavc/flashsv2enc : Fix encoding resolution error message.

    13 novembre 2014, par Carl Eugen Hoyos
    lavc/flashsv2enc : Fix encoding resolution error message.
    
    • [DH] libavcodec/flashsv2enc.c
  • avfilter/vf_noise : fix high resolution support

    16 octobre 2014, par Michael Niedermayer
    avfilter/vf_noise : fix high resolution support
    

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

    • [DH] libavfilter/vf_noise.c
  • FFmpeg - Change resolution of the video with aspect ratio

    10 août 2016, par Arthur Khusnutdinov

    all.

    How to change resolution of the video with aspect ratio with FFmpeg ?

    There are options
    http://manpages.ubuntu.com/manpages/oneiric/man1/ffmpeg.1.html

          -s size
          Set frame size. The format is wxh (ffserver default = 160x128,
          ffmpeg default = same as source).  The following abbreviations are
          recognized:

    and

          -aspect aspect
          Set the video display aspect ratio specified by aspect.

          aspect can be a floating point number string, or a string of the
          form num:den, where num and den are the numerator and denominator
          of the aspect ratio. For example "4:3", "16:9", "1.3333", and
          "1.7777" are valid argument values.

    For example, I have two input videos :

    • with 200*400 resolution
    • with 400*700 resolution

    I need to make output video with 100*200 resolution.

    If I will run ffmpeg with -s 100x200, then second video will have bad aspect ratio.

    How can I limit output video by width, with auto aspect ratio by height ?

    For example, I want specify for the output video only width 100px and ffmpeg must automatically calculate height with right aspect ratio.

    For first video it will be :

    200/100=2

    400/2=200

    Ie 100x200

    For second video it will be :

    400/100=4

    700/4=75

    Ie 100x75

    Is it possible ?