Accurate Date: DONE (use *date_time*)
.m4a Support
Youtube does not provide any m4a files. M4a (Mpeg Audio) is just a container for aac files.
You can make the youtube plugin to call external converters (SUPER, FFMpeg, Mp4Box,....) after the download. All you need is the correct commandline call:
You can add custom variants in the advanced youtube settings.
This example would call c:/PathToConverter.exe -switch1 PathToInputFile.mp4 -switch2 Outputfile.m4a
Code:
[ {
"uniqueID" : "aactom4a",
"typeID" : "AAC_128_m4a",
"downloadType" : "DASH_AUDIO",
"group" : "AUDIO",
"audioTag" : "DASH_AUDIO_128K_AAC",
"videoTag" : null,
"qualityRating" : -1.0,
"name" : "128kbit/s M4A",
"nameTag" : "128m4a",
"extension" : "m4a",
"binary" : "c:/PathToConverter.exe",
"parameters" : [ "-switch1", ..., "%input", "-switch2",..., "%output" ]
}]
uniqueID: Anything unique! Just be creative.
typeID: define the type String Just be creative.
downloadType: DASH_AUDIO, DASH_VIDEO, VIDEO, IMAGE, SUBTITLES,
group: AUDIO,VIDEO,VIDEO_3D,IMAGE,SUBTITLES
audioTag: see Tags Spoiler
videoTag: see Tags Spoiler
qualityRating: -1.0 for automode
name: The Variants Name. Just be creative.
nameTag: The Tag used in the filename
extension: fileextension
binary: path to your converter
parameters: the commandline parameters. Use %input for the input path and %output as output path
Tags:
-please add uppercase,lovercase etc. type filenaming support (not important but good)
Please explain. No Idea what you mean
-GeneralSettings: Use Original Last Modified (not working for dash enabled videos)
ok
-channel name and user are different
Please explain
__________________