Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

Sur d’autres sites (15504)

  • alsa-audio-dec : explicitly cast the delay to a signed int64

    1er décembre 2013, par Anton Khirnov
    alsa-audio-dec : explicitly cast the delay to a signed int64
    

    Otherwise the expression will be evaluated as unsigned, which will break
    when the result should be negative.
    CC:libav-stable@libav.org

    • [DBH] libavdevice/alsa-audio-dec.c
  • libvpx : Cast a pointer to const to squelch a warning

    24 août 2016, par Diego Biurrun
    libvpx : Cast a pointer to const to squelch a warning
    

    libavcodec/libvpxdec.c:100:57 : warning : passing argument 3 of ’av_image_copy’ from incompatible pointer type
    av_image_copy(picture->data, picture->linesize, img->planes,
    libavutil/imgutils.h:116:6 : note : expected ’const uint8_t **’ but argument is of type ’unsigned char **’
    void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4],

    • [DBH] libavcodec/libvpxdec.c
  • 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.