Sign Up   |   Sign In  
Love IslandWWE NXTChoppedBeyond the GatesCountdownUnspeakable SinsThe Bold and the BeautifulThe Young and the RestlessRick and MortyNewsroom TokyoThe Summer I Turned PrettyThe BuccaneersWatch What Happens Live with Andy CohenMasterChef AustraliaWWE RawBig City Greens60 MinutesThe Daily ShowBlue BloodsHouse HuntersNCISJeopardy!WWE Smackdown!The 11th HourJimmy Kimmel Live!

Announcements

12/28

2021

3

Comments

Giallo 2009 1080p BluRay x265-RARBG
[RR/NF/CU]
Size: 1.4GB mp4 HEVC (MAIN 10) (HEV1) / AAC (LC) (MP4A)  HD  1920x1080

Giallo
Download
File Container: MP4
Video/Audio Codec: HEVC (MAIN 10) (HEV1) AAC (LC) (MP4A)
Video Resolution: 1920x1080
Set RapidRAR as the default domain and hide all the others.
Dead RapidRAR link? Request a re-upload
Total requests: 0

3 Responses to "[RR/NF/CU] Giallo 2009 1080p BluRay x265-RARBG (1.4GB)"
12/28/21
16:33:19
EmilioEstevez

Thank you!

12/29/21
09:50:25
daemon

Mera Giallo Tutti Bene :)

12/29/21
10:46:29
daemon

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

Please Login to post a comment.
If you don't have any account, please Register.
  • Subscribe my Feeds
  • Facebook
Encoding Queue:  x264  x265

Latest Episodes

Popular TV Shows

  • Love Island
  • WWE NXT
  • Chopped
  • Beyond the Gates
  • Countdown
  • Unspeakable Sins
  • The Bold and the Beautiful
  • The Young and the Restless
  • Rick and Morty
  • Newsroom Tokyo
  • The Summer I Turned Pretty
  • The Buccaneers
  • Watch What Happens Live with Andy Cohen
  • MasterChef Australia
  • WWE Raw
  • Big City Greens
  • 60 Minutes
  • The Daily Show
  • Blue Bloods
  • House Hunters
  • NCIS
  • Jeopardy!
  • WWE Smackdown!
  • The 11th Hour
  • Jimmy Kimmel Live!

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