Torrent details for "The King of Queens 1998 Season 4 S04 1080p BluRay x264 AAC 2 0 R…" Log in to bookmark
Controls:
Category:
Language:
English
Total Size:
0 bytes
Info Hash:
1DC6EA5924A80AFA69B5CF16A5C71EBD5681C03D
Added By:
Added:
Oct. 24, 2023, 1:12 a.m.
Stats:
| Update
Genres:
File | Size |
---|
Thanks for rating :
zuluDROOG (3), jhp2025 (5), KingRagnar (5), PeakBadass (5), TWDGOTfan (5), LokiGOAT (5),
zuluDROOG (3), jhp2025 (5), KingRagnar (5), PeakBadass (5), TWDGOTfan (5), LokiGOAT (5),
Name
DL
Uploader
Size
S/L
Added
-
124.5 GB
[32
/
16]
2024-08-20
Uploaded by icecracked | Size 124.5 GB | Health [ 32 /16 ] | Added 2024-08-20 |
-
69.5 GB
[36
/
25]
2024-08-20
Uploaded by icecracked | Size 69.5 GB | Health [ 36 /25 ] | Added 2024-08-20 |
Title:
Genre:
Runtime:
0:22:00
Hours -
Rating:
7.4
Director:
Cast:
Kevin James, Leah Remini, Jerry Stiller…
Plot:
Deliveryman Doug Heffernan has a good life: He has a pretty wife (Carrie), a big television, and friends with which to watch it. Then Carrie's goofy, annoying father Arthur moves in with them.
The King of Queens
IMDB - https://www.imdb.com/title/tt0165581
NOTE
SOURCE: The King of Queens 1998 Season 4 S04 1080p BluRay x264 AAC 2 0 RCVR
-----------------------------------------------------------------------------------
GENERAL INFO
Genre: None
Director:
Stars: Kevin James, Leah Remini, Jerry Stiller
Plot: Deliveryman Doug Heffernan has a good life: He has a pretty wife (Carrie), a big television, and friends with which to watch it. Then Carrie's goofy, annoying father Arthur moves in with them.
Included subtitles
English
-----------------------------------------------------------------------------------
COVER
-----------------------------------------------------------------------------------
MEDIAINFO
#!/usr/bin/env bash
TEMPDIR='/tmp/ffmpeg-vcodec/.working'
shopt -s globstar
for f in *.mkv; do
VFORMAT=($(ffprobe -loglevel error -select_streams v:0 -show_entries stream=codec_name -of default=nw=1:nk=1 "$f"))
if ! [[ "${VFORMAT[0]}" == 'avc' ]]; then
echo -e '\n---> '$(basename "$f")': detected '${VFORMAT[0]}' in the default video stream\n---> Preparing to convert video codec accelerated with h264_nvenc (nVidia) to H264...\n\n'
/usr/bin/ffmpeg-424 -vsync 0 -hwaccel cuda -i "$f" -f srt -i "Subs/${f/mkv/en.srt}" -map 0:v:0 -map 0:a:0 -map 1:0 -disposition:v:0 default -disposition:a:0 default -disposition:s:0 0 -map_chapters -1 -dn -bsf:v "filter_units=remove_types=6" -preset slow -profile:v high -pix_fmt yuv420p -c:v h264_nvenc -metadata:s:a:0 language=eng -metadata:s:s:0 language=eng -c:a copy -c:s srt "$TEMPDIR/$f" || break
echo -e '\n---> Moving '$(basename "$f")' back to source directory name '$(pwd)'\n'
mv -ufv "$TEMPDIR/$(basename "$f")" "$(dirname "${f/x265/x264}")"
fi
done