Avatar Fire & Ash FS3D 1080p BluRay x264 5.1DD+

Category: Movies
Type: 3D
Language: English
Total Size: 8.0 GB
Uploaded By: pwnsweet
Downloads: 45938
Last checked: May. 21st '26
Date uploaded: May. 21st '26
Seeders: 27955
Leechers: 11624
DIRECT DOWNLOAD
INFO HASH: 2F1497001CAA485973FBBBE90C593BF54EC02B64

This release is only possible because the 3D Bluray disc was produced and sold. If sales are poor, they will not continue to produce 3D Bluray movies and then you will only be able to watch new 3D movies on Apple Store. A recent example of this is Inside Out 2, which can only be watched in 3D on the Apple Vision Pro. If you've downloaded this movie, you must buy the 3D Bluray disc, even if you have no way of watching the disc, otherwise we won't get anymore 3D movies on disc.

Presented in full resolution, frame-sequential 3D (FS3D). FS3D provides a higher quality per MB than the common Full-SBS or Full-OU formats. If your display can support FS3D, you should prefer it. Most LG passive 3DTV's support it and it's supported on VR platforms using the newest version of 4XVR!

This is a smaller release for all the people who complain that my other Avatar releases are too big. The quality is not as good as a result. Please be patient for a high quality (30GB+) release in the future.

If your display doesn't support this file, you can convert it to SBS or OU without re-processing using the method below.

Movie cover image

Movie cover image

Movie cover image


Code:

Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L4.2
Count of views : 2
MultiView_Layout : Both Eyes laced in one block (left eye first)
Format settings : CABAC / 4 Ref Frames
Format settings, CABAC : Yes
Format settings, Reference frames : 4 frames
Codec ID : V_MPEG4/ISO/AVC
Duration : 3 h 17 min
Bit rate : 5 000 kb/s
Width : 1 920 pixels
Height : 1 080 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 47.952 (48000/1001) FPS
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.050
Stream size : 6.89 GiB (87%)
Writing library : x264 core 165 r3222 b35605a
Encoding settings : cabac=1 / ref=4 / deblock=1:-1:-1 / analyse=0x3:0x133 / me=umh / subme=8 / psy=1 / psy_rd=1.00:0.15 / mixed_ref=1 / me_range=24 / chroma_me=1 / trellis=2 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-3 / threads=24 / lookahead_threads=6 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=5 / b_pyramid=2 / b_adapt=2 / b_bias=0 / direct=3 / weightb=1 / open_gop=0 / weightp=2 / keyint=480 / keyint_min=47 / scenecut=40 / intra_refresh=0 / rc_lookahead=96 / rc=2pass / mbtree=1 / bitrate=5000 / ratetol=1.0 / qcomp=0.70 / qpmin=0 / qpmax=69 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / frame-packing=5 / ip_ratio=1.40 / aq=3:0.80
Default : Yes
Forced : No
Color range : Limited
Matrix coefficients : BT.709
Audio
ID : 2
Format : E-AC-3 JOC
Format/Info : Enhanced AC-3 with Joint Object Coding
Commercial name : Dolby Digital Plus with Dolby Atmos
Codec ID : A_EAC3
Duration : 3 h 17 min
Bit rate mode : Constant
Bit rate : 768 kb/s
Channel(s) : 6 channels
Channel layout : L R C LFE Ls Rs
Sampling rate : 48.0 kHz
Frame rate : 31.250 FPS (1536 SPF)
Compression mode : Lossy
Stream size : 1.06 GiB (13%)
Title : DDP Atmos 5.1
Language : English
Service kind : Complete Main
Default : Yes
Forced : No
Complexity index : 16
Number of dynamic objects : 15
Bed channel count : 1 channel
Bed channel configuration : LFE
Dialog Normalization : -28 dB
compr : -0.28 dB
dmixmod : Lo/Ro
ltrtcmixlev : -3.0 dB
ltrtsurmixlev : -3.0 dB
lorocmixlev : -3.0 dB
lorosurmixlev : -3.0 dB
dialnorm_Average : -28 dB
dialnorm_Minimum : -28 dB
dialnorm_Maximum : -28 dB



If your passive 3D display doesn't support this file and you want to convert to Top/Bottom (best for passive 3DTV!), you can do this in Potplayer. Use Avisynth like this:

Movie cover image

If your passive 3D display is 1080p and supports 48/96Hz, use these settings:
Movie cover image

Code:

potplayer_source()
left = selecteven
right = selectodd
left1 = selecteven(separatefields(left))
left2 = selectodd(separatefields(left))
right1 = selectodd(separatefields(right))
right2 = selecteven(separatefields(right))
interleave(stackvertical(left1,right1), stackvertical(left2,right2))
assumeframebased
assumefps(48000/1001.0)


If your passive 3D display is 1080p and doesn't support 48/96Hz, use:

Code:

potplayer_source()
Stackvertical(Selecteven.spline16resize(1920,540),Selectodd.spline16resize(1920,540))
assumefps(24000/1001.0)


If your display uses battery powered glasses and supports 48/96Hz, convert to Side by Side using:

Code:


potplayer_source()
left = selecteven
right = selectodd
left1 = selecteven(separatecolumns(left,2))
left2 = selectodd(SeparateColumns(left,2))
right1 = selectodd(SeparateColumns(right,2))
right2 = selecteven(separatecolumns(right,2))
interleave(StackHorizontal(left1,right1), StackHorizontal(left2,right2))
assumeframebased
assumefps(48000/1001.0)


If your display uses battery powered glasses and doesn't support 48/96Hz, convert to Side by Side using:

Code:

potplayer_source()
Stackhorizontal(Selecteven.spline16resize(960,1080),Selectodd.spline16resize(960,1080))
assumefps(24000/1001.0)


To watch in 2D, use:

Code:

potplayer_source()
selecteven