Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (46)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (6372)

  • Why does the h264 output file of ffmpeg example program decoding_encoding not play in Quicktime ?

    22 décembre 2016, par Sacha Guyer

    I’ve downloaded and built ffmpeg 3.2 with --enable-gpl --enable-libx264 and also built the examples.

    I then ran the decoding_encoding program with h264 argument, which produced the file test.h264.

    I then could not play this file in Quicktime Player (version 10.4 on macOS 10.11.5 ). It plays fine in VLC.

    I don’t understand why it does not work. The ffmpeg documentation states that :

    QuickTime only supports YUV planar color space with 4:2:0 chroma subsampling (use -vf format=yuv420p or -pix_fmt yuv420p) for H.264 video.

    Looking at the file with ffprobe shows that it is in the yuv420p format :

    Input #0, h264, from 'test.h264':
     Duration: N/A, bitrate: N/A
       Stream #0:0: Video: h264 (High), yuv420p(progressive), 352x288, 25 fps,
       25 tbr, 1200k tbn, 50 tbc

    Why is this file not playing in Quicktime. What adjustments would be necessary to the decoding_encoding so that it plays ?

    Thank you for your help

  • avutil : add P016 pixel format

    20 novembre 2016, par Philip Langdale
    avutil : add P016 pixel format
    

    P016 is the 16-bit variant of NV12 (planar luma, packed chroma), using
    two bytes per component.

    It may, and in fact is most likely to, be used in situations where
    there are less than 16 bits of data. It is the responsibility of
    the writer to zero out any unused LSBs.

    • [DH] libavutil/pixdesc.c
    • [DH] libavutil/pixfmt.h
    • [DH] libavutil/version.h
  • avisynth : Support pix_fmts added to AviSynth+

    27 octobre 2016, par Stephen Hutchinson
    avisynth : Support pix_fmts added to AviSynth+
    

    A number of new pix_fmts* have been added to AviSynth+ :
    16-bit packed RGB and RGBA
    10-, 12-, 14, and 16-bit YUV 4:2:0, 4:2:2, and 4:4:4
    8-, 10-, 12-, 14-, and 16-bit Planar RGB
    8-, 10-, 12-, 14-, and 16-bit Planar YUVA and Planar RGBA
    10-, 12-, 14-, and 16-bit GRAY variants
    32-bit floating point Planar YUV(A), Planar RGB(A), and GRAY

    *some of which are not currently available pix_fmts here and were
    not added to the demuxer due to this

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] libavformat/avisynth.c