Why not register?


Post new topic Reply to topic  [ 325 posts ]  Go to page Previous  1, 2, 3, 4, 5 ... 17  Next

All times are UTC [ DST ]

Author Message
PostPosted: Sat Apr 03, 2004 11:44 pm  Post subject:
Reply with quote
User avatar
Offline

Will Tear Your Soul Apart
Joined: Fri Sep 12, 2003 12:54 pm
Posts: 594
Location: Fuad Ramses Exotic Caterers
Ok here is the first of the episodes I am going to be seeding. I have around 20 episodes, all of which are from BT, but the speeds are really bad over there and it was a battle to get them and some eps have just disappeared. And with Bonnie releasing all those DVD-rip episodes, it seems like a good idea to put them up here.

So here's the first episode:
Tales.from.the.Crypt.01.(s1e01).The.Man.Who.Was.Death.TVRIP.HHAH.avi
I won't be putting these out in any particular order because that's how I have them, but the others are from series 5-7...

Keep yours coming too Bonnie I love this series too and after looking for years on the internet for episodes, suddenly the DVD rips come and so do these! :beerchug:


Top
 Profile  
PostPosted: Sun Apr 04, 2004 12:39 am  Post subject:
Reply with quote
Request Territory
Offline

Request Territory
Joined: Thu Mar 18, 2004 3:07 am
Posts: 4
More Episodes:

Tales.from.the.Crypt.14.For.Cryin.Out.Loud.[SilenZio].avi
Tales.from.the.Crypt.16.The.Ventriloquist's.Dummy.[SilenZio].avi
Tales.from.the.Crypt.15.Four-Sided.Triangle.[SilenZio].avi

Enjoy!

[ Add all 3 links to your ed2k client ]


Top
 Profile  
PostPosted: Sun Apr 04, 2004 1:04 am  Post subject:
Reply with quote
User avatar
Offline

In Hell I Burn
Joined: Tue Dec 30, 2003 12:08 am
Posts: 431
*Queue explodes*


Top
 Profile  
PostPosted: Sun Apr 04, 2004 1:07 am  Post subject:
Reply with quote
User avatar
Offline

Will Tear Your Soul Apart
Joined: Fri Sep 12, 2003 12:54 pm
Posts: 594
Location: Fuad Ramses Exotic Caterers
Wow excellent first post silenzio! :mrgreen:


Top
 Profile  
PostPosted: Sun Apr 04, 2004 6:56 am  Post subject:
Reply with quote
User avatar
Offline

Site Admin
Joined: Sat Nov 02, 2002 1:35 am
Posts: 19777
Location: En España


holy crap! Clickerty click.

What are the specs/ripping method btw?

[ Add all 3 links to your ed2k client ]

_________________
Mouse nipple for the win! Trackpoint or death!


Top
 Profile  
PostPosted: Sun Apr 04, 2004 7:13 am  Post subject:
Reply with quote
User avatar
Offline

Site Admin
Joined: Sat Nov 02, 2002 1:35 am
Posts: 19777
Location: En España
Bonnie_Parker, The method that I've found gives substantially better quality is simply to use gknot for every step :lol: If you haven't used it, check it out, all it is is an interface for virtual dub mod, nandub, dvddecryptor, DVD2avi, avisynth and besweet, but if your already using another method then just stick with that.

