Sign Up   |   Sign In  
Fight or FlightThe AmateurNemá tajemstvíOff the GridThe RitualIndiana Jones and the Last CrusadeRaiders of the Lost ArkIndiana Jones and the Temple of DoomThe Phoenician Scheme28 Years LaterIndiana Jones and the Kingdom of the Crystal SkullThings Like ThisInheritanceI'm Still HereA Hen in the WindJeremiah JohnsonLa Dolce VitaWings of DesirePerfect DaysJawsSabrinaFinal Destination: BloodlinesHow to Train Your DragonThe Last RodeoA Minecraft Movie

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

Popular Movies

  • Fight or Flight
  • The Amateur
  • Nemá tajemství
  • Off the Grid
  • The Ritual
  • Indiana Jones and the Last Crusade
  • Raiders of the Lost Ark
  • Indiana Jones and the Temple of Doom
  • The Phoenician Scheme
  • 28 Years Later
  • Indiana Jones and the Kingdom of the Crystal Skull
  • Things Like This
  • Inheritance
  • I'm Still Here
  • A Hen in the Wind
  • Jeremiah Johnson
  • La Dolce Vita
  • Wings of Desire
  • Perfect Days
  • Jaws
  • Sabrina
  • Final Destination: Bloodlines
  • How to Train Your Dragon
  • The Last Rodeo
  • A Minecraft Movie

Recent Comments

  • ffilou6: video is okay if you change brightness, contrast and gamma of video player; audio = difficult to hea...
  • TheRandomOne:

    None of Season 3 480p episodes include English outside of 1st one

  • Wrapt:

    Thank U Team you are brilliant even awesome

  • Coronavirus: The females in this series are very insufferable. Woke feminist cancer. I hope the male alien regain...
  • Coronavirus: That series is quite good despite the woke stupid crew that the robot has to protect. You put with t...
  • Wrapt:

    Sorry Team none of the series links are working

  • waanaabe:

    This s not the original show?

  • jsmusiker: It's so frustrating when you pick a specific Format for a TV Series, like for example "1080p WE...
  • AegonVI:

    Bruuh you forgot E04 1080p

  • RealPoke: All the files other than RAWR are sourced from PBS so the frame rate is for North America's tv syste...
  • drorsabi1: @Admin please add Ironheart (2025-) season 1 episodes 1-3 https://www.imdb.com/title/tt1362...
  • ffilou6:

    I don't like this episode because liars among characters.

  • Kenny_McCormick: All of these uploads using the original Jive source are sus. The frame rate is wrong at 29.970 fps a...
  • rederi:

    Thaank you

  • madeesseetmoi:

    Links dead ????

  • yopo: @Admin !!! "Grantchester S10E01 720p WEB H264-JFF" & "Grantchester S10E07 720p WE...

Archives