Sign Up   |   Sign In  
8 Out of 10 CatsSNL50: The Homecoming ConcertSkymedBurden of GuiltReturn to OfficeAll Is WellMayfair WitchesUndercoverNCIS: SydneyUnforgottenThe Lord of the Rings: The War of the RohirrimBone TomahawkFlight RiskDexter: Original SinMatch of the DayBridget Jones: Mad About the BoyCSI: VegasPaddington in PeruThe GorgeYellowjacketsNosferatuAncient AliensThe OvalOne of Them DaysSeverance

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
Link(s) are dead.
Link(s) are dead.
Link(s) are dead.
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

  • 8 Out of 10 Cats
  • SNL50: The Homecoming Concert
  • Skymed
  • Burden of Guilt
  • Return to Office
  • All Is Well
  • Mayfair Witches
  • Undercover
  • NCIS: Sydney
  • Unforgotten
  • The Lord of the Rings: The War of the Rohirrim
  • Bone Tomahawk
  • Flight Risk
  • Dexter: Original Sin
  • Match of the Day
  • Bridget Jones: Mad About the Boy
  • CSI: Vegas
  • Paddington in Peru
  • The Gorge
  • Yellowjackets
  • Nosferatu
  • Ancient Aliens
  • The Oval
  • One of Them Days
  • Severance

Recent Comments

  • NoFearFCP: ======================================================== SkyMed S03E07 720p WEB H264-BeechyBoy =====...
  • NoFearFCP: ======================================================== SkyMed S03E07 720p WEB H264-BeechyBoy =====...
  • anto_c20:

    Please reupload

  • ppoo: @Admin Please, can you add "Unforgotten S06E01 480p WEB x264-RMTeam", "Unforgotten S0...
  • fun208:

    This is missing 8 minutes, or 14%, of the movie. Which parts of the movies is it missing?

  • fun208:

    This is missing 8 minutes, or 14%, of the movie. Which parts of the movies is it missing?

  • fun208:

    This is missing 8 minutes, or 14%, of the movie. Which parts of the movies is it missing?

  • ppoo: "Going Dutch S01E06 720p HDTV x264-SYNCOPY" is still missing...
  • ppoo: @Admin Please, can you add "Unforgotten S06E01 720p WEB H264-SKYFiRE", "Unforgotten S...
  • ppoo: @Admin Please, can you add "Unforgotten S06E01 720p WEB H264-SKYFiRE", "Unforgotten S...
  • Benny:

    this is episode 10 not 12

  • blueybaby:

    v

  • dmo: https://rmz.cr/enc_queue.php?enc=480pI have an eng dubbed & an Italian x264 version
  • waanaabe:

    @Awareman
    might go faster if you ask tru the encode queue (below quick links)

  • ralphgarman:

    Hoping the someone can post Joe Schmo S1 S2 S3.

  • yopo:

    "Going Dutch S01E06 720p HDTV x264-SYNCOPY" is missing...

  • Kitjst:

    Ep 05 480p is missing

  • mentalityx:

    Rad dude.

  • bitz:

    FIX THE DAMN SERVER ALREADY!

  • bitz: 720p hevc losing its appeal? and why so erratic?? the years sub was a foolish mistake if i always ha...

Archives