The issue arises also with Ubuntu 22.04 and ffmpeg n6.1.1! Nobody experiencing this issue ?? Any solution hints?
+ Reply to Thread
Results 1 to 5 of 5
-
-
never used the option (I don't capture stuff), but it is from libavformat/dashdec.c ,
Code:static const AVOption dash_options[] = { {"allowed_extensions", "List of file extensions that dash is allowed to access", OFFSET(allowed_extensions), AV_OPT_TYPE_STRING, {.str = "aac,m4a,m4s,m4v,mov,mp4,webm,ts"}, INT_MIN, INT_MAX, FLAGS}, { "cenc_decryption_key", "Media decryption key (hex)", OFFSET(cenc_decryption_key), AV_OPT_TYPE_STRING, {.str = NULL}, INT_MIN, INT_MAX, .flags = FLAGS }, {NULL} };
So the libav version you are using might be the problem.users currently on my ignore list: deadrats, Stears555, marcorocchini -
Hi thanks, I found this too, but, do you know how this could be used as a command line option in ffmpeg? It seems to me that
Code:dash_options
Code:dash_class
Code:ff_dash_demuxer
Code:#define OFFSET(x) offsetof(DASHContext, x) #define FLAGS AV_OPT_FLAG_DECODING_PARAM static const AVOption dash_options[] = { {"allowed_extensions", "List of file extensions that dash is allowed to access", OFFSET(allowed_extensions), AV_OPT_TYPE_STRING, {.str = "aac,m4a,m4s,m4v,mov,mp4,webm,ts"}, INT_MIN, INT_MAX, FLAGS}, { "cenc_decryption_key", "Media decryption key (hex)", OFFSET(cenc_decryption_key), AV_OPT_TYPE_STRING, {.str = NULL}, INT_MIN, INT_MAX, .flags = FLAGS }, {NULL} }; static const AVClass dash_class = { .class_name = "dash", .item_name = av_default_item_name, .option = dash_options, .version = LIBAVUTIL_VERSION_INT, }; const AVInputFormat ff_dash_demuxer = { .name = "dash", .long_name = NULL_IF_CONFIG_SMALL("Dynamic Adaptive Streaming over HTTP"), .priv_class = &dash_class, .priv_data_size = sizeof(DASHContext), .flags_internal = FF_FMT_INIT_CLEANUP, .read_probe = dash_probe, .read_header = dash_read_header, .read_packet = dash_read_packet, .read_close = dash_close, .read_seek = dash_read_seek, .flags = AVFMT_NO_BYTE_SEEK, };
-
what is the ffmpeg command that you are using ??
see this thread page 2 post #33 - https://forum.videohelp.com/threads/400424-Downloading-DRM-protected-video-and-decrypt...nown-key/page2 -
Like I wrote, I never used 'cenc_decryption_key', the used demuxer in ffmpeg will normally be decided depending on the input file.
Calling 'ffmpeg -demuxers' I get:
Code:... D dash Dynamic Adaptive Streaming over HTTP ...
I agree october262: What does your command line look like?users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
How to send streamlink output into ffmpeg for further processing (ubuntu)?
By BosseB in forum Video Streaming DownloadingReplies: 1Last Post: 30th Jan 2024, 09:20 -
cenc_decryption_key with 2 keys ??
By dromicron in forum Video Streaming DownloadingReplies: 4Last Post: 18th Jun 2022, 10:05 -
how do i add libx264 and hevc to ffmpeg when i compile ffmpeg for ubuntu 21
By oduodui in forum Newbie / General discussionsReplies: 2Last Post: 17th Jul 2021, 04:12 -
FFMPEG on Ubuntu server introducing green screen in the intro for IOS devic
By Hyder-caravel in forum Video ConversionReplies: 1Last Post: 15th Mar 2021, 10:39 -
x264: unrecognized option `--fade-compensate'
By tee_trea in forum Video ConversionReplies: 3Last Post: 10th Jan 2021, 15:20