View Single Post
Old 30th June 2013, 22:38   #240  |  Link
DarrellS
Registered User
 
Join Date: Mar 2013
Posts: 28
Hey DragonZord, did you get anything working in Virtualdub?

I've got WMA-STD, WMA-LSL and WMA-PRO working with WMAEncode_0.2.9b but I cannot get 5.1 with any encoder I've tried. The cscript/wmcmd.vbs option isn't working for me at all with audio or video. Any help would be appreciated.

Here are the commands for WMA using wmaencode.exe...

Code:
{
	"description": "VirtualDub external encoder profile collection",
	"externalEncoders": {
		"sets": {
			"WMA-STD": {
				"videoEncoder": "",
				"audioEncoder": "WMA-STD",
				"multiplexer": "",
				"description": "wma",
				"extension": "wma",
				"processPartial": true,
				"useOutputAsTemp": false
			},
			"WMA-PRO": {
				"videoEncoder": "",
				"audioEncoder": "WMA-PRO",
				"multiplexer": "",
				"description": "wma",
				"extension": "wma",
				"processPartial": false,
				"useOutputAsTemp": false
			},
			"WMA-LSL": {
				"videoEncoder": "",
				"audioEncoder": "WMA-LSL",
				"multiplexer": "",
				"description": "wma",
				"extension": "wma",
				"processPartial": false,
				"useOutputAsTemp": false
			},
		"profiles": {
			"ASFmux": {
				"name": "ASFmux",
				"program": "ffmpeg-20130624-git\\ffmpeg.exe",
				"commandArguments": "-i \"%(tempvideofile)\" -i \"%(tempaudiofile)\" -vcodec copy -acodec copy -f wmv -y \"%(outputname)\"",
				"outputFilename": "%(outputname).audio",
				"type": 2,
				"inputFormat": 0,
				"checkReturnCode": true,
				"logStdout": true,
				"logStderr": true,
				"bypassCompression": false,
				"predeleteOutputFile": true
			},
			"WMA-STD": {
				"name": "WMA-STD",
				"program": "WMAEncode.exe",
				"commandArguments": "-i \"-\" -c std -m cbr \"%(tempaudiofile)\"",
				"outputFilename": "%(outputname).wma",
				"type": 1,
				"inputFormat": 1,
				"checkReturnCode": true,
				"logStdout": true,
				"logStderr": true,
				"bypassCompression": true,
				"predeleteOutputFile": true
			},
			"WMA-PRO": {
				"name": "WMA-PRO",
				"program": "WMAEncode.exe",
				"commandArguments": "-i \"-\" -c pro -m cbr \"%(tempaudiofile)\"",
				"outputFilename": "%(outputname).wma",
				"type": 1,
				"inputFormat": 1,
				"checkReturnCode": true,
				"logStdout": true,
				"logStderr": true,
				"bypassCompression": true,
				"predeleteOutputFile": true
			},
			"WMA-LSL": {
				"name": "WMA-LSL",
				"program": "WMAEncode.exe",
				"commandArguments": "-i \"-\" -c lsl \"%(tempaudiofile)\"",
				"outputFilename": "%(outputname).wma",
				"type": 1,
				"inputFormat": 1,
				"checkReturnCode": true,
				"logStdout": true,
				"logStderr": true,
				"bypassCompression": true,
				"predeleteOutputFile": true
			},
			}
		}
	}
}
Not sure if ASFmux will work since I can't get any wmv encoders working. ffmpeg or wmcmd.
DarrellS is offline   Reply With Quote