Announcements
- Please buy a RapidRAR account OR buy a NitroFlare account via THIS LINK
- Our Mirror Domains List >> rmzmirrors.com
- Guide: How to download from RapidRAR at maximum speed
12/28
2021
Giallo 2009 1080p BluRay x265-RARBG
[RR/NF/CU]
Size: 1.4GB mp4 HEVC (MAIN 10) (HEV1) / AAC (LC) (MP4A) HD 1920x1080

- Giallo (2009)
- Genre: Crime | Mystery | Thriller
- Directed By: Dario Argento, Alex Proyas
- Cast: Adrien Brody, Emmanuelle Seigner, Elsa Pataky
- MPAA Rate: R
- Country: Italy
- Original Language: English, Italian, Japanese
- Storyline: In Italy, a woman fears her sister has been kidnapped; Inspector Enzo Avolfi fears it's worse. They team up to rescue her from a sadistic killer known only as Yellow.
Video/Audio Codec: HEVC (MAIN 10) (HEV1) AAC (LC) (MP4A)
Video Resolution: 1920x1080
NitroFlare:
https://nitro.download/view/B89B7C829C5215A/Giallo.2009.1080p.BluRay.x265-RARBG.www.RapidMovieZ.com.mp4
3 Responses to "[RR/NF/CU] Giallo 2009 1080p BluRay x265-RARBG (1.4GB)"

