home *** CD-ROM | disk | FTP | other *** search
- args = WScript.Arguments;
-
- if (args.length != 0)
- {
- var iTunesApp = WScript.CreateObject("iTunes.Application");
- var fso = new ActiveXObject("Scripting.FileSystemObject");
- fil = new Array();
- for (i = 0; i < args.length; i++)
- {
- fil.push(fso.GetAbsolutePathName(args(i)));
- }
- iTunesApp.ConvertFiles(fil);
- }
- else
- {
- WScript.Echo("Usage: encodeAAC.js <filename.wav>");
- }
-