Advanced search

Medias (1)

Tag: - Tags -/MediaSPIP

Other articles (58)

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 November 2010, by

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 May 2011, by

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

On other websites (4846)

  • h263dec: call get_format() on resolution changes

    8 October 2014, by Rémi Denis-Courmont
    h263dec: call get_format() on resolution changes
    

    Fail safe if the pixel format changes.

    • [DH] libavcodec/h263dec.c
  • h263dec: call get_format after setting resolution and profile

    8 October 2014, by Rémi Denis-Courmont
    h263dec: call get_format after setting resolution and profile
    

    Bug-Id: 541

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

    10 August 2016, by 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?