
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (64)
-
Gestion générale des documents
13 mai 2011, parMé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, parCette 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, parThis 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 Rheinhardtavcodec/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>
-
Got an error when I build WebRTC with rtc_use_h264=true
28 mai 2021, par Chaos LucasGot an error when I build WebRTC.



This is my build args



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




Full error log :



INFO:root:Building target: framework_objc
ninja: Entering directory `/webrtc-checkout/src/out_ios_libs/arm64_libs'
[85/168] LIBTOOL-STATIC obj/third_party/ffmpeg/libffmpeg_internal.a
FAILED: obj/third_party/ffmpeg/libffmpeg_internal.a
rm -f obj/third_party/ffmpeg/libffmpeg_internal.a && 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
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



-
How to use FFmpeg Colorspace Options
13 octobre 2024, par Matt McManisI'm trying to understand the difference between Colorspace FFmpeg arguments :


- 

- Normal option,
-colorspace bt709
- Number,
-colorspace 1
- Codec Params
-x264-params "colorspace=bt709"
- Filter
-vf "colorspace=bt709"










The Colorspace categories are :


- 

all
iall
colorspace
transfer
primaries
color range
color matrix

















Question


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

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



Problems


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


Errors


- 

-
There are no Normal
-all
or-colormatrix
options, but there areall=
andcolormatrix=
for-x264-params
and-vf
.

-
With Codec Params
-x264-params "colorspace=bt709"
, I getError parsing option 'colorspace = bt709'.

Howevercolorprim=bt709
,transfer=bt709
,colormatrix=bt709
all work.








Resources


https://ffmpeg.org/ffmpeg-filters.html#colormatrix

https://ffmpeg.org/ffmpeg-filters.html#colorspace

https://trac.ffmpeg.org/wiki/colorspace

- Normal option,