simple ceggit releasing from unix :) #screenshots mplayer -sstep 75 -vo jpeg filename.avi ( if the above doesn't work try: mplayer -ao null -vo jpeg -vf framestep=1500 -fps 5000 filename.avi ) montage -background black -bordercolor black -borderwidth 0 -geometry 352x288 -tile 2x25 000000??.jpg filename.jpg then upload filename.jpg on fapomatic or other free post and keep the links at hand... #post go here http://hank.cheggit.net/upload.php keep your secret upload url at hand maketorrent-console http://cheggit.net/announce filename.avi go upload your newly created filename.avi.torrent here http://hank.cheggit.net/upload.php don't forget to include the fapomatic links to the shots, pervs like them :P #seed mv filename.avi.torrent filename.avi.torrent.orig redownload your just published .torrent from here http://hank.cheggit.net/browsetorrents.php bittorrent-curses --filesystem_encoding ascii --minport 10000 --maxport 20000 --max_upload_rate 25 filename.avi.torrent ADDENDUM: If you have problems with the screenshots command, try this little script with lenght in minutes of the movie as first argument and filename as second argument: #!/bin/sh VAR=1 MAX=$1 while [[ $VAR -lt $MAX ]]; do mplayer -ao null -vo jpeg -ss $VAR:00 -frames 1 $2 > /dev/null rm -rf 00000001.jpg mv 00000002.jpg $VAR.jpg ((VAR+=1)) done