PDA

View Full Version : problem about mkvmerge


h9903209
24th July 2003, 10:51
I'm using mkvmerge to convert ogm to mkv which is convenient. But I find that if the filename has space within, it fails to do so. Is there any way to make it work? thx for help.

robUx4
24th July 2003, 11:07
Is it under Windows or Linux ?
Also please note that Mosu is not a regular here. So if there is a problem, contact him by email.

Nic
24th July 2003, 11:14
If under windows, you are making sure that your typing the filename with quotes (") around the name aren't you? Otherwise its windows thats not passing the filename correct, not mkvmerge thats making the mistake.

-Nic

Mosu
24th July 2003, 11:47
Nic already said it, but here's a short example that's valid for all systems that mkvmerge runs on:

mkvmerge -o "out put with many spaces.mkv" "a source file with some spaces in it.ogm"

If you omit the " (or ' in Unix like shells) then mkvmerge sees all parts of the words as an argument each - and it would try to open "put", "with", "many" etc as input files.

This is the normal behaviour of a shell/command line interpreter.

h9903209
24th July 2003, 12:59
I understand now. thx for help. ^^