hi everybody,
i have wonderful py script to get m3u8 link and download with N_m3u8DL-RE
but on final step i have one mp4 and one audio m4a file
now the script is like this:
i want mux mp4+m4a to mkv file, so i've add:Code:M3U8_DL_RE = 'D:\\streaming\\N_m3u8DL-RE\\N_m3u8DL-RE.exe' .. ... .... if download: re_process = subprocess.run([ M3U8_DL_RE, f"{m3u8_link}", "--no-log", "--save-name xxxx" ])
but i've error: Unrecognized command or argument '-M format=mkv:muxer=mkvmerge'Code:M3U8_DL_RE, f"{m3u8_link}", "--no-log", "-M format=mkv:muxer=mkvmerge", "--save-name xxxx"
what's wrong on this py script?
+ Reply to Thread
Results 1 to 6 of 6
-
-
A comma after -M would follow your established pattern.
But run your line directly as a command to test it is valid. Then translate into python code.Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
?? i don't understand your suggestion
if i only run:
Code:N_m3u8DL-RE "https://_playlist.m3u8?auth=daEd_" --no-log -M format=mkv:muxer=mkvmerge --save-name xxxx
-
Code:
[ M3U8_DL_RE, f"{m3u8_link}", "--no-log", "-M", "format=mkv:muxer=mkvmerge", "--save-name", "xxxx" ]
-
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip
Similar Threads
-
N_m3u8DL-RE Tutorial
By Subtitles in forum Video Streaming DownloadingReplies: 13Last Post: 28th May 2025, 08:19 -
N_m3u8DL-RE on Mac
By phineferb98 in forum Video Streaming DownloadingReplies: 19Last Post: 17th Dec 2024, 13:15 -
Need help me getting the N_m3u8DL-RE
By mrsimple8x in forum Video Streaming DownloadingReplies: 2Last Post: 19th Dec 2023, 07:29 -
problem with N_m3u8dl-re , need help
By arvind_1 in forum Video Streaming DownloadingReplies: 1Last Post: 24th Oct 2023, 04:34 -
Help with N_m3u8DL-RE and MPD
By sparklescale in forum Video Streaming DownloadingReplies: 4Last Post: 20th Jun 2023, 23:31