It takes care of the cropping whilst maintaining the AR (so it's almost impossible to crop incorrectly), the resolution can't be out. Then with the compressability test.

Watching the episodes, the quality is fine, just that little black boarder (which moves so it's 100% the DVD source) can be cropped further I think, and for the source, dropping the audio and bumping up the video is the best thing that can be done.

Quote:
I'm really interested if you have some advice about resizing methods (or deinterlacing maybe), and if you can tell me a bit more about Convolutions3D, I'd like to give it a try (can it be pluged in Virtual Dub? ). I heard about Gknot a couple of times, and always in good, but as I said, I'm not sure I want to spend the time necessary to get familiar with a whole other ripping procedure (still, good argumentation is never really wasted, you know [/uote]

Convolution3d is a degrain matrix which cleans up the video and makes it more compressable
Quote:
Convolution3D is an AviSynth filter that will apply a 3D convolution filter to a video stream.
In practical terms, this makes it an anti-noise filter with both spatial and temporal elements.
Most often, it is used to increase the compressibility of a video stream.


You apply it to your AVIsynth script, which, if you use gknot for example, is how your project is passed to virtualdubmod for ultimate encoding. Deinterlacing method i use is a field deinterlacer, non blending (it blurs the image too much when blending)

eg, of a script with convolution3d and decomb deinterlacer (field deinterlacer, no blend)
Code:
#
# Created with Gordian Knot
#
# http://gknot.doom9.org
#
#  PLUGINS
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\mpeg2dec3.dll")
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\undot.dll")
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\decomb.dll")
#LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\KernelDeInt.dll")
#LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\dgbob.dll")
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\Convolution3d.dll")
#LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\FluxSmooth.dll")
#LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\TomsMoComp.dll")
#LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\VSFilter.dll")
#LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\SimpleResize.dll")
#
#  SOURCE
avisource("D:\Programs\Video\Encoding\GordianKnot\Preview.avs")
#
#  TRIM
#trim(startframe,endframe)
#
#  IVTC
#Telecide(order=1,guide=1).Decimate()
#  or use
#IVTC(44,11,95)
#GreedyHMA(1,0,4,0,0,0,0,0)
#
#  CROPPING
crop(0,0,648,56)
#
#  DEINTERLACING (1)
FieldDeinterlace()
#FieldDeinterlace(blend=false)
#TomsMoComp(1,5,1)
#
#  DEINTERLACING (2)
#KernelDeInt(order=1,sharp=true)
#  or maybe
#DGBob(order=1,mode=0)
#  DEINTERLACING (3) - special requests
#GreedyHMA(1,0,0,0,0,0,0,0)
#Telecide()
#SeparateFields()
#
#
#  SUBTITLES
#VobSub("FileName")
#
#  RESIZING
BicubicResize(608,448,0,0.5)
#
Undot()
#
#  DENOISING: choose one combination (or none)
#  1) little noise
#Temporalsoften(2,3,3,mode=2,scenechange=6)
#mergechroma(blur(1.3))
#FluxSmooth(5,7)
#
#  2) medium noise
#Temporalsoften(3,5,5,mode=2,scenechange=10)
Convolution3d("moviehq")
#FluxSmooth(7,7)
#
#  3) heavy noise
#Temporalsoften(4,8,8,mode=2,scenechange=10)
#Convolution3d("movielq")
#FluxSmooth(10,15)
#
#  BORDERS
#AddBorders(left,top,right,bottom)
#
#  COMPRESSIBILITY CHECK
#  !!!!Snip Size now has to be 14 for use in GKnot!
#SelectRangeEvery(280,14)
#
#  FOOL CCEnc
#empty = BlankClip()
#AudioDub(last,empty)


Gknot produces the best results for any source i've done, I can't recommend a ripping method more highly and allows you to apply other interlacing methods at the click of a button.

It was just a suggestion to bump up the filesize, I know its not always most suitable. Dropping the audio size should help a lot though :)

Thanks for the rips everyone :D

_________________
Mouse nipple for the win! Trackpoint or death!


Top
 Profile  
PostPosted: Sun Apr 04, 2004 9:11 am  Post subject:
Reply with quote
Request Territory
Offline

Request Territory
Joined: Thu Mar 18, 2004 3:07 am
Posts: 4
Quote:
What are the specs/ripping method btw?


They're captured from Digital-TV.

Specs for The Ventriloquist's Dummy & For Cryin' out Loud:
Video codec: Divx 5
Resolution: 640x480
Video stream: 980 & 1200 kb/s
Audio stream: 256 kb/s 48khz (original audiostream unchanged)

Four-sided Triangle (used lower resolution etc on this one)
Video codec: Divx 5
Resolution: 576x432
Video stream: 610 kb/s
Audio stream: VBR MP3 84 kb/s


Top
 Profile  
PostPosted: Sun Apr 04, 2004 9:38 am  Post subject:
Reply with quote
User avatar
Offline

Master Of The Dead Donkey
Joined: Wed Sep 24, 2003 10:57 am
Posts: 743
Location: there
* 3 episodes added on the top the thread *

Thx for your rips guys! As I said, the episodes released in DVD here in France are mostly from the 3rd, 4th and 5th season. Now I've the 8 first DVD (24 episodes), and we'll try to make the rips more regularly :)

EDIT: I just checked the names of the last episodes to come (only 4 have to be confirmed), so here's the list of potential rips:

Season 3 : n?1-13 (n?14 was unaired in France)

