Yeah, this part:
Code:
wget -c -O "$MOVIESAVEPATH/$NEWPREVIEWNAME" $PREVIEW1080p; PREVIEWOUT1080p=$?
if [ $PREVIEWOUT1080p -eq 0 ]; then
Is more commonly written as just:
Code:
wget -c -O "$MOVIESAVEPATH/$NEWPREVIEWNAME" $PREVIEW1080p
if [ $? -eq 0 ]; then
There's not really anything wrong with the way you have it, but it seems ... wasteful.

There's no way to embed the wget inside the if. Well, I suppose you could do this:
Code:
if [ `wget ....; echo $?` -eq 0 ]; then
but don't.
_________________________
Bitt Faulk