10:46:29
my stupid perl script to rip srt and clean srt
first rip srt:
a=`basename "$1" .mkv`
t=`mkvinfo "$1"|perl -nle 'print "$1" if /Title: (.+)/'`
s=`mkvinfo "$1"|grep S_TEXT`
echo $s
# fix title
if [ "$t" != "" -a "$a" != "$t" ]; then
echo "$1: $t"
mkvpropedit "$1" --edit info --set "title=$a"
fi
# extract subs
if [ ! -z "$s" ]; then
# | + Codec ID: S_TEXT/ASS
# bash only
# if [[ $s == *"ASS"* ]]; then
# busybox, dash, ksh, ash
if [ -z "${s##*ASS*}" ]; then
mkvextract tracks "$1" $2:"$a.ass"
ffmpeg -i "$a.ass" "$a.tmp.srt"
tr -d '\r' < "$a.tmp.srt" > "$a.srt"
rm "$a.tmp.srt"
rm "$a.ass"
else
mkvextract tracks "$1" $2:"$a.srt"
fi
#remove font
#perl -i.bak -pe 's/<\/?font.*>//g' "$a.srt"
else
echo "no subs"
fi
then, clean:
type=`file "$1"`
echo "file type: $type"
if [ -z "$type" ]; then
exit 1
fi
# bash only
# if [[ $type == *"text"* ]]; then
# busybox, dash, ksh, ash
if [ ! -z "${type##*text*}" ]; then
echo "not a text file"
exit 2
fi
#remove CR
tr -d '\r' < "$1" > "$1".tmp
mv "$1".tmp "$1"
#remove font
perl -i.hi -pe 's/<\/?font[^<]*>//g' "$1"
#remove <i> and </i>
perl -i -pe 's/<\/?i>//g' "$1"
#remove {\an8}
perl -i -pe 's/^\{\\an8\}//g' "$1"
#remove Torrent downloaded from RARBG
perl -i -pe 's/.*RARBG.*//g' "$1"
#remove -MAN #2:
#perl -i -pe 's/(^-?[a-zA-Z\xc4\xe4]+.*:\s?)(.*)/$2/g' "$1"
perl -i -pe 's/(^-?[a-zA-Z\xc4\xe4]+.*:\s)(.*)/$2/g' "$1"
#replace I with l
#perl -i -pe 's/([a-zA-Z\xc4\xe4])(I+)/$1 . 'l' x length($2)/ge' $1
#remove (text):
perl -i -pe 's/^\-?\(.*\)\:?\s?//g' "$1"
#remove [text]:
perl -i -pe 's/^\s*\[.*\]\:?\s*//g' "$1"
#remove - [laughing]
perl -i -pe 's/^\-\s?\[.*\]\n//g' "$1"
#remove -[laughing] Yes, I did.
perl -i -pe 's/^\-\s?\[[\w]*\s?\]//g' "$1"
#remove Here. This is it. [man 1 clears throat]
perl -i -pe 's/\s?\[[\w\d ]*\]//g' "$1"
#remove - * I've cried
perl -i -pe 's/^\-\s?\*.*\n//g' "$1"
#remove ♪ dramatic music ♪
# ♪ Tom Petty's
# "Even the Losers" ♪
perl -i -pe 's/^\xe2\x99\xaa.*\n//g' "$1"
perl -i -pe 's/.*\xe2\x99\xaa\n//g' "$1"
# remove ¶¶ (c2b6)
#perl -i -pe 's/\s*\xc2\xb6\s*//g' "$1"
# remove ¶ Romance
# is mush ¶
perl -i -pe 's/^\xc2\xb6.*\n//g' "$1"
perl -i -pe 's/^.*\xc2\xb6\n//g' "$1"
# remove ♪
# ♪ Do you remember ♪
perl -i -pe 's/\xc3\xa2\xe2\x84\xa2\xc2\xaa//g' "$1"
# remove space before text
perl -i -pe 's/^\s+(.*)\n/$1\n/g' "$1"
#remove * music
perl -i -pe 's/^\*.*\n//g' "$1"
#remove music *
perl -i -pe 's/^[\w, ]*\*\n//g' "$1"
#remove (line 1,
# line 2)
#perl -i -00 -n -pe 's/^\d+\n\d\d:.*\n^\(.*\n.*\)\n//g' "$1"
#perl -i -pe 's/^\(.*\n.*\)//g' "$1"
perl -i -pe 's/^\([\w, ]*\n//g' "$1"
perl -i -pe 's/^[\w, ]*\)\n//g' "$1"
#remove [line 1,
# line 2]
# \x27 is single quote ', could use '\''
perl -i -pe 's/^\[[\w,"\x27 ]*\n//g' "$1"
perl -i -pe 's/^[\w, ]*\]\n//g' "$1"
#remove some text. (groans)
perl -i -pe 's/\(.*\)//g' "$1"
#remove lines with -- --
perl -i -pe 's/^-[- ]*\n//g' "$1"
#remove empty line in text
perl -i -0777 -n -pe 's/(\n[^\d]+)\n\n([^\d]+\n)/$1\n$2/g' "$1"
#remove empty line after time, before text
perl -i -0777 -n -pe 's/(\n\d\d:.*)\n\n([^\d]+\n)/$1\n$2/g' "$1"
#remove empty lines
perl -i -00 -n -pe 's/^\d+\n\d\d:.*\n\n//g' "$1"
#perl -i -0777 -n -pe 's/\n\d+\n\d\d:.*\n\n(\d+\n)/$1/g' "$1"
# not working. removes first line
# perl -00 -n -e 's/^\d+\n\d\d:.*\n\n//g; $cnt++ && s/\d+\n/$cnt\n/g && print $_ if $_ ne ""' koe.srt
Latest Episodes
Ninjago: Monstrosity S01E01
Versions:
60MB 71MB 82MB 89MB 330MB 505MB 1GBPuniru is a Kawaii Slime S02E05
Versions:
79MB 80MB 104MB 161MB 192MB 720MB 1.4GBStillwater S04E10
Versions:
93MB 265MB 1.8GBToilet-bound Hanako-kun S02E17
Versions:
67MB 68MB 85MB 142MB 163MB 719MB 1.4GBWitch Watch S01E18
Versions:
105MB 106MB 153MB 226MB 300MB 730MB 1.4GBYou and Idol Precure S01E08
Versions:
151MB 206MB 227MB 729MBYou and Idol Precure S01E07
Versions:
156MB 213MB 236MB 729MBLaw & Order Toronto: Criminal Intent S01 Pack
Versions:
9.9GBThe Institute S01E05
Versions:
167MB 168MB 216MB 267MB 566MB 1.9GB 3.7GBLaw & Order Toronto: Criminal Intent S02 Pack
Versions:
9.9GBThe Sandman S02 Pack
Versions:
14.6GBAlRawabi School for Girls S01 Pack
Versions:
10GBYou and Idol Precure S01E26
Versions:
158MB 160MB 217MB 225MB 426MB 728MB 1.4GBTo Be Hero X S01E18
Versions:
65MB 66MB 82MB 133MB 154MB 713MB 1.4GBThe Thundermans: Undercover S01E19
Versions:
114MB 145MB 222MB 480MBThe Thundermans: Undercover S01E18
Versions:
114MB 145MB 235MB 480MBAnnika S02E01
Versions:
178MB 341MB 1.1GBBeyond the Bar S01E01
Versions:
189MB 391MB 2.2GBMurdoch Mysteries S18 Pack
Versions:
10GB 19.2GBWith You and the Rain S01E05
Versions:
58MB 58MB 75MB 125MB 134MB 688MB 1.3GBMy Dress-Up Darling S02E17
Versions:
73MB 98MB 160MB 717MBRascal Does Not Dream of Bunny Girl Senpai S02E05
Versions:
58MB 126MB 1.4GBPrivate Tutor to the Duke's Daughter S01E05
Versions:
46MB 47MB 57MB 89MB 95MB 716MB 1.4GBThe Summer Hikaru Died S01E05
Versions:
82MB 313MB 931MBKaiju No. 8 S02E03
Versions:
143MB 389MB 1.3GBMy Dress-Up Darling S02E05
Versions:
72MB 176MB 1.4GBBad Girl S01E05
Versions:
65MB 149MB 864MBScooped Up by an S-Rank Adventurer! S01E05
Versions:
91MB 91MB 120MB 176MB 222MB 714MB 1.3GBThe Winning Try S01E04
Versions:
224MB 548MB 2.2GBLaw and the City S01E09
Versions:
199MB 616MB 1.8GBLaw and the City S01E08
Versions:
179MB 596MB 1.7GBDetective Conan S01E1170
Versions:
64MB 698MBAnne Shirley S01E18
Versions:
75MB 75MB 100MB 144MB 184MB 723MB 1.4GBNine Bodies in A Mexican Morgue S01 Pack
Versions:
3.6GB 6GBYAIBA: Samurai Legend S01E17
Versions:
123MB 344MB 875MBCinderella Closet S01E01
Versions:
94MB 215MB 734MBThe Thundermans: Undercover S01E01
Versions:
1.1GB 2.5GBBeyond the Gates S01E103
Versions:
172MB 173MB 241MB 324MB 526MB 1.1GB 2.3GBResident Alien S04E09
Versions:
140MB 142MB 177MB 220MB 424MB 1003MB 2GBLord of Mysteries S01E07
Versions:
143MB 143MB 190MB 250MB 665MB 1.9GBThe Bold and the Beautiful S38E221
Versions:
89MB 90MB 128MB 169MB 219MB 303MB 411MBEyes of Wakanda S01E04
Versions:
174MBBad Blood S02E01
Versions:
1.1GB 4.8GBBad Blood S01E01
Versions:
1.2GB 4.9GBRevival S01E08
Versions:
103MB 130MB 161MB 466MB 930MBThe Night Agent S02 Pack
Versions:
5.2GB 6.1GB 6.1GBHere We Go S03E03
Versions:
223MB 333MB 543MB 663MB 1.3GBBetrothed to My Sister's Ex S01E05
Versions:
79MB 80MB 102MB 173MB 184MB 739MB 1.4GBThe Nice Guy S01E06
Versions:
234MB 665MB 2.2GBThe Nice Guy S01E05
Versions:
187MB 541MB 2GBStillwater S01E06
Versions:
106MB 106MB 302MB 302MB 634MB 1.8GB 1.8GB 3.7GBFamily Law S04E02
Versions:
171MB 546MB 2.4GBFamily Law S04E01
Versions:
190MB 599MB 2.4GBEyes of Wakanda S01 Pack
Versions:
1.5GB 2.7GB 4.9GBSecrets of the Silent Witch S01E05
Versions:
62MB 63MB 79MB 123MB 143MB 724MB 1.4GBStillwater S01E10
Versions:
93MB 265MB 560MB 1.8GB 3.7GBWatari-kun's ****** Is About to Collapse S01E05
Versions:
55MB 55MB 55MB 69MB 99MB 127MB 127MB 714MB 1.4GB 1.4GBThe Winning Try S01E03
Versions:
258MB 655MB 2.5GBTougen Anki: Dark Demon of Paradise S01E04
Versions:
100MB 100MB 133MB 186MB 265MB 725MB 1.4GBTakopi's Original Sin S01E06
Versions:
60MB 61MB 78MB 119MB 159MB 678MB 1.3GBStillwater S04E05
Versions:
81MB 93MB 265MB 265MB 561MB 1.8GB 1.8GB 3.7GBStillwater S04E04
Versions:
85MB 98MB 98MB 290MB 290MB 290MB 618MB 1.8GB 1.8GB 1.8GB 3.6GBStillwater S04E03
Versions:
92MB 106MB 106MB 302MB 302MB 302MB 634MB 1.8GB 1.8GB 1.8GB 3.7GBStillwater S04E02
Versions:
84MB 97MB 97MB 283MB 283MB 284MB 612MB 1.8GB 1.8GB 1.8GB 3.6GBEyes of Wakanda S01E03
Versions:
97MB 147MB 349MB 1.1GBEyes of Wakanda S01E01
Versions:
112MB 386MB 1.3GBEyes of Wakanda S01E02
Versions:
109MB 169MB 380MB 1.3GBChief of War S01E02
Versions:
287MB 328MB 333MB 399MB 399MB 759MB 759MB 759MB 1.6GB 2.3GB 2.3GB 2.3GB 3.8GB 3.8GB 3.8GB 7.3GB 7.3GB 7.3GBChief of War S01E01
Versions:
378MB 423MB 434MB 518MB 978MB 978MB 1.7GB 3GB 3GB 3.9GB 3.9GB 7.6GB 7.6GBDigman! S02E02
Versions:
86MB 86MB 105MB 175MB 228MB 477MB 1.4GBBig City Greens S04E55
Versions:
19MB 27MB 41MB 127MBBig City Greens S04E56
Versions:
45MB 45MB 62MB 103MB 125MB 138MB 253MBFuria S01E05
Versions:
166MB 547MB 1.8GB 2.5GB 4.4GBBeyond the Gates S01E102
Versions:
134MB 136MB 181MB 285MB 383MB 1.1GB 2.5GBPati S02E06
Versions:
218MB 667MB 3GB 3.2GB 5.4GBBob's Burgers S15E19
Versions:
57MB 57MB 57MB 83MB 129MB 166MB 166MB 320MB 528MB 528MBBob's Burgers S15E20
Versions:
58MB 58MB 64MB 84MB 149MB 170MB 171MB 319MB 547MB 557MBBig City Greens S04E57
Versions:
48MB 48MB 66MB 110MB 130MB 146MB 254MBBig City Greens S04E58
Versions:
57MB 57MB 78MB 128MB 157MB 174MB 316MBSistas S09E03
Versions:
176MB 176MB 234MB 342MB 493MB 699MB 1.3GBChuck S02E17
Versions:
187MB 1.1GBBMF S04E08
Versions:
193MB 193MB 248MB 348MB 700MB 1.6GB 3GB 3GB 3.6GB 5.3GB 5.4GBThe Chi S07E12
Versions:
171MB 182MB 213MB 219MB 324MB 521MB 521MB 1.6GB 2GB 2.1GB 3.1GB 3.1GBDexter: Resurrection S01E05
Versions:
118MB 136MB 149MB 156MB 168MB 170MB 188MB 412MB 413MB 690MB 1.5GB 1.6GB 1.8GB 2.8GB 2.9GB 5.3GBLost S06E02
Versions:
214MB 279MB 355MB 1.1GBDragon Raja -The Blazing Dawn- S02E05
Versions:
111MB 311MB 1.4GBStillwater S04E01
Versions:
95MB 110MB 111MB 137MB 181MB 329MB 329MB 707MB 807MB 1.8GB 1.8GB 3.6GBYour Friends & Neighbors S01 Pack
Versions:
10.6GBFoundation S03E04
Versions:
208MB 224MB 225MB 226MB 254MB 269MB 521MB 521MB 1.1GB 1.2GB 1.3GB 1.3GB 1.6GB 3.6GB 3.6GB 7.3GB 7.3GBSmoke S01E07
Versions:
183MB 197MB 199MB 200MB 220MB 509MB 1.8GB 1.8GB 1.8GB 4.2GB 8.4GBAnd Just Like That... S03E10
Versions:
156MB 166MB 193MB 194MB 194MB 196MB 197MB 205MB 273MB 274MB 475MB 476MB 476MB 486MB 555MB 925MB 925MB 1.3GB 2.5GB 2.5GB 2.5GBPower Book III: Raising Kanan S04 Pack
Versions:
12.5GBSesame Street S55E29
Versions:
168MB 205MB 237MB 300MB 607MB 744MB 1.4GBStuGo S01E05
Versions:
75MB 305MB 695MBStuGo S01E14
Versions:
71MB 245MB 690MBThe Bold and the Beautiful S38E220
Versions:
81MB 81MB 110MB 173MB 213MB 249MB 426MBModern Family S01E09
Versions:
123MB 157MB 231MB 558MBStuGo S01E07
Versions:
84MB 296MB 740MBStuGo S01E08
Versions:
69MB 240MB 657MBStuGo S01E03
Versions:
75MB 268MB 697MBBump S05 Pack
Versions:
4.5GBStuGo S01E16
Versions:
83MB 292MB 761MBStuGo S01E18
Versions:
70MB 243MB 699MBStuGo S01E17
Versions:
69MB 253MB 690MBStuGo S01E06
Versions:
79MB 279MB 730MBStuGo S01E01
Versions:
93MB 331MB 840MBStuGo S01E10
Versions:
72MB 261MB 711MBStuGo S01E13
Versions:
85MB 291MB 750MBThe Water Magician S01E05
Versions:
69MB 152MB 1.4GBAll the Queen's Men S04E11
Versions:
172MB 173MB 197MB 264MB 382MB 877MB 1.6GBMuertos S.L. S02E02
Versions:
97MB 298MB 1.2GBMuertos S.L. S02E03
Versions:
117MB 360MB 1.3GBMuertos S.L. S02E01
Versions:
105MB 323MB 1.2GBMuertos S.L. S01E08
Versions:
96MB 294MB 1.2GBKamitsubaki City Under Construction S01E04
Versions:
86MB 251MB 1.4GBMuertos S.L. S02E06
Versions:
95MB 292MB 1.2GBMuertos S.L. S01E06
Versions:
101MB 310MB 1.2GBMuertos S.L. S02E05
Versions:
103MB 314MB 1.2GBMuertos S.L. S01E03
Versions:
94MB 290MB 1.2GBMuertos S.L. S01E07
Versions:
113MB 346MB 1.2GBMuertos S.L. S01E04
Versions:
95MB 291MB 1.2GBMuertos S.L. S01E05
Versions:
95MB 291MB 1.2GBAustin S02 Pack
Versions:
1.7GBMuertos S.L. S01E02
Versions:
88MB 269MB 1.1GBMuertos S.L. S01E01
Versions:
95MB 290MB 1.1GBMuertos S.L. S02E04
Versions:
101MB 307MB 1.2GBSolo Camping for Two S01E04
Versions:
78MB 173MB 1.4GBDandadan S02E05
Versions:
98MB 283MB 1.4GBWelcome to the Outcast's Restaurant! S01E05
Versions:
85MB 203MB 1.3GBDr. Stone S04E16
Versions:
115MB 325MB 1.4GBLet's Go Karaoke! S01E02
Versions:
81MB 206MB 1.4GBBeyond the Gates S01E101
Versions:
154MB 156MB 211MB 328MB 449MB 1.1GB 2.6GBGlass Heart S01 Pack
Versions:
5.5GB 9.3GBMarked S01 Pack
Versions:
2.2GB 3.5GBLeanne S01E06
Versions:
90MB 309MB 1.1GBLeanne S01 Pack
Versions:
3.2GB 6.2GBLeanne S01E04
Versions:
71MB 233MB 935MBLeanne S01E09
Versions:
77MB 275MB 991MBUnspeakable Sins S01 Pack
Versions:
6.3GB 11.1GBGlass Heart S01E09
Versions:
221MB 712MB 2.2GBMarked S01E06
Versions:
175MB 575MB 2GBMarked S01E04
Versions:
153MB 515MB 1.8GBMarked S01E05
Versions:
154MB 531MB 2GBMarked S01E03
Versions:
156MB 539MB 2.3GBMarked S01E01
Versions:
202MB 680MB 2.3GBMarked S01E02
Versions:
125MB 430MB 1.8GBGlass Heart S01E06
Versions:
188MB 592MB 1.6GBTwisted Metal S02E01
Versions:
178MB 201MB 536MB 541MB 1.5GB 1.5GB 2.2GB 2.4GB 4.1GB 4.1GBTwisted Metal S02E03
Versions:
105MB 117MB 317MB 332MB 933MB 934MB 1.5GB 1.8GB 3.4GB 3.5GBTwisted Metal S02E02
Versions:
158MB 163MB 163MB 184MB 185MB 186MB 210MB 215MB 276MB 278MB 444MB 496MB 496MB 501MB 934MB 1GB 1.3GB 1.3GB 1.8GB 1.8GB 1.9GB 1.9GB 3.3GB 3.3GBGlass Heart S01E10
Versions:
214MB 667MB 1.3GBGlass Heart S01E08
Versions:
161MB 532MB 1.8GBGlass Heart S01E03
Versions:
196MB 625MB 1.7GBGlass Heart S01E07
Versions:
192MB 602MB 1.7GBLeanne S01E07
Versions:
92MB 316MB 1.1GBGlass Heart S01E05
Versions:
154MB 490MB 1.7GBLeanne S01E14
Versions:
85MB 298MB 1GBLeanne S01E08
Versions:
94MB 325MB 1.2GBLeanne S01E02
Versions:
76MB 276MB 1.1GBLeanne S01E12
Versions:
107MB 386MB 1.3GBLeanne S01E15
Versions:
82MB 291MB 1.1GBLeanne S01E10
Versions:
79MB 268MB 1GBLeanne S01E11
Versions:
68MB 248MB 971MBLeanne S01E13
Versions:
111MB 381MB 1.2GBGlass Heart S01E02
Versions:
175MB 547MB 1.7GBLeanne S01E16
Versions:
85MB 292MB 1007MBLeanne S01E01
Versions:
74MB 253MB 986MBGlass Heart S01E01
Versions:
264MB 836MB 2.1GBLeanne S01E05
Versions:
73MB 256MB 924MBLeanne S01E03
Versions:
71MB 242MB 814MBGlass Heart S01E04
Versions:
175MB 566MB 1.9GBThe Sandman S02E12
Versions:
179MB 179MB 205MB 206MB 240MB 307MB 551MB 551MB 551MB 783MB 1.2GB 1.2GB 1.2GB 2.3GB 2.3GB 2.3GB 4.3GB 4.3GB 4.3GBStar Trek: Strange New Worlds S03E04
Versions:
154MB 154MB 179MB 179MB 202MB 265MB 282MB 540MB 540MB 540MB 1.5GB 3GB 3GB 3GB 3.1GB 5.2GBIt's Always Sunny in Philadelphia S17E05
Versions:
137MB 149MB 159MB 163MB 184MB 238MB 240MB 249MB 467MB 469MB 824MB 936MB 1.1GB 1.2GBThe Bold and the Beautiful S38E219
Versions:
116MB 117MB 163MB 214MB 288MB 373MB 548MBWashington Black S01 Pack
Versions:
8GBThe Prisoner S01 Pack
Versions:
2.4GB 2.7GB 5GBUntamed S01 Pack
Versions:
6.6GBThe Game S01 Pack
Versions:
4.1GBThe Devil's Hour S02 Pack
Versions:
6.7GBThe Bombing of Pan Am 103 S01 Pack
Versions:
8.1GBDuster S01 Pack
Versions:
8.8GBThe Devil's Hour S01 Pack
Versions:
8GBStick S01 Pack
Versions:
7.3GBThe Assassin S01 Pack
Versions:
6.6GBNew Saga S01E05
Versions:
88MB 213MB 1.3GBOnmyo Kaiten Re:Birth Verse S01E05
Versions:
117MB 310MB 1.3GBDealing with Mikadono Sisters Is a Breeze S01E05
Versions:
60MB 67MB 164MB 164MB 1.3GB 1.3GBI Was Reincarnated as the 7th Prince So I Can Take My Time Perfecting My Magical Ability S02E04
Versions:
158MB 423MB 1.4GBPanty & Stocking with Garterbelt S01E04
Versions:
137MB 419MB 939MBReborn as a Vending Machine, I Now Wander the Dungeon S02E05
Versions:
86MB 208MB 1.4GBThe Rising of the Shield Hero S04E04
Versions:
103MB 293MB 1.3GBKurebatesu -Majû no Ô to Akago to Kabane no Yûsha- S01E05
Versions:
79MB 227MB 1.4GBThe Librarians: The Next Chapter S01E11
Versions:
181MB 203MB 248MB 319MB 549MB 810MB 2.1GBUnspeakable Sins S01E03
Versions:
149MB 482MB 1.6GBLow Life S01E07
Versions:
202MB 202MB 277MB 327MB 728MB 974MB 1.8GBUnspeakable Sins S01E17
Versions:
124MB 406MB 1.4GBUnspeakable Sins S01E15
Versions:
126MB 409MB 1.5GBUnspeakable Sins S01E06
Versions:
119MB 391MB 1.5GBUnspeakable Sins S01E16
Versions:
124MB 409MB 1.4GBUnspeakable Sins S01E14
Versions:
142MB 464MB 1.5GBUnspeakable Sins S01E09
Versions:
134MB 435MB 1.5GBUnspeakable Sins S01E12
Versions:
129MB 421MB 1.5GBUnspeakable Sins S01E11
Versions:
146MB 470MB 1.6GBUnspeakable Sins S01E08
Versions:
122MB 401MB 1.4GBUnspeakable Sins S01E13
Versions:
136MB 437MB 1.5GBUnspeakable Sins S01E02
Versions:
152MB 488MB 1.6GBUnspeakable Sins S01E10
Versions:
124MB 411MB 1.5GBUnspeakable Sins S01E05
Versions:
128MB 424MB 1.5GBUnspeakable Sins S01E04
Versions:
131MB 426MB 1.6GBUnspeakable Sins S01E01
Versions:
190MB 607MB 1.9GBUnspeakable Sins S01E18
Versions:
130MB 421MB 1.5GBBeyond the Gates S01E100
Versions:
131MB 133MB 172MB 259MB 366MB 1.1GB 2.5GBCountdown S01E08
Versions:
152MB 153MB 176MB 193MB 270MB 479MB 479MB 1.2GB 1.3GB 2.3GB 2.3GB 4.6GBLow Life S01E06
Versions:
212MB 212MB 293MB 351MB 737MB 1GB 2GBThe Summer I Turned Pretty S03E04
Versions:
192MB 204MB 242MB 244MB 358MB 651MB 651MB 1.7GB 3.2GB 3.2GB 3.8GB 3.8GB 5.8GB 5.8GBRick and Morty S08E01
Versions:
104MB 141MB 199MB 500MBThe Buccaneers S02E07
Versions:
193MB 204MB 241MB 241MB 248MB 309MB 339MB 586MB 586MB 586MB 781MB 1.6GB 1.6GB 1.6GB 1.9GB 4.3GB 4.3GB 4.3GB 8.6GB 8.6GB 8.6GBAcapulco S04E03
Versions:
205MB 243MB 243MB 243MB 268MB 268MB 348MB 348MB 590MB 590MB 843MB 843MB 2GB 2GB 2.4GB 2.4GB 4.9GB 4.9GBSaving Grace S03 Pack
Versions:
31.1GBGrosse Pointe Garden Society S01 Pack
Versions:
11.5GB 12.4GBMotorheads S01 Pack
Versions:
11.8GBWatson S01 Pack
Versions:
12.6GBThe Bold and the Beautiful S38E218
Versions:
100MB 101MB 144MB 195MB 260MB 335MB 492MBGovernment Cheese S01 Pack
Versions:
6.8GBPati S02E01
Versions:
108MB 492MBTurkey! S01E04
Versions:
73MB 203MB 1.3GBPati S01E02
Versions:
154MB 202MB 269MB 434MBPati S01E01
Versions:
175MB 237MB 294MB 492MBThe Mill S02 Pack
Versions:
3.8GBOsomatsu-san S04E04
Versions:
87MB 235MB 1.4GBHead Over Heels S01E12
Versions:
223MB 624MB 3.7GBNecronomico and the Cosmic Horror Show S01E05
Versions:
84MB 195MB 1.4GBDetectives These Days Are Crazy! S01E05
Versions:
76MB 190MB 1.3GBA Couple of Cuckoos S02E04
Versions:
89MB 245MB 1.4GBRent-a-Girlfriend S04E05
Versions:
74MB 211MB 1.4GBRick and Morty S08 Pack
Versions:
2.2GBBeyond the Gates S01E99
Versions:
139MB 140MB 183MB 279MB 386MB 1.1GB 2.5GBThe Bold and the Beautiful S38E217
Versions:
67MB 67MB 90MB 126MB 162MB 196MB 322MBKaren Pirie S02 Pack
Versions:
4.2GBThe Wonderfully Weird World of Gumball S01E20
Versions:
55MB 166MB 547MBThe Wonderfully Weird World of Gumball S01E19
Versions:
64MB 174MB 535MBThe Wonderfully Weird World of Gumball S01E18
Versions:
58MB 166MB 531MBThe Wonderfully Weird World of Gumball S01E17
Versions:
68MB 200MB 563MBThe Wonderfully Weird World of Gumball S01E16
Versions:
56MB 163MB 518MBThe Wonderfully Weird World of Gumball S01E15
Versions:
71MB 194MB 566MBThe Wonderfully Weird World of Gumball S01E14
Versions:
53MB 151MB 509MBThe Wonderfully Weird World of Gumball S01E13
Versions:
57MB 164MB 543MBThe Wonderfully Weird World of Gumball S01E10
Versions:
64MB 191MB 551MBThe Wonderfully Weird World of Gumball S01E09
Versions:
67MB 195MB 567MBThe Wonderfully Weird World of Gumball S01E07
Versions:
60MB 170MB 543MBThe Wonderfully Weird World of Gumball S01E08
Versions:
63MB 181MB 541MBThe Wonderfully Weird World of Gumball S01E06
Versions:
75MB 209MB 567MBThe Wonderfully Weird World of Gumball S01E04
Versions:
60MB 170MB 543MBThe Wonderfully Weird World of Gumball S01E03
Versions:
55MB 169MB 547MBThe Wonderfully Weird World of Gumball S01E02
Versions:
81MB 230MB 572MBThe Wonderfully Weird World of Gumball S01E01
Versions:
68MB 193MB 599MBThe Wonderfully Weird World of Gumball S01E12
Versions:
77MB 222MB 588MBThe Wonderfully Weird World of Gumball S01E11
Versions:
64MB 183MB 559MBThe Wonderfully Weird World of Gumball S01E05
Versions:
67MB 194MB 566MBTeen Titans Go! S09E15
Versions:
46MB 52MB 72MB 98MB 113MB 147MB 187MB 359MBWylde Pak S01E15
Versions:
53MB 60MB 61MB 82MB 84MB 122MB 122MB 171MB 239MB 249MB 467MBWylde Pak S01E14
Versions:
52MB 59MB 60MB 85MB 86MB 124MB 124MB 174MB 236MB 248MB 452MBPhineas and Ferb S05E23
Versions:
51MB 58MB 58MB 78MB 80MB 120MB 120MB 146MB 161MB 168MB 281MBPhineas and Ferb S05E22
Versions:
50MB 57MB 57MB 76MB 77MB 116MB 116MB 147MB 165MB 172MB 287MBKiff S02E39
Versions:
34MB 104MB 293MBKiff S02E38
Versions:
45MB 129MB 325MBKiff S02E37
Versions:
40MB 127MB 316MBKiff S02E34
Versions:
55MB 165MB 354MBKiff S02E36
Versions:
43MB 138MB 325MBKiff S02E35
Versions:
31MB 103MB 299MBKiff S02E20
Versions:
42MB 128MB 340MBKiff S02E19
Versions:
41MB 84MB 122MB 266MB 323MB 641MBKiff S02E10
Versions:
35MB 102MB 318MBKiff S02E09
Versions:
44MB 128MB 331MBKiff S02E07
Versions:
31MB 94MB 313MBKiff S02E06
Versions:
34MB 104MB 390MBKiff S02E05
Versions:
41MB 124MB 426MBKiff S02E04
Versions:
39MB 113MB 327MBKiff S02E03
Versions:
38MB 118MB 350MBKiff S02E01
Versions:
48MB 139MB 389MBHell Motel S01E08
Versions:
119MB 140MB 140MB 145MB 152MB 190MB 371MB 423MB 423MB 1.1GB 1.1GB 2.8GB 2.8GBBig City Greens S04E54
Versions:
45MB 45MB 63MB 106MB 124MB 138MB 239MBBig City Greens S04E53
Versions:
44MB 44MB 61MB 97MB 120MB 136MB 240MBGrand Blue Dreaming S02E04
Versions:
80MB 81MB 100MB 171MB 183MB 726MB 1.4GBThe Handmaid's Tale S06 Pack
Versions:
9.8GBThe Handmaid's Tale S05 Pack
Versions:
10.6GBThe Handmaid's Tale S04 Pack
Versions:
10.8GBHead Over Heels S01E11
Versions:
204MB 562MB 3.3GBThe Handmaid's Tale S03 Pack
Versions:
15.2GBThe Handmaid's Tale S02 Pack
Versions:
16.5GBThe Handmaid's Tale S01 Pack
Versions:
12GBElsbeth S02 Pack
Versions:
19.4GBSakamoto Days S01E14
Versions:
103MB 318MB 968MBSword of the Demon Hunter: Kijin Gentosho S01E16
Versions:
56MB 132MB 971MBSummer Pockets S01E17
Versions:
80MB 81MB 99MB 154MB 180MB 714MB 1.4GBSee You Tomorrow at the Food Court S01E04
Versions:
62MB 62MB 90MB 133MB 164MB 715MB 1.4GBCrime S02E01
Versions:
1.5GB 5.2GBAfter the Flood S01E01
Versions:
2.4GB 5.1GBArchie S01E01
Versions:
4.3GB 5GBRick and Morty S08E10
Versions:
89MB 91MB 101MB 103MB 103MB 133MB 136MB 140MB 200MB 201MB 201MB 305MB 307MB 392MB 450MB 467MB 652MB 806MB 828MBThe Gilded Age S03E06
Versions:
152MB 154MB 154MB 177MB 183MB 193MB 197MB 213MB 214MB 535MB 536MB 557MB 1.2GB 1.6GB 1.9GB 4GB 4GBFuria S01E01
Versions:
121MB 166MB 209MB 355MBRangeen S01E04
Versions:
203MB 204MB 220MB 319MB 561MB 1.5GB 2.9GBHunter - Tootega Nahi, Todega S01 Pack
Versions:
5.3GBHunter - Tootega Nahi, Todega S02 Pack
Versions:
4.3GBOne Piece S14E1137
Versions:
107MB 282MB 1.3GBRangeen S01E09
Versions:
147MB 148MB 167MB 255MB 422MB 1.1GB 2.5GBHotel Inhumans S01E04
Versions:
76MB 76MB 97MB 140MB 194MB 711MB 1.3GBRangeen S01E06
Versions:
137MB 137MB 153MB 231MB 396MB 1.1GB 2.6GBRangeen S01E05
Versions:
164MB 165MB 187MB 287MB 468MB 1.2GB 2.6GBRangeen S01E08
Versions:
223MB 225MB 245MB 374MB 610MB 1.4GB 3.1GBRangeen S01E02
Versions:
185MB 186MB 207MB 315MB 517MB 1.3GB 2.7GBRangeen S01E07
Versions:
139MB 139MB 153MB 226MB 397MB 1.1GB 2.5GBRangeen S01E03
Versions:
153MB 154MB 171MB 273MB 423MB 1.1GB 2.5GBRangeen S01 Pack
Versions:
8.4GBRangeen S01E01
Versions:
179MB 179MB 198MB 301MB 496MB 1.4GB 3GBGachiakuta S01E03
Versions:
85MB 85MB 111MB 152MB 224MB 715MB 1.4GBUglymug, Epicfighter S01E04
Versions:
66MB 66MB 83MB 132MB 146MB 719MB 1.4GBGame Center Shoujo to Ibunka Kouryuu S01E04
Versions:
70MB 71MB 91MB 158MB 158MB 714MB 1.3GBNyaight of the Living Cat S01E04
Versions:
63MB 64MB 78MB 114MB 141MB 720MB 1.4GBApocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin S01E04
Versions:
61MB 135MB 1.3GBRuri Rocks S01E04
Versions:
117MB 118MB 171MB 172MB 329MB 719MB 1.4GBDekin no Mogura: The Earthbound Mole S01E04
Versions:
86MB 86MB 109MB 165MB 217MB 714MB 1.3GBPuniru is a Kawaii Slime S02E04
Versions:
79MB 79MB 105MB 163MB 193MB 718MB 1.4GBToilet-bound Hanako-kun S02E16
Versions:
74MB 75MB 98MB 159MB 187MB 719MB 1.4GBWitch Watch S01E17
Versions:
79MB 80MB 107MB 176MB 204MB 731MB 1.4GBNCIS S10 Pack
Versions:
14.2GBBunk'd S07 Pack
Versions:
15.5GBLaw & Order: Organized Crime S04 Pack
Versions:
11.7GBKinnikuman: Perfect Origin Arc S01 Pack
Versions:
4.1GBHacks S03 Pack
Versions:
5GBLink Click S02 Pack
Versions:
3GBBlue Exorcist S04 Pack
Versions:
3.6GBInvincible S01 Pack
Versions:
5.1GBInvincible S02 Pack
Versions:
5GBLink Click
Versions:
267MBLink Click S01 Pack
Versions:
2.6GBShoresy S03 Pack
Versions:
2.2GBSight Unseen S01 Pack
Versions:
4.6GBRogue Heroes S02 Pack
Versions:
5.4GBThe Institute S01E04
Versions:
168MB 196MB 198MB 221MB 269MB 555MB 555MB 1.4GB 3.6GB 3.6GBSouth Park S27E01
Versions:
585MB 636MBYou and Idol Precure S01E25
Versions:
171MB 173MB 232MB 255MB 455MB 729MB 1.4GBTo Be Hero X S01E17
Versions:
74MB 74MB 94MB 149MB 181MB 713MB 1.4GB
Recent Comments
- lightsron:
I noticed that a lot of movies 2025 have not been converted to 480p mkv. Why??
- rederi:
Tank you
- Cofox:
So thats a no then
- Kenny_McCormick: @arkadius And that's because of 10bit color? Are you sure about that? What's your proof? I have no p...
- waanaabe: LMFAO: 1h= 720. I'm imagining a line of idiots with their dicks out for just a few seconds... what a...
- arkadius:
@ffilou6 i have the latest VLC and 10bit doesn't work on there. it freezes partway through.
- arkadius:
Can we get 720px265 for Eyes Of Wakanda that's not 10bit
- rambaldi70: This is The Girl Next Door 2007https://www.imdb.com/title/tt0830558/https://rmz.cr/the-girl-nex...
- rambaldi70: This is The Girl Next Door 2007https://www.imdb.com/title/tt0830558/https://rmz.cr/the-girl-nex...
- PACMOM:
@Admin
"Here We Go S03E03 480p HDTV x264-RMTeam" is still missing... - mentalityx:
Good one.
- arzezio7: This release has the washed out colors because the source is in HDR and they forgot to remove the me...
- arzezio7:
Trimas!!
- arzezio7:
Trimas!!
- ffilou6: - @arkadius : 10bit x265 hevc videos work with vlc, mpv, mpc-hc, smplayer portable on my old compute...
- kang: @Admin Please, can you add "Here We Go S03E03 480p HDTV x264-RMTeam" (source: Here We Go S...
- kang: @Admin Please, can you add "Here We Go S03E03 480p HDTV x264-RMTeam" (source: Here We Go S...
- Kenny_McCormick:
RapidMoviez is getting so good!
- Kenny_McCormick: Well, my mind is blown. This one does contain both German and English audio as well as German and En...
- Kenny_McCormick: You know the audio language is German right? It also looks like the single subtitle would also defau...
Archives
- August 2025 (1566)
- July 2025 (20206)
- June 2025 (17376)
- May 2025 (21714)
- April 2025 (26698)
- March 2025 (21011)
- February 2025 (20743)
- January 2025 (17436)
- December 2024 (19303)
- November 2024 (24168)
- October 2024 (22154)
- September 2024 (18151)
- August 2024 (17518)
- July 2024 (20433)
- June 2024 (18973)
- May 2024 (18176)
- April 2024 (20371)
- March 2024 (23714)
- February 2024 (18537)
- January 2024 (17938)
- December 2023 (17839)
- November 2023 (20900)
- October 2023 (21979)
- September 2023 (21772)
- August 2023 (20714)
- July 2023 (21968)
- June 2023 (20204)
- May 2023 (24943)
- April 2023 (24061)
- March 2023 (25962)
- February 2023 (20722)
- January 2023 (20161)
- December 2022 (22204)
- November 2022 (23552)
- October 2022 (28774)
- September 2022 (24299)
- August 2022 (22080)
- July 2022 (22829)
- June 2022 (23715)
- May 2022 (23804)
- April 2022 (24343)
- March 2022 (21526)
- February 2022 (19075)
- January 2022 (22556)
- December 2021 (22578)
- November 2021 (25404)
- October 2021 (26418)
- September 2021 (22876)
- August 2021 (20886)
- July 2021 (21963)
- June 2021 (23326)
- May 2021 (26647)
- April 2021 (27176)
- March 2021 (27851)
- February 2021 (26600)
- January 2021 (25066)
- December 2020 (22092)
- November 2020 (23635)
- October 2020 (26007)
- September 2020 (17946)
- August 2020 (16889)
- July 2020 (18286)
- June 2020 (19961)
- May 2020 (21135)
- April 2020 (24839)
- March 2020 (26000)
- February 2020 (25330)
- January 2020 (26967)
- December 2019 (22456)
- November 2019 (26955)
- October 2019 (30151)
- September 2019 (22454)
- August 2019 (21593)
- July 2019 (25751)
- June 2019 (24074)
- May 2019 (30230)
- April 2019 (28346)
- March 2019 (28992)
- February 2019 (24469)
- January 2019 (27088)
- December 2018 (23685)
- November 2018 (30593)
- October 2018 (32067)
- September 2018 (25180)
- August 2018 (24879)
- July 2018 (22167)
- June 2018 (23127)
- May 2018 (26117)
- April 2018 (25584)
- March 2018 (27744)
- February 2018 (22696)
- January 2018 (27577)
- December 2017 (24445)
- November 2017 (27309)
- October 2017 (24737)
- September 2017 (22941)
- August 2017 (24067)
- July 2017 (23939)
- June 2017 (23738)
- May 2017 (26139)
- April 2017 (26435)
- March 2017 (24533)
- February 2017 (22959)
- January 2017 (21199)
- December 2016 (21092)
- November 2016 (25834)
- October 2016 (24119)
- September 2016 (21165)
- August 2016 (17655)
- July 2016 (21518)
- June 2016 (24832)
- May 2016 (25540)
- April 2016 (25459)
- March 2016 (25301)
- February 2016 (23746)
- January 2016 (20762)
- December 2015 (18653)
- November 2015 (22076)
- October 2015 (23195)
- September 2015 (21907)
- August 2015 (21326)
- July 2015 (17601)
- June 2015 (14209)
- May 2015 (14044)
- April 2015 (12656)
- March 2015 (15679)
- February 2015 (13764)
- January 2015 (8953)
- December 2014 (12203)
- November 2014 (13587)
- October 2014 (14943)
- September 2014 (12843)
- August 2014 (12092)
- July 2014 (12264)
- June 2014 (12448)
- May 2014 (13634)
- April 2014 (14339)
- March 2014 (13357)
- February 2014 (11031)
- January 2014 (11813)
- December 2013 (9358)
- November 2013 (11658)
- October 2013 (12573)
- September 2013 (10601)
- August 2013 (10769)
- July 2013 (11034)
- June 2013 (8646)
- May 2013 (10268)
- April 2013 (10125)
- March 2013 (9448)
- February 2013 (9018)
- January 2013 (7155)
- December 2012 (7966)
- November 2012 (8144)
- October 2012 (7501)
- September 2012 (6579)
- August 2012 (6379)
- July 2012 (4958)
- June 2012 (4685)
- May 2012 (4516)
- April 2012 (4908)
- March 2012 (4913)
- February 2012 (4055)
- January 2012 (3549)
- December 2011 (3391)
- November 2011 (3834)
- October 2011 (3672)
- September 2011 (2470)
- August 2011 (1039)
3
Comments