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
Recent Comments
- wxe09104:
@Admin please add 'The Librarians The Next Chapter S01E11'
- Kenny_McCormick: @Fritz Same here. This is one that I might download: The Assassin S01E01 480p WEB x264-RMTeam (247MB...
- uncabrian:
RapidRar Please.
- uncabrian: Re-up on season 6 Longmire please. 480p will be fine or anything under 500 MB per episode please.
- Fritz: @Kenny_McCormick No not really, I only download from RMTeam or YTS. Good quality small download size...
- Kenny_McCormick: @Fritz You must be a fan of low quality and pixelated video. I just grabbed, at random, a 49 min TV ...
- Fritz: @timt Haven't seen you in a while. But agree with what you're saying. prefer files around 1.5 at 108...
- timt: @twinkletoes No one asked your opinion! Twinkle By definition is a person that goes around smelling ...
- twinkletoes: @Timt & @serafino... Might I remind you, "it's NOT the size of the ship but the motion of t...
- Kenny_McCormick: I was replying to the "Davy Crockett and the River Pirates" conversation. I used Flux and ...
- Denada:
Could you re-up the 480p of this pls, ClicknUp?
- waanaabe: @KennyHO@ didn't realize I was on the page itself! Makes sense I guess that if you;re working an old...
- Kenny_McCormick: @ffilou6 You have no idea what a WEB-DL is as opposed to a WEBRip. WEB-DLs come from Amazon, etc, in...
- serafino:
GPRS, 2 gigs for 480p ????????? COME ON!
- serafino: timt @ffilou6 Wasn't a question about the Type. Dumb ass! A statement about the large download size....
- Cofox:
Guys missed an episode
Rick And Morty S08E08 720p WEB HEVC x265-RMTeam - timt: @ffilou6 Wasn't a question about the Type. Dumb ass! A statement about the large download size. A wa...
- ffilou6: Comparing first episodes, I prefer anime series "hi score girl" from 2018. Bad for the ear...
- arzezio7:
trimas!!
- arzezio7:
trimas!!
Archives
- July 2025 (4576)
- June 2025 (4187)
- May 2025 (4893)
- April 2025 (7027)
- March 2025 (3721)
- February 2025 (4651)
- January 2025 (4501)
- December 2024 (5523)
- November 2024 (5573)
- October 2024 (3491)
- September 2024 (4426)
- August 2024 (4220)
- July 2024 (5010)
- June 2024 (3626)
- May 2024 (3432)
- April 2024 (4059)
- March 2024 (4169)
- February 2024 (5111)
- January 2024 (5796)
- December 2023 (5596)
- November 2023 (6717)
- October 2023 (8799)
- September 2023 (8508)
- August 2023 (7515)
- July 2023 (7401)
- June 2023 (6932)
- May 2023 (7827)
- April 2023 (7187)
- March 2023 (7277)
- February 2023 (5461)
- January 2023 (6304)
- December 2022 (6909)
- November 2022 (6945)
- October 2022 (7426)
- September 2022 (7398)
- August 2022 (7851)
- July 2022 (8602)
- June 2022 (7968)
- May 2022 (6178)
- April 2022 (6698)
- March 2022 (5950)
- February 2022 (5488)
- January 2022 (6420)
- December 2021 (7227)
- November 2021 (7111)
- October 2021 (7422)
- September 2021 (6301)
- August 2021 (6331)
- July 2021 (8361)
- June 2021 (8625)
- May 2021 (8952)
- April 2021 (10903)
- March 2021 (11323)
- February 2021 (10198)
- January 2021 (10756)
- December 2020 (9390)
- November 2020 (9423)
- October 2020 (10599)
- September 2020 (7250)
- August 2020 (5563)
- July 2020 (5200)
- June 2020 (3710)
- May 2020 (4785)
- April 2020 (6138)
- March 2020 (7112)
- February 2020 (7967)
- January 2020 (9551)
- December 2019 (8292)
- November 2019 (7683)
- October 2019 (7945)
- September 2019 (7816)
- August 2019 (6391)
- July 2019 (7289)
- June 2019 (5805)
- May 2019 (8078)
- April 2019 (6421)
- March 2019 (4838)
- February 2019 (4308)
- January 2019 (4909)
- December 2018 (5495)
- November 2018 (5399)
- October 2018 (5238)
- September 2018 (4982)
- August 2018 (4591)
- July 2018 (4763)
- June 2018 (4469)
- May 2018 (4344)
- April 2018 (3891)
- March 2018 (4322)
- February 2018 (4260)
- January 2018 (3577)
- December 2017 (3636)
- November 2017 (3490)
- October 2017 (3688)
- September 2017 (3462)
- August 2017 (3849)
- July 2017 (4570)
- June 2017 (5563)
- May 2017 (5825)
- April 2017 (5659)
- March 2017 (5408)
- February 2017 (4754)
- January 2017 (2493)
- December 2016 (3430)
- November 2016 (3670)
- October 2016 (3369)
- September 2016 (3656)
- August 2016 (3156)
- July 2016 (4568)
- June 2016 (6362)
- May 2016 (5608)
- April 2016 (6145)
- March 2016 (5329)
- February 2016 (5045)
- January 2016 (5108)
- December 2015 (4914)
- November 2015 (4196)
- October 2015 (4623)
- September 2015 (5471)
- August 2015 (5400)
- July 2015 (3215)
- June 2015 (2364)
- May 2015 (2541)
- April 2015 (2381)
- March 2015 (2559)
- February 2015 (2481)
- January 2015 (1868)
- December 2014 (3221)
- November 2014 (2733)
- October 2014 (3125)
- September 2014 (3141)
- August 2014 (2987)
- July 2014 (2999)
- June 2014 (2794)
- May 2014 (3235)
- April 2014 (3103)
- March 2014 (3295)
- February 2014 (3524)
- January 2014 (4231)
- December 2013 (3186)
- November 2013 (3427)
- October 2013 (3694)
- September 2013 (3372)
- August 2013 (4489)
- July 2013 (3850)
- June 2013 (2939)
- May 2013 (3872)
- April 2013 (3333)
- March 2013 (2763)
- February 2013 (2715)
- January 2013 (2545)
- December 2012 (3271)
- November 2012 (2361)
- October 2012 (2353)
- September 2012 (2333)
- August 2012 (2317)
- July 2012 (1807)
- June 2012 (1620)
- May 2012 (1390)
- April 2012 (1613)
- March 2012 (1601)
- February 2012 (1474)
- January 2012 (1331)
- December 2011 (1482)
- November 2011 (1354)
- October 2011 (1302)
- September 2011 (1140)
- August 2011 (410)
3
Comments