Sign Up   |   Sign In  
28 Years LaterPatiThe Life of ChuckWatch What Happens Live with Andy CohenWWE RawRick and MortyTrainwreck: Storm Area 51Rule BreakersThe Bold and the BeautifulThe Young and the RestlessLove IslandKiss of the DragonDusty Slay: Wet HeatMarked for DeathBlue BloodsMasterChef AustraliaDexter: ResurrectionThe Fantastic Four: First StepsHappy GilmoreLigayaThe Daily ShowJimmy Kimmel Live!Happy Gilmore 2The Tonight Show Starring Jimmy FallonMaterialists

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 Movies and TV Shows

  • 28 Years Later
  • Pati
  • The Life of Chuck
  • Watch What Happens Live with Andy Cohen
  • WWE Raw
  • Rick and Morty
  • Trainwreck: Storm Area 51
  • Rule Breakers
  • The Bold and the Beautiful
  • The Young and the Restless
  • Love Island
  • Kiss of the Dragon
  • Dusty Slay: Wet Heat
  • Marked for Death
  • Blue Bloods
  • MasterChef Australia
  • Dexter: Resurrection
  • The Fantastic Four: First Steps
  • Happy Gilmore
  • Ligaya
  • The Daily Show
  • Jimmy Kimmel Live!
  • Happy Gilmore 2
  • The Tonight Show Starring Jimmy Fallon
  • Materialists

Recent Comments

  • 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!!

  • Kenny_McCormick: @MrMayhemThey used to. It seems like everything is encoded using the last source video that is acqu...
  • ffilou6: @timt and @serafino : if you have eyes and read in the file name , "web-dl" = it means it ...
  • MrMayhem: @Kenny_McCormickIt was explained to me that the bots on this site are not capable of using 1080p sou...
  • serafino:

    GPRS.I agree with timt 100%! GET LOST!

  • Kenny_McCormick: Why are you using the lower quality source for the encodes? Source: The Sandman S02E08 720p WEB H264...
  • Denada: What is best in life? To crush your enemies, see them driven before you, and to see rhis 480p re-upl...

Archives