Mac and HjSplit Answers are Here!!
This is the answer to all of your Mac and HjSplit problems.
I received quite a few emails asking for help since Jzzr was kind enough to give me the key to the whole problem.
You need to surf with FireFox, not Safari and you need MacHacha to put them together. Both of these programs are free.
Safari downloads HjSplit files as .001.wmv , .002.wmv whereas FireFox downloads them as .001, .002 . MacHacha needs the files listed the way FireFox downloads them without the .wmv extension. When you have downloaded all of the files from one movie, double click on the .001 file and they will All automatically go together. Happy jacking and don't hurt yourself. Since I explained this to Jonze, I haven't heard from him. I hope he is ok. lol
With Safari, you run into problems when you try to rename the .002,wmv file. Firefox will solve this. Use FireFox for surfing Facial Forum.
Join Facial Forum, it is worth it!!
You will go into an orgasmic Coma, I promise. Especially with these HjSplit files. More cum than even I could swallow.
Thanks again, Jzzr.
Piper
joining all hjsplit files in a folder on mac
Hi
Before you read any further, this is for joining hjsplit files on mac os x only, and you need to run it from the terminal.
Not sure if this is any use to anyone, but I used to use hjsplit and click on each file one by one, but bored one night i wrote a script to run round my download folder, get all hjsplit files, join them and delete the hjsplit files.
YYMV, and obviously if it deletes your hard drive, sets fire to your house, or kills your dog, i take no responsibility...
Copy this into a file in your download folder (e.g. catall.sh), make it executable (chmod 777 catall.sh), then after a night of downloading, just run ./catall.sh and it will take care of all your files.
There's probably a much neater and more sophisticated way of doing this, but this works for me. :-)
HTH.
catall.sh - don't copy this line :-)
shopt -s nullglob
for f1 in *.0??
do
new=`echo "$f1" | sed 's/ /_/g'`
mv "$f1" "$new"
done
for f in *.001
do
name=${f%\.*}
cat ${name}* > tmpfile
mv tmpfile "$name"
rm ${name}.0??
echo "$name hjsplit files concatenated and deleted"
echo " "
done