Page 6 of 6

Re: [bash] autsmuxer - mkv2vob for *nix.

Posted: October 22nd, 2012, 8:14 pm
by Jeegan
Ah, I thought I had updated that but apparently not. That seems to have fixed the problem. The other question I have is, the old mediamux could move the finished file up on directory and del the old directory it was stored in, can the new autsmuxer do this? Thanks again for all of the help.

Re: [bash] autsmuxer - mkv2vob for *nix.

Posted: October 22nd, 2012, 9:10 pm
by sweetie
Yeah, you just need to run:

Code: Select all

autsmuxer dir -o . && rm -rf dir
Where dir is directory containing mkvs; '-o .' should drop resulting m2ts files in current directory.

Re: [bash] autsmuxer - mkv2vob for *nix.

Posted: November 5th, 2012, 5:08 pm
by Jeegan
That does work, thank you again. But is there anyway to add the previous option which moved the muxed file one up in the directory chain and renamed the file to the name of the directory which the muxed file resided?

Re: [bash] autsmuxer - mkv2vob for *nix.

Posted: November 5th, 2012, 8:14 pm
by Jeegan
Well, I spoke too soon. I seem to be getting an error with random .mkv files, some work, some give this error:

Error: Invalid track ID/file name specification in argument

Any ideas? I have the latest MKVtoolnix.

Re: [bash] autsmuxer - mkv2vob for *nix.

Posted: November 23rd, 2012, 11:54 am
by tcr
Great script Sweetie - thanks for sharing.

Small issue you may like to fix;
In each of the lines that write the filename to {3}.meta - the ${1} should be \"${1}\" to allow filenames with commas in them to be processed successfully. I stumbled across this with Lost S02E01 - Man of Science, Man of Faith for example.

Thanks again!

Re: [bash] autsmuxer - mkv2vob for *nix.

Posted: November 23rd, 2012, 12:00 pm
by tcr
Jeegan wrote:Well, I spoke too soon. I seem to be getting an error with random .mkv files, some work, some give this error:

Error: Invalid track ID/file name specification in argument

Any ideas? I have the latest MKVtoolnix.
I'm using mkvinfo v5.8.0 ('No Sleep / Pillow') built on Sep 2 2012 14:52:4 - It picks out the info just fine.
Check you haven't got two versions of mkvinfo in your path maybe? The reason I say this is that the output format changed a while back.
Probably worth posting the output from mkvinfo <filename>

Re: [bash] autsmuxer - mkv2vob for *nix.

Posted: November 24th, 2012, 5:23 am
by sweetie
tcr wrote:Great script Sweetie - thanks for sharing.

Small issue you may like to fix;
In each of the lines that write the filename to {3}.meta - the ${1} should be \"${1}\" to allow filenames with commas in them to be processed successfully. I stumbled across this with Lost S02E01 - Man of Science, Man of Faith for example.

Thanks again!
Thanks for pointing that out, sorted it now.