Season 4: n?1-7 + n?10-14 (same here, n?8, by Richard Donner and n?9, by Tom Holland with Brad Piit were both unaired here)

Season 5: n?1, 3, 5, 6, 8-11 and 13

Season 6: n?1

The entire 6th and 7th season were never shown in France, so I would be thxful if anyone had them, or even parts of them!!


Top
 Profile  
PostPosted: Sun Apr 04, 2004 4:32 pm  Post subject:
Reply with quote
User avatar
Offline

Will Tear Your Soul Apart
Joined: Fri Sep 12, 2003 12:54 pm
Posts: 594
Location: Fuad Ramses Exotic Caterers
I have the entire sixth series, missing just one episode (6x2).

Thought I may aswell add a couple of episodes too. These are from series 5, and they're ones that Bonnie isn't going to be getting on DVD... may as well not bother putting out any Bonnie will be releasing.

I will be adding all the series 6 eps (without 6x2) and 7x1, 7x2 and 7x4 after this, then that's all I've got.

ed2k: Tales.from.the.Crypt.56.(s5e04).Food.For.Thought.TVRIP.HHAH.avi  [180.60 Mb] [Stats]
ed2k: Tales.from.the.Crypt.64.(s5e12).Half.-.Way.Horrible.TVRIP.HHAH.avi  [208.51 Mb] [Stats]

[ Add all 2 links to your ed2k client ]


Top
 Profile  
PostPosted: Mon Apr 05, 2004 6:39 pm  Post subject:
Reply with quote
User avatar
Offline

Will Tear Your Soul Apart
Joined: Fri Sep 12, 2003 12:54 pm
Posts: 594
Location: Fuad Ramses Exotic Caterers
Got some screenshots:

Silenzio's Episode 14 rip:
Image

Episode 1 of my eps (ripped by Striker a.k.a. Cryptkeeper so respect to him):
Image

That white shit on the edges is my wacky screenshots that I fucked up so pay no attention to that... I only noticed when I previewed this post. You get the idea at least :wacky:


Top
 Profile  
PostPosted: Tue Apr 06, 2004 4:22 am  Post subject:
Reply with quote
User avatar
Offline

Site Admin
Joined: Sat Nov 02, 2002 1:35 am
Posts: 19777
Location: En España
thanks everyone, all the episodes look great quality. Thanks for bringing them to emule too, there was a severe lack of them and that wasn't healthy :lol:

_________________
Mouse nipple for the win! Trackpoint or death!


Top
 Profile  
PostPosted: Tue Apr 13, 2004 8:41 am  Post subject:
Reply with quote
Request Territory
User avatar
Offline

Request Territory
Joined: Tue Apr 13, 2004 8:23 am
Posts: 5
For anyone that's interested they can visit my site Crypt Keeper's Torrents at http://cryptkeeper.no-ip.com:6969/ to download lots of episodes of Tales From The Crypt.


Top
 Profile  
PostPosted: Tue Apr 13, 2004 1:45 pm  Post subject:
Reply with quote
User avatar
Offline

Will Tear Your Soul Apart
Joined: Fri Sep 12, 2003 12:54 pm
Posts: 594
Location: Fuad Ramses Exotic Caterers
Cryptkeeper is the ripper of all my eps...

Welcome to HHAH!

I will be seeding all the eps I download from here on Cryptkeepers tracker when I have them, to thank Cryptkeeper for all his work... :beerchug:


Top
 Profile  
PostPosted: Tue Apr 13, 2004 5:24 pm  Post subject:
Reply with quote
User avatar
Offline

In Hell I Burn
Joined: Tue Dec 30, 2003 12:08 am
Posts: 431
If more of those torrents could make it to eMule for those of less fortunate (without BT), it'd be much appreciated. :wink:


Top
 Profile  
PostPosted: Tue Apr 13, 2004 5:47 pm  Post subject:
Reply with quote
User avatar
Offline

Will Tear Your Soul Apart
Joined: Fri Sep 12, 2003 12:54 pm
Posts: 594
Location: Fuad Ramses Exotic Caterers
I'm gonna be bringing all the ones over that Bonnie isn't going to be ripping from DVD.

Actually I was thinking about unsharing the 3 I already put out and letting another 3 loose... I'm just gonna do that 3 eps at a time until I have got them all on eMule, then I'll stick all of them in my shared folder at the end.

So has anyone finished those 3 and is still sharing them?


Top
 Profile  
