Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (112)

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

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (13461)

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