Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (34)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (5297)

  • Correcting color cast with ffmpeg

    16 mai 2018, par Henry H

    I have two videos that have a pretty significant blue cast to them. I took some stills at the same time and I’m happy enough with the colors on those and I’d like to re-encode the videos, adjusting the colors to something similar to the stills.

    I understand I could either create a large collection of jpg images from the video and color correct them before reassembling them into a new video or I could use ffmpeg’s color level’s filter to do it directly. What I don’t know is how to get the numbers to pass to the filter. I’m assuming I want to do something like this :

    ffmpeg -i video.mov -vf "colorlevels=rimin=##/255:gimin=##/255:bimin=#/255:rimax=###/255:gimax=###/255:bimax=###/255, eq=gamma=#.##" -y out.mov

    How do I get the values to use for each of the r, g, and b min and max settings and gamma to use in place of the ###s ? Assuming this is the right approach, of course.

    Update : Perhaps this question would be better asked in a forum for gimp or photoshop. But I know how to adjust the color in those. What I need to know is how I translate those changes to what ffmpeg is expecting.

  • Resizing an mp4 with ffmpeg reduces color quality

    16 novembre 2019, par Jules

    Initially I’ve downloaded a video from an m3u8 to an mp4. The color of the downloaded video is fine at this point and mirrors the source. This is the command I’m using..

    ffmpeg -i https://...default.m3u8 -acodec copy -vcodec copy download.mp4

    My next step is to resize the source video from 1142 x 652, to create a new larger letter-box / pillar-box video of 1920 x 886

    ffmpeg -i download.mp4 -vf "scale=(iw*sar)*min(1920/(iw*sar)\,886/ih):ih*min(1920/(iw*sar)\,886/ih),
     pad=1920:886:(1920-iw*min(1920/iw\,886/ih))/2:(886-ih*min(1920/iw\,886/ih))/2" resized.mp4

    However the color of the resized video is different, it could be that the amount of colours has been reduced, but that’s just a guess.

  • avcodec/libkvazaar : Respect codec context color settings.

    2 octobre 2023, par John Mather
    avcodec/libkvazaar : Respect codec context color settings.
    

    This patch makes the libkvazaar encoder respect color settings that are
    present on the codec context, including color range, primaries, transfer
    function and colorspace.

    • [DH] libavcodec/libkvazaar.c