All hail cb4960!!!
I finally got around to installing subs2srs on my macbook, and it works great.
I followed blackmacros instructions (
http://forum.koohii.com/showthread.php?p...8#pid91178 ).
To clarify a couple of steps
0. You need to make sure the X11.app is installed (under Applications/Utilities).
I forget whether this is installed by default. If not, it should be included on the OS disc, or you can get it off the Apple download site.
4. Before running the "mono [subs2srs.exe]" you need to run the X11.app (Applications/Utilities/X11.app). Otherwise you get an error about being unable to open the "display".
As a final note, putting stuff in /bin is a bad idea, but the alternative is a bit technical.
Here's what I did:
- make a directory in my home folder called "progs" (or whatever you want)
- put the "ffmpeg" file in that directory
- add the "progs" directory to your PATH
The last step means adding the following line to your ".bash_profile" file in your home directory :
export PATH="$HOME/progs:$PATH"
To do the last step you can just edit the file, or paste the following command into the terminal:
echo "export PATH=\"\$HOME/progs:\$PATH\"" >> ~/.bash_profile
Finally, you can create an "alias" so you can run it by just typing "subs2srs" without having to remember where you put the executable.
Add an alias to your .bash_profile file with the command you use to run it.
e.g. mine is
alias subs2srs='mono /Users/avp/progs/subs2srs/subs2srs.exe'