Recherche avancée

Médias (91)

Autres articles (70)

  • Le profil des utilisateurs

    12 avril 2011, par

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

  • XMP PHP

    13 mai 2011, par

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6270)

  • swresample : Skip over dither steps if dithering scale is 0

    18 août 2016, par Michael Niedermayer
    swresample : Skip over dither steps if dithering scale is 0
    

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

    • [DH] libswresample/dither.c
    • [DH] libswresample/options.c
    • [DH] libswresample/swresample.c
    • [DH] libswresample/swresample_internal.h
  • ffmpeg image scale then crop not working

    21 août 2016, par justin shores

    I want to generate an image from a video, but first i want to scale it to a certain width/height then crop it to a set square size, the problem is that my new version ffmpeg doesnt seem to work with scaling first.

    ffmpeg version 2.8.6-1ubuntu2

    fails :

    ffmpeg -y -i input.mp4 -an -ss 5 -s 150x150 -vf scale=-1:150,crop=150:150 -vframes 1 output-small.jpg

    Invalid too big or non positive size for width ’150’ or height ’150’

    works :

    ffmpeg -y -i input.mp4 -an -ss 5 -s 150x150 -vf crop=150:150,scale=-1:150 -vframes 1 output-small.jpg

    However i cannot settle for the second command because i am generating images that could be larger then the original size (i’m creating a few different sizes for each image), therefore scale MUST come first. Anybody have any idea what changed or what i am doing wrong here ?

  • Is there a way to scale an avi using ffmpeg while keeping the videos alpha channel ?

    25 septembre 2016, par Megumiaraki

    I have been trying to change the scale of an avi but also keep the alpha channel. Also the video needs to open in after effects but when I try to open it I get the error below. I have this running in a for loop to work for all the videos in the folder.

    ffmpeg -i %%X -vf scale=!newWidth!:!newHeight! -pix_fmt bgra -r 24 -c:v rawvideo "resized\%%X"

    It seems to work but when I try to test the alpha channel in After Effects I get the error below :

    The item has an `unlabeled alpha Channel`....

    If I select the Straight-Unmatted (option).....

    I get the error :

    After Effects error :(error(4) reading frame from file (86::2)

    Any help would be great !