[somewhat off-topic]
I have been kinda tinkering with Windows Media Lossless purely out of curiosity and found a "command-line alike" app (which is the one used by EAC as well I believe). I do had to install the
Windows Media 9 Encoder (although I think the SDK includes it also) to start playing but hey, it's better than nothing. So if you want to toy from the commandline do this:
1. Open Command Prompt
2. Go to c:\program files\[dir where you put either SDK or Encoder].
3. type "cscript wmcmd.vbs /?" to get a collection of parameters you can use.
Here's a minor selection of things you can use:
CODE
Usage for I/O and statistics.
[-input] <file or directory name>
The file or directory to be encoded.
Specify a file or directory name. If you specify a directory, supported
files in the directory will be encoded to the output directory, using
the same encoding settings.
Enclose file and directory names that have spaces in quotations.
For example: -input "c:\my sample.wmv"
[-output] <file or directory name>
The name of the output file or directory.
If the input is a file, -output corresponds to a file name. If the input
is a directory, -output corresponds to a directory name.
The output directory will be created if it doesn't already exist.
An extension is automatically appended to output files.
(.wma for audio-only Windows Media files, and .wmv for video-only or
audio and video Windows Media files.)
[-a_codec] <codec index>
Audio codec to be used. Use -a_codecs to list available codecs.
Specify codec index:
WMA9STD: Windows Media Audio 9 (default).
WMA9PRO: Windows Media Audio 9 Professional
WMSP9: Windows Media Audio 9 Voice
WMA9LSL: Windows Media Audio 9 Lossless; -a_mode 2 required
PCM: No compression
[-a_codecs]
Lists all audio codecs.
[-a_formats]
Lists all audio formats for each codec.
[-a_mode] <mode_number>
Audio encoding to be used.
0: 1-pass CBR (default).
1: 2-pass CBR.
2: Quality-based VBR.
3: Bit rate-based VBR (two-pass).
4: Bit rate-based peak VBR (two-pass).
[-a_setting] <setting>
Specifies the formats for audio setting.
Use -a_formats to list supported audio formats for each codec.
-a_setting Bitrate_SamplingRate_Channels. For example, -a_setting 48_44_2
specifies 48 Kbps, 44 kHz, and two channels. The default is 64_44_2.
If you use quality-based VBR: -a_setting Qxx_SamplingRate_Channels.
For example, -a_setting Q90_44_2 specifies a quality level of 90, 44 kHz,
and 2 channels.
If you use the Windows Media Audio Professional 9:
-a_setting Bitrate_SamplingRate_Channels_BitDepth.
For example, -a_setting 250_44_2_24 specifies 250 Kbps, 44 kHz,
two channels, and 24-bit encoding. Use either 16- or 24-bit encoding.
24-bit is the default.
If you use the Windows Media Audio 9 Lossless codec:
-a_setting Qxx_SamplingRate_Channels_BitDepth. For example,
-a_setting Q100_44_2_24 specifies VBR Quality 100, 44 kHz, two channel,
24-bit encoding. (Quality-based VBR and a quality level of 100 is
required with this codec.)
[-title] <string>
Title of the content. Enclose strings with spaces in quotations. For
example: -title "Windows Media Sample"
[-author] <string>
[-copyright] <string>
[-description] <string>
[-rating] <string>
NOTE: The maximum string length for each one is 255.
It does give freakish command lines but still, if you have a flexible encoding or front-end app you can now give it WMP9 (Lossless & other) capabilities. Although I'm not so sure about tagging thru the command line but that's why I keep playing of course

!
[/somewhat off-topic]