Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (64)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (6345)

  • avcodec/utils : Improve check for freeing codec private options

    24 septembre 2020, par Andreas Rheinhardt
    avcodec/utils : Improve check for freeing codec private options
    

    Don't check for AVCodec.priv_data_size (which is always true if
    AVCodec.priv_class is set). Instead check for AVCodecContext.priv_data
    to actually exist.

    (Note : av_opt_free(NULL) is a no-op.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/utils.c
  • Got an error when I build WebRTC with rtc_use_h264=true

    28 mai 2021, par Chaos Lucas

    Got an error when I build WebRTC.

    &#xA;&#xA;

    This is my build args

    &#xA;&#xA;

    INFO:root:Building WebRTC with args: target_os="ios" ios_enable_code_signing=false &#xA;use_xcode_clang=true is_component_build=false is_debug=false is_component_build=false &#xA;rtc_include_tests=false rtc_enable_protobuf=false use_rtti=true use_custom_libcxx=false &#xA;rtc_use_h264=true ffmpeg_branding="Chrome" is_debug=false target_cpu="arm64" &#xA;ios_deployment_target="10.0" rtc_libvpx_build_vp9=true enable_ios_bitcode=false &#xA;use_goma=false enable_dsyms=true enable_stripping=true&#xA;

    &#xA;&#xA;

    Full error log :

    &#xA;&#xA;

    INFO:root:Building target: framework_objc&#xA;ninja: Entering directory `/webrtc-checkout/src/out_ios_libs/arm64_libs&#x27;&#xA;[85/168] LIBTOOL-STATIC obj/third_party/ffmpeg/libffmpeg_internal.a&#xA;FAILED: obj/third_party/ffmpeg/libffmpeg_internal.a&#xA;rm -f obj/third_party/ffmpeg/libffmpeg_internal.a &amp;&amp; TOOL_VERSION=1592470677 python ../../build/toolchain/mac/filter_libtool.py /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -D  -o obj/third_party/ffmpeg/libffmpeg_internal.a -filelist obj/third_party/ffmpeg/libffmpeg_internal.a.rsp&#xA;fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file list file: obj/third_party/ffmpeg/libffmpeg_internal.a.rsp is empty&#xA;

    &#xA;

  • How to use FFmpeg Colorspace Options

    13 octobre 2024, par Matt McManis

    I'm trying to understand the difference between Colorspace FFmpeg arguments :

    &#xA;

      &#xA;
    • Normal option, -colorspace bt709
    • &#xA;

    • Number, -colorspace 1
    • &#xA;

    • Codec Params -x264-params "colorspace=bt709"
    • &#xA;

    • Filter -vf "colorspace=bt709"
    • &#xA;

    &#xA;

    The Colorspace categories are :

    &#xA;

      &#xA;
    • all
    • &#xA;

    • iall
    • &#xA;

    • colorspace
    • &#xA;

    • transfer
    • &#xA;

    • primaries
    • &#xA;

    • color range
    • &#xA;

    • color matrix
    • &#xA;

    &#xA;


    &#xA;

    Question

    &#xA;

    When should each be used when encoding from raw, or transcoding/converting from one format to another ? Such as mpg to mp4.

    &#xA;

    Do I need to specify the input colorspace or will FFmpeg auto-detect ?

    &#xA;


    &#xA;

    Problems

    &#xA;

    There is no -vp8-params, only -x264-params. Should I use normal options or -vf instead for vp8 and other codecs ?

    &#xA;


    &#xA;

    Errors

    &#xA;

      &#xA;
    • There are no Normal -all or -colormatrix options, but there are all= and colormatrix= for -x264-params and -vf.

      &#xA;

    • &#xA;

    • With Codec Params -x264-params "colorspace=bt709", I get Error parsing option &#x27;colorspace = bt709&#x27;.
      &#xA;However colorprim=bt709, transfer=bt709, colormatrix=bt709 all work.

      &#xA;

    • &#xA;

    &#xA;


    &#xA;

    Resources

    &#xA;

    https://ffmpeg.org/ffmpeg-filters.html#colormatrix
    &#xA;https://ffmpeg.org/ffmpeg-filters.html#colorspace
    &#xA;https://trac.ffmpeg.org/wiki/colorspace

    &#xA;