PostPosted: Tue Apr 13, 2004 8:11 pm  Post subject:
Reply with quote
User avatar
Offline

In Hell I Burn
Joined: Tue Dec 30, 2003 12:08 am
Posts: 431
Krug wrote:
So has anyone finished those 3 and is still sharing them?


I have all 3, back in my shares now. I'll keep them there for as long as needed. :)


Top
 Profile  
PostPosted: Tue Apr 13, 2004 9:31 pm  Post subject:
Reply with quote
User avatar
Offline

Will Tear Your Soul Apart
Joined: Fri Sep 12, 2003 12:54 pm
Posts: 594
Location: Fuad Ramses Exotic Caterers
Thanks Kyle so in that case, the other 3 are now unshared and here's the next 3:

ed2k: Tales.from.the.Crypt.68.(s6e03).Whirlpool.TVRIP.HHAH.avi  [157.74 Mb] [Stats]
ed2k: Tales.from.The.Crypt.69(s6e04).Operation.Friendship.TVRIP.HHAH.avi  [176.88 Mb] [Stats]
ed2k: Tales.from.the.Crypt.70.(s6e05).Revenge.Is.The.Nuts.TVRIP.HHAH.avi  [198.11 Mb] [Stats]

Don't forget, I don't have 6x2, and Bonnie is going to be ripping 6x1, but I will be sticking the rest of series 6 up here...

Maybe somebody should clean this post up a bit and stick all the links together... Bonnie? :wink: :mrgreen:

[ Add all 3 links to your ed2k client ]


Top
 Profile  
PostPosted: Wed Apr 14, 2004 8:52 am  Post subject:
Reply with quote
User avatar
Offline

Master Of The Dead Donkey
Joined: Wed Sep 24, 2003 10:57 am
Posts: 743
Location: there
I don't have any sources for this one, and I haven't dl a single MB of it :

ed2k: Tales.from.the.Crypt.64.(s5e12).Half.-.Way.Horrible.TVRIP.HHAH.avi  [208.51 Mb] [Stats]

?????

Krug wrote:
Maybe somebody should clean this post up a bit and stick all the links together... Bonnie? :wink: :mrgreen:


OK, I'll do that when I post the next 3 eps :)


Top
 Profile  
PostPosted: Wed Apr 14, 2004 11:30 am  Post subject:
Reply with quote
User avatar
Offline

Will Tear Your Soul Apart
Joined: Fri Sep 12, 2003 12:54 pm
Posts: 594
Location: Fuad Ramses Exotic Caterers
Bonnie_Parker wrote:
I don't have any sources for this one, and I haven't dl a single MB of it :

Tales.from.the.Crypt.64.(s5e12).Half.-.Way.Horrible.TVRIP.HHAH.avi

?????

Hmm weird, you got the other two right?

Maybe you'll have more luck with Kyle sharing it. Queue up the next ones and see how they go. I can always put it back in if you're having problems. I don't think I have ever seen you in my queue though, but if I do, I'll give you a friend slot. Just don't worry when I start requesting your shared folder, it's just a weird side effect of mlDonkey friend slots, I don't actually want to see them...

I haven't finished your latest three eps either and I had a really slow time on the first three. Maybe there's some conflict between our clients?

Bonnie_Parker wrote:
Krug wrote:
Maybe somebody should clean this post up a bit and stick all the links together... Bonnie?

OK, I'll do that when I post the next 3 eps

:beerchug:


Top
 Profile  
PostPosted: Wed Apr 14, 2004 1:19 pm  Post subject:
Reply with quote
User avatar
Offline

Master Of The Dead Donkey
Joined: Wed Sep 24, 2003 10:57 am
Posts: 743
Location: there
Krug wrote:
Hmm weird, you got the other two right?


I completed one and second is almost finished.

Krug wrote:
I don't think I have ever seen you in my queue though, but if I do, I'll give you a friend slot


Thx in advance :)

Krug wrote:
Maybe there's some conflict between our clients?


I have no idea where the pb comes from... usually I enqueue the files and Clyde deals with the configuration thing :wacky: BTW, I see you as a source for the last files you posted, so I'll just be patient for the last one :roll:


Top
 Profile  
Display posts from previous:  Sort by  

All times are UTC [ DST ]

Post new topic Reply to topic  [ 325 posts ]  Go to page Previous  1, 2, 3, 4, 5 ... 17  Next


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Frontpage / Forums / Scifi


What's blood for, if not for shedding?