Advanced search

Medias (3)

Tag: - Tags -/collection

Other articles (111)

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

  • Want to convert my 16:9 size MKV video to 4:3 size AVI video file

    19 September 2012, by Bimal Rekhadiya

    I have a video in MKV format and it's size is 720x304 (16:9 ratio) size video.

    I want to convert it to AVi format (using xvid video codec). The output file size should be 480x360 (4:3 ratio) and also want to keep the original (16:9) ratio so it should be cinemascope (black areas at top and bottom).

    I am on Ubuntu linux OS so I can use mencoder, avconv(ffmpeg) or any tool that work on Linux.

    I am trying this command:

    avconv -i sample.mkv -vcodec libxvid -r 25 -b 1200 -aspect 4:3 -q 1 t.avi

    But the problem is that the video is stretched to 4:3 and I want to keep original video's ratio and want to add black boxes at top and bottom so it will look cinemascope.

    Please provide me command to do this.

  • Converted mp4 not displaying image which was added with FFMPEG [duplicate]

    3 December 2015, by Avi

    This question already has an answer here:

    I am converting a mp3 to a mp4 and simultaneously adding an image to it using FFMPEG.

    Here is the command I am using.

    ffmpeg -loop 1 -i ../image.jpg -i "track 1.mp3" -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest -vf scale=800:400 "track 1".mp4

    The image appears when the video is played in a web browser. However, it doesn’t appear when the video is played on Windows Media Player or on QuickTime.

    Any ideas why?

  • Filter the video while keeping the bitrate (FFmpeg) [migrated]

    20 December 2013, by Timofey

    For experimental purposes, I need to filter my video (using -vf option) and change, say, brightness, but keep the same bitrate as in original video.

    Just for testing purposes, I change RGB values to make video completely black using line like this:

    ffmpeg -i input.mp4 -vf lutrgb='r=0.0*val:g=0.0*val:b=0.0*val' output.mp4

    So far, I tried to specify bitrate manually by adding -b, -minrate/maxrate and -q options to this line, but no matter what I do, FFmpeg keep reducing the br of the output video to just a few kilobytes.

    And my question is - if it's possible to keep bitrate on the same level even if if I change RGB values to be completely black (as an extreme case).