Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (72)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • avcodec/jpegxl_parser : add some icc profile checks

    3 octobre 2023, par Leo Izen
    avcodec/jpegxl_parser : add some icc profile checks
    

    This patch will cause the parser to abort if it detects an icc profile
    with an invalid size. This is particularly important if the icc profile
    is entropy-encoded with zero bits per symbol, as it can prevent a
    seemingly infinite loop during parsing.

    Fixes : infinite loop
    Fixes : 62374/clusterfuzz-testcase-minimized-ffmpeg_IO_DEMUXER_fuzzer
    -5551878085410816

    Found-by : continuous fuzzing process
    https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reported-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] libavcodec/jpegxl_parser.c
  • How to encode audio to AAC with profile FF_PROFILE_AAC_LOW

    13 octobre 2023, par alijandro

    I try to encode audio to AAC with profile FF_PROFILE_AAC_LOW by the following settings.

    &#xA;&#xA;

    oc_cxt->profile = FF_PROFILE_AAC_LOW;&#xA;

    &#xA;&#xA;

    Also from the output of av_dump_format, I got this

    &#xA;&#xA;

    Metadata:&#xA;encoder         : Lavf57.36.100&#xA;Stream #0:0: Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 192 kb/s&#xA;

    &#xA;&#xA;

    But the output is different. Everything is ok, except the output is AAC, not AAC (LC). By using ffprobe to detect, the output information is

    &#xA;&#xA;

    $ ffprobe o.m4a&#xA;...&#xA;Stream #0:0(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 195 kb/s (default)&#xA;...&#xA;

    &#xA;&#xA;

    AAC (LC) is the desired result I need.

    &#xA;&#xA;

    But from the command line, ffmpeg can generate AAC (LC) output. Below is a small test.

    &#xA;&#xA;

    $ ffmpeg -f lavfi -i aevalsrc="sin(440*2*PI*t):d=5" aevalsrc.m4a&#xA;$ ffprobe aevalsrc.m4a&#xA;...&#xA;Stream #0:0(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, mono, fltp, 69 kb/s (default)&#xA;...&#xA;

    &#xA;&#xA;

    How can I select FF_PROFILE_LOW to get AAC (LC) output ?

    &#xA;

  • avcodec/videotoolboxenc : Check and set hevc profile

    12 octobre 2023, par Zhao Zhili
    avcodec/videotoolboxenc : Check and set hevc profile
    

    1. If user don't specify the profile, set it to main10 when pixel
    format is 10 bits. Before the patch, videotoolbox output main
    profile bitstream with 10 bit input, which can be confusing.
    2. Warning when user set profile to main explicitly with 10 bit
    input. It works, but not the best choice.
    3. Reject main 10 profile with 8 bit input, it doesn't work.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavcodec/videotoolboxenc.c