Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (59)

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

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (5721)

  • Sega FILM : set dts and duration when demuxing

    9 avril 2018, par Misty De Meo
    Sega FILM : set dts and duration when demuxing
    

    Reviewed-by : Kyle Swanson <k@ylo.ph>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/segafilm.c
  • FFmpeg film grain

    21 août 2019, par Some1Else

    I want to add a film grain effect using FFMPEG if possible.

    Taking a nice clean computer rendered scene and filter for a gritty black and white 16mm film look. As an example something like Clerks https://www.youtube.com/watch?v=Mlfn5n-E2WE

    According to Simulating TV noise Ishould be able to use the following filter

    -filter_complex "geq=random(1)*255:128:128;aevalsrc=-2+random(0)"

    but when I add it to my ffmpeg command

    ffmpeg.exe -framerate 30 -i XYZ%05d.PNG -vf format=yuv420p -dst_range 1 -color_range 2 -c:v libxvid -vtag xvid -q:v 1 -y OUTPUT.AVI

    so the command is now

    ffmpeg.exe -framerate 30 -i XYZ%05d.PNG -vf format=yuv420p -dst_range 1 -color_range 2 -c:v libxvid -vtag xvid -q:v 1 -y -filter_complex "geq=random(1)*255:128:128;aevalsrc=-2+random(0)" OUTPUT.AVI

    I get the message

    Filtergraph ’format=yuv420p’ was specified through the -vf/-af/-filter option for output stream 0:0, which is fed from a complex filtergraph.
    - vf/-af/-filter and -filter_complex cannot be used together for the same stream.

    How can I change my ffmpeg command line so the grain filter works ? Additionally, can I add a slight blur too ? The old 16mm looks more like blurred then grainy.

    Thanks for any tips.

  • libdav1d : use film grain export flag to export AVFilmGrainParams side data

    12 novembre 2020, par Lynne
    libdav1d : use film grain export flag to export AVFilmGrainParams side data
    

    This patch is relatively straightforward with one exception :
    the decoder option flag.
    The option was introduced to troubleshoot but its existence is conflicting
    and redundant now that we have a codec-generic flag.
    Hence this patch deprecates it.

    The way it interacts with AV_CODEC_EXPORT_DATA_FILM_GRAIN is as follows :

    If filmgrain is unset and AV_CODEC_EXPORT_DATA_FILM_GRAIN is
    present, disable film grain application and export side data.

    If filmgrain is set to 0, disable film grain and export side data.

    If filmgrain is set to 1, apply film grain but export side data if
    the AV_CODEC_EXPORT_DATA_FILM_GRAIN flag is set. This may result in
    double film grain application, but the user has requested it by setting
    both.

    • [DH] libavcodec/libdav1d.c