Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (37)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6099)

  • 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