Quantcast
Channel: zeust – Hi10 Anime
Viewing all 126 articles
Browse latest View live

Devil Survivor 2 The Animation [10-bit, 720p]

$
0
0

ds13

Plot Summary
Mysterious invaders called the Septentriones arrive in Japan and begin attacking the country on a Sunday. To fight back, the heroes in Devil Survivor 2 signed a pact with the devil to become the Thirteen Devil Messengers. The Septentriones show up at least once a day and you have a time limit of seven days to defeat them.

V-Enc Settings: 10-bit x264 @ CRF 23
A-Enc Settings: AAC Audio @ q = 0.4
Average Filesize: ~175 MB / Ep.
Subbed by: Anime-Koi
Encoded by: zeust

Devil Survivor 2 The Animation – Episodes

Episode – 01 – (175 MiB): DDL | Torrent | Adf.ly
Episode – 02 – (158 MiB): DDL | Torrent | Adf.ly
Episode – 03 – (178 MiB): DDL | Torrent | Adf.ly
Episode – 04 – (181 MiB): DDL | Torrent | Adf.ly
Episode – 05 – (153 MiB): DDL | Torrent | Adf.ly
Episode – 06 – (178 MiB): DDL | Torrent | Adf.ly
Episode – 07 – (125 MiB): DDL | Torrent | Adf.ly
Episode – 08 – (168 MiB): DDL | Torrent | Adf.ly
Episode – 09 – (104 MiB): DDL | Torrent | Adf.ly
Episode – 10 – (131 MiB): DDL | Torrent | Adf.ly
Episode – 11 – (164 MiB): DDL | Torrent | Adfoc.us
Episode – 12 – (154 MiB): DDL | Torrent | Adfoc.us
Episode – 13 – (194 MiB): DDL | Torrent | Adfoc.us

Devil Survivor 2 The Animation - Patches

Patch – 01v2 – (50 KiB): DDL | Adf.ly
Patch – 03v2 – (09 MiB): DDL | Adf.ly

Devil Survivor 2 The Animation – Batch

===================================================
Batch Torrent: Episodes |01-13| (2.01 GiB): DDL | Adfoc.us
===================================================


Guide to CMD Encoding

$
0
0

light2xx
A guide for encoding through CLI (Command Line Interface)
(Update |12 July, 2013| : Dual Audio Commands)

GUI vs. Command Line (cmd)
The reason of using cmd is that it won’t restrict you. You can do everything that an encoder (x264.exe) can do. However, in a GUI you have to follow the GUI’s limitations. For instance you can’t use AQ-Method (3 and 4), as a GUI would not recognize / approve that command. As a result, you’ll either get an error or GUI will force the program to close.

And cmd is very easy to use and it’s very diverse. You just need to get used to it. (It gives a cool impression too xD. When you hear a hacker hacked an account, first thing you say is “awesome, he hacked it”, not why? or how? XD)

How to use Command Line

Things that you need to get before encoding via CLI.
1- ffmpeg.exe  – Put the (.exe) file after Dling, no installation.
2- 10-bit, x264.exe (video and audio encoder) – Put the (.exe) file after Dling, no installation.
3- neroAacEnc.exe (only audio encoder) – Put the (.exe) file after Dling, no installation.
4- mkvmerge.exe (Optional) – DL it, Install it and get the (.exe) from there.

I recommed that you use 32-bit, or x86, versions.

Creating a Command (Line)

- Command Line Interface will do some work only when you give some valid command to the system.

- Commands can be written on notepad, any text editor, or CLI window.

- If you are writing the commands on any text editor, it will probably be saved in (.txt) format by default. That won’t activate CLI. You’ll have to save your written code in (.bat) format. To do that simply hit “Save as” and at the end of the filename add (.bat) extension.

- If you run (double click) any (.bat) file, the commands written inside the (.bat) files would be forwarded to system and if they are valid they’ll be processed, otherwise CLI window will be closed automatically without doing anything.

- It means that all you need to do for CLI-encoding is write valid commands, save it in (.bat) file and run it later on. Encoding will start as according to what’s written in the (.bat) file.

General Info of writing Commands

I won’t talk about heavy and complex commands, rather just skim over general idea of command formatting.

Executable_file(.exe) commands_specific_to_that_(.exe)_file

Executable file could be anyone like mkvmerge.exe -or- x264.exe
To know what kind of commands / features can be used for a mentioned (.exe) file you need to have some knowledge. Like:

neroAacEnc.exe -ignorelength -lc -q 0.5 -if - -of encoded_audio.aac

It can be gained via browsing internet, personal experience, and logfiles etc.
As this is a guide, I’ll make sure to let you know the requisite commands to encode a video file.

Settings from Logfiles

Well, every (.exe) file has a logfile which explains the settings, or features, that can be done. To get the logfile of any (.exe.) via CMD, you’ll have to make a short command. This will also serve as a practical of making a (.bat) file.

Make a new folder, somewhere nice. Place following files in it.
- ffmpeg.exe
- x264.exe
- neroAacEnc.exe
- mkvmerge.exe

Open a notepad, and write this:

x264.exe --fullhelp
@pause

Save this file by hitting “Save as”. Name it whatever you wanna name it, but select the extension (.bat); after that, save it in the same folder. It will be appeared as a “Windows Batch File (.bat)”. Run it by double-clicking. You’ll get something like this.

x264 --fullhelp
x264 core:120 r2120 0c7dab9
Syntax: x264 [options] -o outfile infile
Infile can be raw (in which case resolution is required),
or YUV4MPEG (*.y4m),
or Avisynth if compiled with support (yes).
or libav* formats if compiled with lavf support (yes) or ffms support (yes).
Outfile type is selected by filename:
.264 -> Raw bytestream
.mkv -> Matroska
.flv -> Flash Video
.mp4 -> MP4 if compiled with GPAC support (yes)
Output bit depth: 10 (configured at compile time)

Options:

-h, --help List basic options
--longhelp List more options
--fullhelp List all options

Example usage:

Constant quality mode:
x264 --crf 24 -o (output) (input)
Two-pass with a bitrate of 1000kbps:
x264 --pass 1 --bitrate 1000 -o (output) (input)
x264 --pass 2 --bitrate 1000 -o (output) (input)

Lossless:
x264 --qp 0 -o (output) (input)

Maximum PSNR at the cost of speed and visual quality:
x264 --preset placebo --tune psnr -o (output) (input)

Constant bitrate at 1000kbps with a 2 second-buffer:
x264 --vbv-bufsize 2000 --bitrate 1000 -o (output) (input)

Presets:

--profile Force the limits of an H.264 profile
Overrides all settings.
- high10:
No lossless.
Support for bit depth 8-10.
- high422:
No lossless.
Support for bit depth 8-10.
Support for 4:2:0/4:2:2 chroma subsampling.
- high444:
Support for bit depth 8-10.
Support for 4:2:0/4:2:2/4:4:4 chroma subsampling.
--preset Use a preset to select encoding settings [medium]
Overridden by user settings.
- ultrafast:
--no-8x8dct --aq-mode 0 --b-adapt 0
--bframes 0 --no-cabac --no-deblock
--no-mbtree --me dia --no-mixed-refs
--partitions none --rc-lookahead 0 --ref 1
--scenecut 0 --subme 0 --trellis 0
--no-weightb --weightp 0
- superfast:
--no-mbtree --me dia --no-mixed-refs
--partitions i8x8,i4x4 --rc-lookahead 0
--ref 1 --subme 1 --trellis 0 --weightp 1
- veryfast:
--no-mixed-refs --rc-lookahead 10
--ref 1 --subme 2 --trellis 0 --weightp 1
- faster:
--no-mixed-refs --rc-lookahead 20
--ref 2 --subme 4 --weightp 1
- fast:
--rc-lookahead 30 --ref 2 --subme 6
--weightp 1
- medium:
Default settings apply.
- slow:
--b-adapt 2 --direct auto --me umh
--rc-lookahead 50 --ref 5 --subme 8
- slower:
--b-adapt 2 --direct auto --me umh
--partitions all --rc-lookahead 60
--ref 8 --subme 9 --trellis 2
- veryslow:
--b-adapt 2 --bframes 8 --direct auto
--me umh --merange 24 --partitions all
--ref 16 --subme 10 --trellis 2
--rc-lookahead 60
- placebo:
--bframes 16 --b-adapt 2 --direct auto
--slow-firstpass --no-fast-pskip
--me tesa --merange 24 --partitions all
--rc-lookahead 60 --ref 16 --subme 11
--trellis 2
--tune Tune the settings for a particular type of source
or situation
Overridden by user settings.
Multiple tunings are separated by commas.
Only one psy tuning can be used at a time.
- film (psy tuning):
--deblock -1:-1 --psy-rd :0.15
- animation (psy tuning):
--bframes {+2} --deblock 1:1
--psy-rd 0.4: --aq-strength 0.6
--ref {Double if >1 else 1}
- grain (psy tuning):
--aq-strength 0.5 --no-dct-decimate
--deadzone-inter 6 --deadzone-intra 6
--deblock -2:-2 --ipratio 1.1
--pbratio 1.1 --psy-rd :0.25
--qcomp 0.8
- stillimage (psy tuning):
--aq-strength 1.2 --deblock -3:-3
--psy-rd 2.0:0.7
- psnr (psy tuning):
--aq-mode 0 --no-psy
- ssim (psy tuning):
--aq-mode 2 --no-psy
- fastdecode:
--no-cabac --no-deblock --no-weightb
--weightp 0
- zerolatency:
--bframes 0 --force-cfr --no-mbtree
--sync-lookahead 0 --sliced-threads
--rc-lookahead 0
--slow-firstpass Don't force these faster settings with --pass 1:
--no-8x8dct --me dia --partitions none
--ref 1 --subme {2 if >2 else unchanged}
--trellis 0 --fast-pskip

Frame-type options:

-I, --keyint Maximum GOP size [250]
-i, --min-keyint Minimum GOP size [auto]
--no-scenecut Disable adaptive I-frame decision
--scenecut How aggressively to insert extra I-frames [40]
--intra-refresh Use Periodic Intra Refresh instead of IDR frames
-b, --bframes Number of B-frames between I and P [3]
--b-adapt Adaptive B-frame decision method [1]
Higher values may lower threading efficiency.
- 0: Disabled
- 1: Fast
- 2: Optimal (slow with high --bframes)
--b-bias Influences how often B-frames are used [0]
--b-pyramid Keep some B-frames as references [normal]
- none: Disabled
- strict: Strictly hierarchical pyramid
- normal: Non-strict (not Blu-ray compatible)
--open-gop Use recovery points to close GOPs
Only available with b-frames
--no-cabac Disable CABAC
-r, --ref Number of reference frames [3]
--no-deblock Disable loop filter
-f, --deblock Loop filter parameters [0:0]
--slices Number of slices per frame; forces rectangular
slices and is overridden by other slicing options
--slice-max-size Limit the size of each slice in bytes
--slice-max-mbs Limit the size of each slice in macroblocks
--tff Enable interlaced mode (top field first)
--bff Enable interlaced mode (bottom field first)
--constrained-intra Enable constrained intra prediction.
--pulldown Use soft pulldown to change frame rate
- none, 22, 32, 64, double, triple, euro (requires cfr input)
--fake-interlaced Flag stream as interlaced but encode progressive.
Makes it possible to encode 25p and 30p Blu-Ray
streams. Ignored in interlaced mode.
--frame-packing For stereoscopic videos define frame arrangement
- 0: checkerboard - pixels are alternatively from L and R
- 1: column alternation - L and R are interlaced by column
- 2: row alternation - L and R are interlaced by row
- 3: side by side - L is on the left, R on the right
- 4: top bottom - L is on top, R on bottom
- 5: frame alternation - one view per frame

Ratecontrol:

-q, --qp Force constant QP (0-81, 0=lossless)
-B, --bitrate Set bitrate (kbit/s)
--crf Quality-based VBR (-12-51) [23.0]
--rc-lookahead Number of frames for frametype lookahead [40]
--vbv-maxrate Max local bitrate (kbit/s) [0]
--vbv-bufsize Set size of the VBV buffer (kbit) [0]
--vbv-init Initial VBV buffer occupancy [0.9]
--crf-max With CRF+VBV, limit RF to this value
May cause VBV underflows!
--qpmin Set min QP [0]
--qpmax Set max QP [81]
--qpstep Set max QP step [4]
--ratetol Tolerance of ABR ratecontrol and VBV [1.0]
--ipratio QP factor between I and P [1.40]
--pbratio QP factor between P and B [1.30]
--chroma-qp-offset QP difference between chroma and luma [0]
--aq-mode AQ method [1]
- 0: Disabled
- 1: Variance AQ (complexity mask)
- 2: Auto-variance AQ (experimental)
--aq-strength Reduces blocking and blurring in flat and
textured areas. [1.0]

-p, --pass Enable multipass ratecontrol
- 1: First pass, creates stats file
- 2: Last pass, does not overwrite stats file
- 3: Nth pass, overwrites stats file
--stats Filename for 2 pass stats ["x264_2pass.log"]
--no-mbtree Disable mb-tree ratecontrol.
--qcomp QP curve compression [0.60]
--cplxblur Reduce fluctuations in QP (before curve compression) [20.0]
--qblur Reduce fluctuations in QP (after curve compression) [0.5]
--zones //... Tweak the bitrate of regions of the video
Each zone is of the form
,,
where
is either
q= (force QP)
or b= (bitrate multiplier)
--qpfile Force frametypes and QPs for some or all frames
Format of each line: framenumber frametype QP
QP is optional (none lets x264 choose). Frametypes: I,i,K,P,B,b.
K= depending on open-gop setting
QPs are restricted by qpmin/qpmax.

Analysis:

-A, --partitions Partitions to consider ["p8x8,b8x8,i8x8,i4x4"]
- p8x8, p4x4, b8x8, i8x8, i4x4
- none, all
(p4x4 requires p8x8. i8x8 requires --8x8dct.)
--direct Direct MV prediction mode ["spatial"]
- none, spatial, temporal, auto
--no-weightb Disable weighted prediction for B-frames
--weightp Weighted prediction for P-frames [2]
- 0: Disabled
- 1: Weighted refs
- 2: Weighted refs + Duplicates
--me Integer pixel motion estimation method ["hex"]
- dia: diamond search, radius 1 (fast)
- hex: hexagonal search, radius 2
- umh: uneven multi-hexagon search
- esa: exhaustive search
- tesa: hadamard exhaustive search (slow)
--merange Maximum motion vector search range [16]
--mvrange Maximum motion vector length [-1 (auto)]
--mvrange-thread Minimum buffer between threads [-1 (auto)]
-m, --subme Subpixel motion estimation and mode decision [7]
- 0: fullpel only (not recommended)
- 1: SAD mode decision, one qpel iteration
- 2: SATD mode decision
- 3-5: Progressively more qpel
- 6: RD mode decision for I/P-frames
- 7: RD mode decision for all frames
- 8: RD refinement for I/P-frames
- 9: RD refinement for all frames
- 10: QP-RD - requires trellis=2, aq-mode>0
- 11: Full RD: disable all early terminations
--psy-rd Strength of psychovisual optimization ["1.0:0.0"]
#1: RD (requires subme>=6)
#2: Trellis (requires trellis, experimental)
--no-psy Disable all visual optimizations that worsen
both PSNR and SSIM.
--no-mixed-refs Don't decide references on a per partition basis
--no-chroma-me Ignore chroma in motion estimation
--no-8x8dct Disable adaptive spatial transform size
-t, --trellis Trellis RD quantization. [1]
- 0: disabled
- 1: enabled only on the final encode of a MB
- 2: enabled on all mode decisions
--no-fast-pskip Disables early SKIP detection on P-frames
--no-dct-decimate Disables coefficient thresholding on P-frames
--nr Noise reduction [0]

--deadzone-inter Set the size of the inter luma quantization deadzone [21]
--deadzone-intra Set the size of the intra luma quantization deadzone [11]
Deadzones should be in the range 0 - 32.
--cqm Preset quant matrices ["flat"]
- jvt, flat
--cqmfile Read custom quant matrices from a JM-compatible file
Overrides any other --cqm* options.
--cqm4 Set all 4x4 quant matrices
Takes a comma-separated list of 16 integers.
--cqm8 Set all 8x8 quant matrices
Takes a comma-separated list of 64 integers.
--cqm4i, --cqm4p, --cqm8i, --cqm8p
Set both luma and chroma quant matrices
--cqm4iy, --cqm4ic, --cqm4py, --cqm4pc
Set individual quant matrices

Video Usability Info (Annex E):
The VUI settings are not used by the encoder but are merely suggestions to
the playback equipment. See doc/vui.txt for details. Use at your own risk.

--overscan Specify crop overscan setting ["undef"]
- undef, show, crop
--videoformat Specify video format ["undef"]
- component, pal, ntsc, secam, mac, undef
--range Specify color range ["auto"]
- auto, tv, pc
--colorprim Specify color primaries ["undef"]
- undef, bt709, bt470m, bt470bg
smpte170m, smpte240m, film
--transfer Specify transfer characteristics ["undef"]
- undef, bt709, bt470m, bt470bg, linear,
log100, log316, smpte170m, smpte240m
--colormatrix Specify color matrix setting ["???"]
- undef, bt709, fcc, bt470bg
smpte170m, smpte240m, GBR, YCgCo
--chromaloc Specify chroma sample location (0 to 5) [0]
--nal-hrd Signal HRD information (requires vbv-bufsize)
- none, vbr, cbr (cbr not allowed in .mp4)
--pic-struct Force pic_struct in Picture Timing SEI
--crop-rect Add 'left,top,right,bottom' to the bitstream-level
cropping rectangle

Input/Output:

-o, --output Specify output file
--muxer Specify output container format ["auto"]
- auto, raw, mkv, flv, mp4
--demuxer Specify input container format ["auto"]
- auto, raw, y4m, avs, lavf, ffms
--input-fmt Specify input file format (requires lavf support)
--input-csp Specify input colorspace format for raw input
- valid csps for `raw' demuxer:
i420, yv12, nv12, i422, yv16, nv16, i444, yv24, bgr, bgra, rgb
- valid csps for `lavf' demuxer:
yuv420p, yuyv422, rgb24, bgr24, yuv422p,
yuv444p, yuv410p, yuv411p, gray, monow, monob,
pal8, yuvj420p, yuvj422p, yuvj444p, xvmcmc,
xvmcidct, uyvy422, uyyvyy411, bgr8, bgr4,
bgr4_byte, rgb8, rgb4, rgb4_byte, nv12, nv21,
argb, rgba, abgr, bgra, gray16be, gray16le,
yuv440p, yuvj440p, yuva420p, vdpau_h264,
vdpau_mpeg1, vdpau_mpeg2, vdpau_wmv3,
vdpau_vc1, rgb48be, rgb48le, rgb565be,
rgb565le, rgb555be, rgb555le, bgr565be,
bgr565le, bgr555be, bgr555le, vaapi_moco,
vaapi_idct, vaapi_vld, yuv420p16le,
yuv420p16be, yuv422p16le, yuv422p16be,
yuv444p16le, yuv444p16be, vdpau_mpeg4,
dxva2_vld, rgb444le, rgb444be, bgr444le,
bgr444be, y400a, bgr48be, bgr48le, yuv420p9be,
yuv420p9le, yuv420p10be, yuv420p10le,
yuv422p10be, yuv422p10le, yuv444p9be,
yuv444p9le, yuv444p10be, yuv444p10le,
yuv422p9be, yuv422p9le, vda_vld, gbrp, gbrp9be,
gbrp9le, gbrp10be, gbrp10le, gbrp16be,
gbrp16le
--output-csp Specify output colorspace ["i420"]
- i420, i422, i444, rgb
--input-depth Specify input bit depth for raw input
--input-range Specify input color range ["auto"]
- auto, tv, pc
--input-res Specify input resolution (width x height)
--index Filename for input index file
--sar width:height Specify Sample Aspect Ratio
--fps <float|rational> Specify framerate
--seek First frame to encode
--frames Maximum number of frames to encode
--level Specify level (as defined by Annex A)
--bluray-compat Enable compatibility hacks for Blu-ray support

-v, --verbose Print stats for each frame
--no-progress Don't show the progress indicator while encoding
--quiet Quiet Mode
--log-level Specify the maximum level of logging ["info"]
- none, error, warning, info, debug
--psnr Enable PSNR computation
--ssim Enable SSIM computation
--threads Force a specific number of threads
--sliced-threads Low-latency but lower-efficiency threading
--thread-input Run Avisynth in its own thread
--sync-lookahead Number of buffer frames for threaded lookahead
--non-deterministic Slightly improve quality of SMP, at the cost of repeatability
--cpu-independent Ensure exact reproducibility across different cpus,
as opposed to letting them select different algorithms
--asm Override CPU detection
--no-asm Disable all CPU optimizations
--visualize Show MB types overlayed on the encoded video
--dump-yuv Save reconstructed frames
--sps-id Set SPS and PPS id numbers [0]
--aud Use access unit delimiters
--force-cfr Force constant framerate timestamp generation
--tcfile-in Force timestamp generation with timecode file
--tcfile-out Output timecode v2 file from input timestamps
--timebase <int/int> Specify timebase numerator and denominator
Specify timebase numerator for input timecode file
or specify timebase denominator for other input
--dts-compress Eliminate initial delay with container DTS hack

Filtering:

--vf, --video-filter //... Apply video filtering to the input file

Filter options may be specified in :
= format.

Available filters:
crop:left,top,right,bottom
removes pixels from the edges of the frame
resize:[width,height][,sar][,fittobox][,csp][,method]
resizes frames based on the given criteria:
- resolution only: resizes and adapts sar to avoid stretching
- sar only: sets the sar and resizes to avoid stretching
- resolution and sar: resizes to given resolution and sets the sar
- fittobox: resizes the video based on the desired constraints
- width, height, both
- fittobox and sar: same as above except with specified sar
- csp: convert to the given csp. syntax: [name][:depth]
- valid csp names [keep current]: i420, yv12, nv12, i422, yv16, nv16, i444, yv24, bgr, bgra, rgb
- depth: 8 or 16 bits per pixel [keep current]
note: not all depths are supported by all csps.
- method: use resizer method ["bicubic"]
- fastbilinear, bilinear, bicubic, experimental, point,
- area, bicublin, gauss, sinc, lanczos, spline
select_every:step,offset1[,...]
apply a selection pattern to input frames
step: the number of frames in the pattern
offsets: the offset into the step to select a frame
see: http://avisynth.org/mediawiki/Select#SelectEvery

Press any key to continue . . .

This shows all the settings / presets / features that x264.exe can provide.
Similarly, you can get the same info for other (.exe) files.

Command for neroAacEnc.exe help:

neroAacEnc.exe -help
@pause

Command for ffmpeg.exe help:

ffmpeg.exe -h full
@pause

It will prove quite eye straining at first, as there are hell of settings etc. Once you get used to it, it’ll become a routine work.
Good news you don’t have to go through this necessarily, I’ll tell you what commands to use to encode a file. Rest is for your own interest.

Commands for Encoding a File

I’ll keep things focused to CLI so I’ll just tell what command to write rather than detailing about why using what features etc.

a) Video Encoding – Command

x264 --level 5.1 --preset veryslow --tune animation --crf 23.0 --min-keyint 12 --scenecut 45 --bframes 8 --b-adapt 2 --ref 10 --weightp 2 --qpmin 10 --qpmax 51 --qcomp 0.6 --rc-lookahead 40 --direct auto --aq-mode 1 --aq-strength 0.8 --merange 24 --me umh --subme 10 --trellis 2 --psy-rd 0.40:0.60 --acodec none --output "Output.mkv" "Input.mkv"

- Input.mkv will be the file you want to encode.

- Output.mkv will be the file (video only) you’ll get after encoding is done. Name it whatever you want, except that it shouldn’t be the same as Input.mkv name. If the output name is same it will replace the input.mkv immediately and you’ll lost your input file resulting in no encoding and lost of input file.

Usually, you can encode audio by x264.exe, but I have disabled it. I use neroAacEnc.exe to encode audio separately.

b) Audio Encoding – Command

ffmpeg -i Input.mkv -f wav -| neroAacEnc -ignorelength -lc -q 0.4 -if - -of Output_Audio.aac

- Input.mkv is the same file you used for Video Encoding.

- Output_Audio.aac will be the file (audio only) you’d get after audio encoding.

b-extra) Dual-Audio Encoding
Dual Audio contains two audios. (Can’t believe I’m explaining this XD) Anyhow, to encode both audios you’ll have to use a setting that will pick both audios one by one.
To get a hold of it, you need to know a bit about:
- Tracks IDs in a file.
- ffmpeg mapping.
- Commanding ffmpeg to map it.

a) Tracks and IDs
Each file has more than one tracks and each track has a respective ID. ID can be seen via MediaInfo or MkvHeaderEditor.
For example a usual episode from a decent fansubbed group has following things.
- Video Track – ID 1
- Japanese Audio Track – ID 2
- English Subtitle Track – ID 3
(Chapters and fonts are not tracks, but mere attachments.)

If the source is a Dual Audio, then usually it has following things.
- Video Track – ID 1
- Japanese Audio Track – ID 2
- English Audio Track – ID 3
- English Subtitle Track – ID 4

b) ffmpeg mapping
ffmpeg has a ability to take more than one inputs simultaneously. Usually that is helpful while merging different tracks from more than one files.
ffmpeg also has a feature -map, that picks the tracks of file specifically.

Syntax:
-map<space><File Input order number>:<Track ID>
Example: A file with audio track ID 3 will be picked up with this value.
-map 0:2 (First file : Track with ID 3)
You must have noticed that for first file I have used 0 and for ID 3 I have used 2 in the map values. It’s because the indexing starts with 0, not 1. To explain it, see below samples.
-map 0:0 (First file : Track with ID 1)
-map 0:1 (First file : Track with ID 2)
-map 2:5 (3rd file : Track with ID 6)
-map x:y (x+1 file : Track with ID y+1), Generic form for understanding it.

c) Dual Audio – Commands

Let’s say I have a file with these details.
- Video Track – ID 1
- Jap Audio – ID 2 (-map 0:1)
- English Subtitles – ID 3
- English Signs – ID 4
- English Audio – ID 5 (-map 0:4)
To encode both audios I’ll use the following commands.

ffmpeg -i Input.mkv -map 0:1 -f wav -| neroAacEnc -ignorelength -lc -q 0.5 -if - -of Output_Audio_JAP.aac
ffmpeg -i Input.mkv -map 0:4 -f wav -| neroAacEnc -ignorelength -lc -q 0.5 -if - -of Output_Audio_ENG.aac

- The mapping will get the audio streams and will forward them to neroAacEnc.exe
- Keep in mind that if you map a wrong stream (like any video or subtitle) and forward it to nero, it’ll will give error as nero is for Audio only.

c) Merging files – Command

mkvmerge -o "Final_File.mkv" --language "0:jpn" --track-name "0:Hi10 Encode @ CRF 23" "Output.mkv" --no-chapters --language "0:jpn" --track-name "0:2.0 AAC-LC @ 0.4" "Output_Audio.aac" -A -D --language "2:eng" --track-name "2:Styled Subtitle (.ass)" "Input.mkv"

- Final_File.mkv will be file (including video, audio, subs, fonts, chapters) you’d get after merging.

- Output.mkv is the file you get from Video Encoding.

- Output_Audio.aac is the file you get from Audio Encoding.

- Input.mkv is the file you already have. (Source file you wanted to encode.)

Sample (.bat) file

This is the (.bat) file I used for Hataraku Maou-sama!

x264_32_tMod-10bit-all --level 5.1 --preset veryslow --tune animation --crf 23.0 --min-keyint 12 --scenecut 45 --bframes 8 --b-adapt 2 --ref 10 --weightp 2 --qpmin 10 --qpmax 51 --qcomp 0.6 --rc-lookahead 40 --direct auto --aq-mode 3 --aq-strength 0.8 --merange 24 --me umh --subme 10 --trellis 2 --psy-rd 0.40:0.60 --acodec none --stylish --output "Output.mkv" "Input.mkv"
ffmpeg -i Input.mkv -f wav -| neroAacEnc -ignorelength -lc -q 0.4 -if - -of Output_Audio.aac
mkvmerge -o "Final_File.mkv" --language "0:jpn" --track-name "0:Hi10 Encode @ CRF 23" "Output.mkv" --no-chapters --language "0:jpn" --track-name "0:2.0 AAC-LC @ 0.4" "Output_Audio.aac" -A -D --language "2:eng" --track-name "2:Styled Subtitle (.ass)" "Input.mkv"
@pause

- Note that I use x264_32_tMod-10bit-all (a better built), instead of regular x264.exe built. You don’t have to get it for now. Just play with regular built and when you get a hold of it, you can broaden your horizons.

- @pause avoids the CMD to close automatically after finishing. It also let us see if the process was successful or not. Otherwise the cmd closes so quickly that you don’t get to see if the command you ran was correct or not.


Batch Encoding

- No special trick, just copy paste the command of one encode for more than one files.

- But keep in mind that you’ll have to consider the naming. If you use Input.mkv for all input files and output.mkv for all output files, they’d replaced by latest files. That’s why I usually use numbering in files.

For example:
- Source of Hataraku Maou-sama Episode 10 = “HM-10.mkv
- V.Encode of Hataraku Maou-sama Episode 10 = “HM-10_Enc.mkv
- A.Encode of Hataraku Maou-sama Episode 10 = “HM-10_Aud.aac
- For merging, “(Hi10)_Hataraku_Maou_-_sama!_-_xx_(720p)_(FFF).mkv

You can choose your own naming technique whatsoever.

Tips

a) Keep Things Organized
- Make a Special folder for just encoding. -or- CLI-Encoding. Place all necessary (.exe) files there.
- I make (.bat) file for each Anime Series I encode.
- When a file is needed to be encoded, place that file in that special folder and run (.bat) file for that series.
- After encoding, get the final output file and place it wherever you like.

b) Never stick to being normal
- After getting the hold of CLI-encoding, try to experiment.
- My guide on encoding settings is the result of experimenting.
- If you are a CS or SE student, you’d surely find it interesting. But if you aren’t, well, it’s alway good to have a bit of a knowledge of computer.
- It’s a lot of fun. You can try any weird thing like putting your computer to sleep after encoding is done. (Nice trick for laptops, by the way.)
- In my opinion, if you are just encoding for sticking to some settings then there’s no fun in using CLI. Pro uses CLI because pro always seeks more and it’s easily achievable via CLI.

Off-topic

- There is a way to merge files with ffmpeg, but it seems to give stuttering error for EVR (custom) video renderer in MPC-HC.
- Cuticle Tantei Inaba
- Read the comments, and you’ll get the idea. As noobs don’t know how to change video renderer, they thing the file is corrupted / wrong. But it’s not.

- Side-Note: The cause of this stuttering is -lavf encoder. It’s a thing that really doesn’t need to be explained here. But if you are interested, let me know by commenting below. I’ll edit it by adding details.

_____________________________________________________
(Update |12 July, 2013| : Dual Audio Commands)

Guide to Avisynth | Avscripts

$
0
0

Overview
This guide’s for Avisynth, though unlike last time, I’m gonna keep it very simple.  I’ve made an Automated-OC script, and it requires an avscript to work. Means, before using that awesome script, you should get familiar with avscripts.
So dear encoders, especially, this is your first step to make God-like OCs. Make sure to get everything of this guide.
(The OC script will be released in my next guide, probably)

Things you need
This is what you need. It includes software as well as snapshots, explaining things in detail. So if you wanna know how to use a software, see the shots.
Avisynth | Avscripts

 

Avisynth
Avisynth is a platform to perform some very interesting things to any video. It’s also knows as frame-server. (It deals with frames very efficiently.)

Avisynth works via scripts and scripts can be written by any writer, but the extension need to be (.avs) to make it an avscript. I highly recommend to use AvsPmod to write avscripts because it will ease your job a lot.

Installation
Installation is very easy. Just get the installer(s) and install it somewhere decent. Or if it’s a .zip file, extract is somewhere decent.

AvsPmod
AvsPmod is an avscript writer; it has a lot of other features as well. One of the awesome feature is that it lets you preview the video before encoding anything. So you can see what would happen to you video. It’s not a part of Avisynth Installation, you’d have to install it separately.

Scripts
I once tried to explain the scripts’ functions but it failed pretty awesomely. (It confused the noobs.) So this time, I’ve decided to LET IT GO XD

Instead, I’ll give you the template file and you can simply create your own scripts following that. All you’ll need to change would be the filename.
Moreover, I found an AvsBatchScripter (ABS) that will create the batch of .avs file immediately. It will make use of a template as well. So you can simply use my template and enjoy.

Well template would be helpful to make you start things. However, commands like Trim() can’t be used in template because I don’t know where you want to trim things. But trimming can be done easily.

Scripts also make use a lot of filters. (Some are built in, some not.) These filters are placed in the plugins folder of Avisynth. Only those filters can be used that you have in your plugins folder. The more filters you have, the more can be used in scripts.
Frankly, it’s been a while I’ve got Avisynth, so I myself have no idea what’s built-in and what I got from internet.
To make it easy for all of you, I’m providing you with my plugins folder. Simply get the things of my plugins folder and place or replace them in your plugins folder. (I’ve got some awesome filters, so be THANKFUL).

 

Trimming
First make an avscript using my template manually or inserting it in the ABS program.
Now open that .avs file with AvsPmod and press F5, or go to Video>>Refresh Preview

You’ll get a video preview, you can zoom in or zoom out by Video>>Zoom
At the bottom you can see the seeker, that can seek through the whole runtime.
At the left bottom, there’s a little box containing frame number; you can input your own frame number.
When you are seeking through, you can use the keyboard arrows buttons to go to adjusted frame.

(Like when you play video with MPC-HC or VLC, and want to skip an OP of any episode, you guess the runtime of 1min:30sec (approx.) and all.) Similarly, you can guess the start or end of OP/ED via seeker in AvsPmod and then use keyboard arrows to go to EXACT frame.
When you’ve got the exact frame, apply trim function.
Video>>Trim Selection Editor>>Show Trim Selection Editor.

Refer to Snapshots to get a more detailed idea.

Now that you’ve done the trimming to your need, save it. Now your avscript (.avs file) is ready to go through different phases and give you an awesome OC at the end.

Guide to MPC-HC Filters and Shaders

$
0
0

gintoki9xx

Overview
This guide is focused on some helpful filters that you can apply while playing any video on MPC-HC. In the end, I’ll also write few facts about built-in filters of VLC. Well let’s get started.

MPC-HC Filters
You can apply filters via different methods in MPC-HC. Some are written below.
- Use MPC Standalone Filters. (Like Haali Media Splitter or DirectVobSub)
- Use LAV Video Decoder in MPC-HC and exploit built-in filters of LAV Video Decoder. (Like deinterlacing etc. You can edit that stuff in LAV settings)
- Use madVR in MPC-HC and edit filter settings in madVR interface.
- Use FFDShow Raw Video Filter and exploit the supported filters there. (You DON’T need to use FFDShow Video Decoder)
- You can use other filters as well via MPC-HC’s External filters option, but only DirectShow filters are supported.
- Use built in Shaders of MPC-HC.

MPC-HC Decoders
Well people usually use MPC-HC for video with following decoders:
- FFDShow Video Decoder + EVR (custom) | For low spec system.
-or-
- LAV Video Decoder + madVR (aka Madshi Video Renderer) | For a decent+ system.

Just to make it clear, LAV Video Decoder + madVR is better than any combo. (Except the combo I’m gonna tell you here) :)

First let’s clear the madVR and LAV Video Decoder facts.

madVR:
- Use the settings recommended by the authors of the guides you find over the internet. You don’t need to go for any funny shit like I usually do.
- Use BT.709/601 curve in device calibration and device’s gamma processing. I find it better than power curve.
- Don’t use Lancoz, Spline and Jinc filter in processing section. It will cause stuttering. Better use Bicubic or Softcubic.

LAV Video Decoder:
- If you see the settings window of LAV, you’ll find a lot of things that can be checked or unchecked. Try to keep things at default unless you know what you are doing.
- Hardware acceleration can be helpful, but only go for it if you have some hardware to accelerate :) (I meant, don’t overdo it XD)

gintoki9xx

 

To this point, you probably knew the above stuff already. Let’s get to the point where you won’t have much know-how.

Artefacts
With madVR + LAV, you don’t need to do much as it pretty much gives a pretty good video quality.

But still you’d find some artefacts that are left uncovered by them, and the most common of them is:
- Banding issues.

Banding issues:
There are two kind of banding.
- Simple Banding
- Color Banding

Banding happens when the gradient is not smooth. If the gradient has only one shade then it’s simple banding. (Like a dark background, where the only color is gray or dark gray.) But if the gradient is not smooth and it contains more than one color, it will pretty much cause color banding. (Like, in anime, if you see a lamp light at a dark scene; it will make a rainbow-like gradient.)
Keep in mind that if the gradient is smooth then there’d be no banding. But if you see rainbow-like patches when there’s no banding, it’d be because of another artefact. So there’s a difference between color banding and rainbow-patches. (All above expanation was strictly verbal, I haven’t gone into any technical details, and I don’t think being technical is a good approach here.)

Removal of Banding:
You can remove banding via 2 methods.
- Encode the video with hi-profile filters. (Flawless and adorable video as a result.)
- Use filters in MPC-HC without encoding. (Video won’t be as awesome as it could be by filter-encoding, but still the results were quite satisfying, in my opinion.)

How to encode with filters applied is ditched in this guide so let’s go for MPC-HC filters.

FFDShow
Neither madVR nor LAV Video Decoder provides any countermeasure for banding. But fortunately, FFDShow provides a special Debanding filter as well as Grain filter. To use FFDShow filters in MPC, you’ll have to enable FFDShow Raw Video Filter.
- Open MPC-HC.
- Go to Options…
- Go to External Filters Section.
- Hit the Add Filter.
- Find the FFDShow Raw Video Filter, select it and hit okay.
(Above filter is available only if you have FFDShow installed in your system. It’s a very common decoder and I think everyone will have it installed already.)

 

In case you don’t have it, install it.
- Try to get an installer (.exe), instead of extracted version (.zip), from the internet.
- When you install it, it might ask you to set the priority for FFDShow. You don’t need to prioritize it necessarily. But if you do it, it will be preferred over LAV Video Decoder whenever you’ll play any video. If you are using LAV Video Decoder, then it’s better not to prioritize FFDShow.
- After installation, you’ll have the following things available:
1- FFDShow Audio Decoder
2- FFDShow Audio Processor
3- FFDShow Video Decoder
4- FFDShow Raw Video Filter
5- FFDShow Subtitle Filter

If you are using the (FFDShow Video Decoder + EVR) setup, then you don’t need to select FFDShow Raw Video Filter; FFDShow Video Decoder lets you apply filters too.
If you are using the (madVR + LAV Video Decoder) setup, then DON’T select the FFDShow Video Decoder, but select FFDShow Raw Video Filter. This way, your video will be played by LAV Video Decoder and filters would be applied by FFDShow.

FFDShow Filters:
It provides a lot of filters and you won’t have to apply them every time. For example if the video suffers from interlacing, you can simply apply Yadif and let the other filters rest in peace.
I’m gonna explain only few filters that will be used the most.
- Deband
- Noise/Grain
- Sharpen
- Avisynth

Deband: It provides 2 parameters. Threshold: The greater the value, the better would be the result. Radius: The greater the value, the greater debanding will occur, but it blurs out the video at very higher values. So make sure not to use insane values.

Noise: It provides a lot of options and parameters. Just use the values shown in the snap. Don’t use other weird shit here; it will get messy. Though you are free to test (carefully). ________________________________________________________________________ My advice is to make a decent combo of Deband and Noise to get rid of banding in videos. Using Deband alone with higher values will reduce the details so it’s better to use decent values with a bit of grain addition.

Sharpen: It provides many kind of sharpening logarithms, but my advice is not to use any. (They aren’t that effective.) Instead use sharpening shader. (I’ll explain it below.)

Avisynth: This is a very interesting feature; it lets you use avisynth filters by writing down valid commands. Like using:
- daa() (For strong antialiasing and deinterlacing)
- gradfun2db() (For grain addition to remove banding artifact)
- Briefly, everything that Avisynth can come up with can be used and hence applied. However, the stronger the filter, the more the video will lag. (Though, it’s expected.)

Well, still it’s better to use decent filters without encoding things.

 

 

Miscellaneous:
There are other filters like anti-aliasing and subtitling.

Aliasing is very rare in HD sources. There are filters like naa() or daa() in avisynth.

Subtitle filter is very versatile, though not as sturdy as xy-vsfilter, but as most of you must be using xy-vsfilter (via DirectVobSub), there’s no need to explain it.

_______________________________________________________________________

Shaders:
Shaders are built in filters compiled to be used in MPC-HC. You can apply and edit them like shown in the snap.
DON’T edit them as it will mess up things.

I’ve rectangled the decent shaders.
- Sharpen Complex
- Sharpen Complex 2
- BT.601->BT.709
- Sharpen

 

Other shaders are for fun, like inverting colors or embossing and stuff.

Sharpen/Sharpen Complex/Sharpen Complex 2: Thrice sharpen the video to some extent. You can’t choose the value yourself, so you’d have to bear with it. Sharpen shader is the strongest. I suggest to use Sharpen Complex 2; it’s decent and doesn’t over-sharpen the video.

BT.601->BT.709: In simple language, it’s a logarithm conversion. Using this will make coloring a bit likeable. Fyi, the same feature is present in madVR->Device Calibration. If you’ve activated the BT.709 curve in madVR, then the shader won’t have any significant effect as it has already been activated by madVR. But if you haven’t activated it in madVR, or if you don’t use madVR, you can activate it via shader.

Information: Shaders are built in and are compiled in for MPC-HC. You can see the 2 .dll files in Window no. 4. These files are responsible for shaders.

Advice: According to my experience and tests, the best way to improve video quality is to apply filters via Avisynth and ENCODE the video with them.
But of course you can’t encode everything, even if you are an encoder.
-or-
Maybe the video you’re watching isn’t suffering from any artefact that badly but still there’s some work need to done; so you think encoding with filters isn’t really worth it.
-or-
Maybe you don’t know encoding.
-or-
Maybe the video is already a re-encode and you don’t wanna waste your time on it.

My point: In the end, the FFDShow filters will come handy. As an encoder, I’m quite surprised by the diversity these filters can provide. More surprise is that you can almost get rid of annoying and resilient artefacts (like banding) WITHOUT encoding it. Though, it won’t be as awesome as if it were encoded, but considering the total work-load, it’s astonishing.
These days almost everything is in HD, so you won’t find much artefacts. To be honest, artefacts are still ubiquitous, it’s just that people don’t really notice because of HD quality. Sometimes, you get unlucky and find sturdy artefacts even in BD-rips. (Thanks to bad rippers.) Encoding a BD even without any filter is very slow, let alone filtering it to remove the artefact.
That’s where the FFDShow filters will be most helpful.

VLC lib filters (Story-Mode):
It started with my urge to do something messy. I was re-watching OHSHC Ep01-15 in MPC-HC, I caught up by the “Shaders” in MPC-HC. I thought, “I always see this thing when I open MPC-HC; what the hell is this anyway?” Well I opened the shader window and applied sharpening and it worked. I was like “Ho….. Interesting”. I started looking for deinterlacing and other complex filters but unfortunately built-in shaders didn’t have anything like that.
Then I started testing VLC because I’d seen post-processing option there as well. Then I tested VLC’s built in filters. It had deinterlacing and other awesome filters (like gradfun2db() which I usually use for debanding.) They worked pretty well and I was like “OMG, doesn’t that feature make it better than MPC?”, but after coming up with weird shit I managed to apply filters in MPC-HC too (coming up with the use of FFDShow Raw Video Filter.)
Well then I tested the FFDShow filters and unfortunately, VLC lost to it. FFDShow is way too versatile and it is better than VLC’s built in filters.
For your informtaion, if you go to VLC’s advanced settings -> Video Section, you’d find some amazing filters and features. In short, not bad. But as compared to MPC-HC’s FFDShow, it’s not a good choice.
That’s how the momentary triumph of VLC over MPC-HC came to an eternal end XD

Btw, OHSHC is awesome. Voice acting in it just makes me speechless every time. :)

THE END OF GUIDE: This is pretty much it. Enjoy watching anime, now in even better quality and better concept. :)

Wonderful Days (Blue Sky) [10-bit, BD 1080p | BD 720p]

$
0
0

Wonderful Days (Blue Sky) [10-bit, BD 1080p | BD 720p]

Plot Summary
“How long has it been raining? Forever. Not forever, no! For a hundred years. They say billions of people once lived on the Earth. When the temperatures rose, the great cities fell, and this rain came, this terrible toxic rain. Our ancestors saw it coming, the catastrophe. They built Ecoban, the first living city, genetically engineered to survive in a poisonous environment. Ecoban became our refuge, our salvation. Survivors came by the thousands, begging to be let in. But out ancestors turned them away, left them to die in the wasteland. The ones who survived became our workers, mining the carbonite fields to feed our Ecoban. Diggers we call them. The Diggers need us, we need them, everybody wins. But some win more than others.” — from intro In the year 2142, the Earth has deteriorated into a murky hell due to an environmental disaster. An elite group of humans has built a fortified, “self-growing” city called Ecoban that converts the surrounding pollution into energy. Meanwhile, hordes of downtrodden survivors subsist outside the city in sprawling hovels under perpetually dark and cloudy skies. As the pollution levels slowly fall off, though, the threatened Ecoban leadership hatches the dastardly plan of wrecking the world beyond the city to secure more pollution for energy.

V-Enc Settings: 10-bit x264 @ CRF 23 (1080p) | CRF 22 (720p)
A-Enc Settings: AAC Audio @ q = 0.4
Subbed by: Chibi-chan
Encoded by: zeust

Sky Blue

Movie – 1080p - (1.72 GiB): DDL | bc.vc
Movie – 720p - (975 MiB): DDL | bc.vc

Sky Blue – Batch

=================================
Batch Torrent
– (2.67 GiB): DDL
=================================

Rurouni Kenshin [10-bit, Dual Audio, DVD 480p | BD 720p | BD 1080p]

$
0
0

kenshin4

Plot Summary
Ten years after the start of the Meiji Era, a Rurouni wanders into Tokyo to find a new life with his new friends. Vowing never to kill, he tries to escape his fate as the greatest killer of the Edo dynasty. An old menace threatens the new Meiji Era, the villian is Shishio Makoto, the successor to the Hitokiri Battousai who was supposed to have died in the Boshin Wars. Shishio and his Juppon Gatana are ready to start a new revolution to correct the wrong doings of the Meiji Government and also to avoid colonization.

Video Details
[Fansubber] | Audio Details

1-Seisou Hen: 10-bit, BD 1080p, BD 720p, Dual Audio
[HACK-JOB] | JAP 5.1 AAC-LC @ 0.5, ENG 2.0 AAC-LC @ 0.5

2- Tsuioku Hen: 10-bit, BD 1080p, BD 720p, Dual Audio
[HACK-JOB] | JAP 5.1 AAC-LC @ 0.5, ENG 2.0 AAC-LC @ 0.5

3- Ishinshishi e no Requiem: 10-bit, BD 1080p, BD 720p, Dual Audio
[Doutei] | JAP 5.1 AAC-LC @ 0.5, ENG 2.0 AAC-LC @ 0.5

4- Shin Kyoto Hen (Part-1): 10-bit, BD 1080p, BD 720p, Mono Audio
[Taka-THORA] | JAP 5.1 AAC-LC @ 0.5

4- Shin Kyoto Hen (Part-2): 10-bit, BD 1080p, BD 720p, Mono Audio
[AHSH] | JAP 5.1 AAC-LC @ 0.5

5- LIVE ACTION: 10-bit, BD 1080p, BD 720p, Mono Audio
[YYeTs] | JAP 5.1 AAC-LC @ 0.5

6- Episodes: 10-bit, DVD 480p, Dual Audio
[Dragon-Fox] | JAP 2.0 AAC-LC @ 0.4, ENG 2.0 AAC-LC @ 0.4

Rurouni Kenshin – OVA’s | Specials | Movies | Arcs | *CRF Value(s)*|

BD 1080p Release

Rurouni Kenshin – Seisou HenPart 1 – (640 MiB) : DDL *|CRF 24|*
Rurouni Kenshin – Seisou HenPart 2 – (865 MiB) : DDL *|CRF 24|*

Rurouni Kenshin – Tsuioku HenAct 1 – (396 MiB) : DDL *|CRF 24|*
Rurouni Kenshin – Tsuioku HenAct 2 – (427 MiB) : DDL *|CRF 23|*
Rurouni Kenshin – Tsuioku HenAct 3 – (724 MiB) : DDL *|CRF 21|*
Rurouni Kenshin – Tsuioku HenAct 4 – (840 MiB) : DDL *|CRF 21|*

Rurouni Kenshin – Ishinshishi e no Requiem – (1.81 GiB) : DDL *|CRF 25|*

Rurouni Kenshin – Shin Kyoto HenPart 1 – (777 MiB) : DDL *|CRF 23|*
Rurouni Kenshin – Shin Kyoto HenPart 2 – (1.44 MiB) : DDL *|CRF 23|*

Rurouni Kenshin – LIVE ACTION2012 – (2.63 GiB) : DDL *|CRF 24|*

BD 720p Release

Rurouni Kenshin – Seisou HenPart 1 – (419 MiB) : DDL *|CRF 22|*
Rurouni Kenshin – Seisou HenPart 2 – (562 MiB) : DDL *|CRF 22|*

Rurouni Kenshin – Tsuioku HenAct 1 – (357 MiB) : DDL *|CRF 20|*
Rurouni Kenshin – Tsuioku HenAct 2 – (326 MiB) : DDL *|CRF 20|*
Rurouni Kenshin – Tsuioku HenAct 3 – (363 MiB) : DDL *|CRF 20|*
Rurouni Kenshin – Tsuioku HenAct 4 – (407 MiB) : DDL *|CRF 20|*

Rurouni Kenshin – Ishinshishi e no Requiem – (1.11 GiB) : DDL *|CRF 24|*

Rurouni Kenshin – Shin Kyoto HenPart 1 – (439 MiB) : DDL *|CRF 22|*
Rurouni Kenshin – Shin Kyoto HenPart 2 – (878 MiB) : DDL *|CRF 22|*

Rurouni Kenshin – LIVE ACTION2012 – (1.76 GiB) : DDL *|CRF 22|*

DVD 480p Release - Dual Audio

Rurouni Kenshin – Episodes

Episode – 01 – (126 MiB): DDL | bc.vc
Episode – 02 – (116 MiB): DDL | bc.vc
Episode – 03 – (127 MiB): DDL | bc.vc
Episode – 04 – (111 MiB): DDL | bc.vc
Episode – 05 – (132 MiB): DDL | bc.vc
Episode – 06 – (124 MiB): DDL | bc.vc
Episode – 07 – (121 MiB): DDL | bc.vc
Episode – 08 – (116 MiB): DDL | bc.vc
Episode – 09 – (125 MiB): DDL | bc.vc
Episode – 10 – (129 MiB): DDL | bc.vc
Episode – 11 – (133 MiB): DDL | bc.vc
Episode – 12 – (132 MiB): DDL | bc.vc
Episode – 13 – (134 MiB): DDL | bc.vc
Episode – 14 – (139 MiB): DDL | bc.vc
Episode – 15 – (132 MiB): DDL | bc.vc
Episode – 16 – (130 MiB): DDL | bc.vc
Episode – 17 – (129 MiB): DDL | bc.vc
Episode – 18 – (131 MiB): DDL | bc.vc
Episode – 19 – (135 MiB): DDL | bc.vc
Episode – 20 – (135 MiB): DDL | bc.vc
Episode – 21 – (141 MiB): DDL | bc.vc
Episode – 22 – (153 MiB): DDL | bc.vc
Episode – 23 – (125 MiB): DDL | bc.vc
Episode – 24 – (118 MiB): DDL | bc.vc
Episode – 25 – (129 MiB): DDL | bc.vc
Episode – 26 – (128 MiB): DDL | bc.vc
Episode – 27 – (137 MiB): DDL | bc.vc
Episode – 28 – (127 MiB): DDL | bc.vc
Episode – 29 – (110 MiB): DDL | bc.vc
Episode – 30 – (121 MiB): DDL | bc.vc
Episode – 31 – (117 MiB): DDL | bc.vc
Episode – 32 – (122 MiB): DDL | bc.vc
Episode – 33 – (124 MiB): DDL | bc.vc
Episode – 34 – (141 MiB): DDL | bc.vc
Episode – 35 – (126 MiB): DDL | bc.vc
Episode – 36 – (122 MiB): DDL | bc.vc
Episode – 37 – (123 MiB): DDL | bc.vc
Episode – 38 – (124 MiB): DDL | bc.vc
Episode – 39 – (126 MiB): DDL | bc.vc
Episode – 40 – (137 MiB): DDL | bc.vc
Episode – 41 – (129 MiB): DDL | bc.vc
Episode – 42 – (126 MiB): DDL | bc.vc
Episode – 43 – (117 MiB): DDL | bc.vc
Episode – 44 – (115 MiB): DDL | bc.vc
Episode – 45 – (127 MiB): DDL | bc.vc
Episode – 46 – (122 MiB): DDL | bc.vc
Episode – 47 – (121 MiB): DDL | bc.vc
Episode – 48 – (126 MiB): DDL | bc.vc
Episode – 49 – (123 MiB): DDL | bc.vc
Episode – 50 – (111 MiB): DDL | bc.vc
Episode – 51 – (118 MiB): DDL | bc.vc
Episode – 52 – (136 MiB): DDL | bc.vc
Episode – 53 – (127 MiB): DDL | bc.vc
Episode – 54 – (125 MiB): DDL | bc.vc
Episode – 55 – (120 MiB): DDL | bc.vc
Episode – 56 – (121 MiB): DDL | bc.vc
Episode – 57 – (124 MiB): DDL | bc.vc
Episode – 58 – (131 MiB): DDL | bc.vc
Episode – 59 – (138 MiB): DDL | bc.vc
Episode – 60 – (139 MiB): DDL | bc.vc
Episode – 61 – (115 MiB): DDL | bc.vc
Episode – 62 – (121 MiB): DDL | bc.vc
Episode – 63 – (119 MiB): DDL | bc.vc
Episode – 64 – (124 MiB): DDL | bc.vc
Episode – 65 – (120 MiB): DDL | bc.vc
Episode – 66 – (122 MiB): DDL | bc.vc
Episode – 67 – (118 MiB): DDL | bc.vc
Episode – 68 – (120 MiB): DDL | bc.vc
Episode – 69 – (117 MiB): DDL | bc.vc
Episode – 70 – (115 MiB): DDL | bc.vc
Episode – 71 – (110 MiB): DDL | bc.vc
Episode – 72 – (114 MiB): DDL | bc.vc
Episode – 73 – (117 MiB): DDL | bc.vc
Episode – 74 – (130 MiB): DDL | bc.vc
Episode – 75 – (123 MiB): DDL | bc.vc
Episode – 76 – (109 MiB): DDL | bc.vc
Episode – 77 – (122 MiB): DDL | bc.vc
Episode – 78 – (124 MiB): DDL | bc.vc
Episode – 79 – (109 MiB): DDL | bc.vc
Episode – 80 – (110 MiB): DDL | bc.vc
Episode – 81 – (106 MiB): DDL | bc.vc
Episode – 82 – (108 MiB): DDL | bc.vc
Episode – 83 – (124 MiB): DDL | bc.vc
Episode – 84 – (135 MiB): DDL | bc.vc
Episode – 85 – (128 MiB): DDL | bc.vc
Episode – 86 – (127 MiB): DDL | bc.vc
Episode – 87 – (133 MiB): DDL | bc.vc
Episode – 88 – (136 MiB): DDL | bc.vc
Episode – 89 – (131 MiB): DDL | bc.vc
Episode – 90 – (137 MiB): DDL | bc.vc
Episode – 91 – (140 MiB): DDL | bc.vc
Episode – 92 – (136 MiB): DDL | bc.vc
Episode – 93 – (137 MiB): DDL | bc.vc
Episode – 94 – (155 MiB): DDL | bc.vc
Episode – 95 – (114 MiB): DDL | bc.vc

Rurouni Kenshin – Batch

Batch – Series – (11.6 GiB): DDL | bc.vc
Batch – Specials / OVA’s / Movies / Arcs – (17 GiB): DDL | bc.vc

Sankarea [10-bit, TV 720p | BD 1080p]

$
0
0

SankareaPlot Summary
Furuya is obsessed with zombies. He collects any figurine, watches any movie, and plays any game with the living dead, and even claims to only be interested in zombie girls. When his cat dies, Furuya begins trying to raise it from the dead using an ancient book of the occult. But what will happen when he sees the idol of a nearby school wishing to die and be reborn as a different person?

HDTV 720p Release

Encoding Settings: 10-bit x264 @ CRF 23, AAC Audio
Average Filesize: ~120 MB / Ep.
Subbed by: Eveyuu
Encoded by: 0men

Sankarea – Episodes

OAD – 00 – (058 MB): DDL | bc.vc
Episode – 12 – (108 MB): DDL | bc.vc
Episode – 11 – (107 MB): DDL | bc.vc
Episode – 10 – (091 MB): DDL | bc.vc
Episode – 09 – (118 MB): DDL | bc.vc
Episode – 08 – (122 MB): DDL | bc.vc
Episode – 07 – (121 MB): DDL | bc.vc
Episode – 06 – (191 MB): DDL | bc.vc
Episode – 05 – (102 MB): DDL | bc.vc
Episode – 04 – (101 MB): DDL | bc.vc
Episode – 03 – (133 MB): DDL | bc.vc
Episode – 02 – (111 MB): DDL | bc.vc
Episode – 01 – (140 MB): DDL | bc.vc

Sankarea – Batch

Batch Torrent – (1.5 GiB): DDL | bc.vc

BD 1080p -OC- Release

Encoding Settings: 10-bit x264_tMod @ CRF 23, AAC Audio
Average Filesize: ~170 MB / Ep.
Ripped by: Doki
Encoded by: zeust

Sankarea – Episodes

Episode – 01 – (186 MiB): DDL | bc.vc
Episode – 02 – (156 MiB): DDL | bc.vc
Episode – 03 – (206 MiB): DDL | bc.vc
Episode – 04 – (156 MiB): DDL | bc.vc
Episode – 05 – (158 MiB): DDL | bc.vc
Episode – 06 – (165 MiB): DDL | bc.vc
Episode – 07 – (184 MiB): DDL | bc.vc
Episode – 08 – (180 MiB): DDL | bc.vc
Episode – 09 – (180 MiB): DDL | bc.vc
Episode – 10 – (130 MiB): DDL | bc.vc
Episode – 11 – (159 MiB): DDL | bc.vc
Episode – 12 – (168 MiB): DDL | bc.vc
Episode – 13 – (185 MiB): DDL | bc.vc

Sankarea – OC

Opening – 01 – (41 MiB): DDL | bc.vc
Ending – 01 – (25 MiB): DDL | bc.vc

Sankarea – Batch

Batch Torrent – (2.23 GiB): DDL | bc.vc

Sankarea

Play-Asia.com - Buy Video Games for Consoles and PC - From Japan, Korea and other Regions

Shingeki no Kyojin [10-bit, 720p]

$
0
0

Shingeki no Kyojin [10-bit, 720p]

Synopsis
Several hundred years ago, humans were nearly exterminated by giants. Giants are typically several stories tall, seem to have no intelligence, devour human beings and, worst of all, seem to do it for the pleasure rather than as a food source. A small percentage of humanity survived by walling themselves in a city protected by extremely high walls, even taller than the biggest of giants. Flash forward to the present and the city has not seen a giant in over 100 years. Teenage boy Eren and his foster sister Mikasa witness something horrific as the city walls are destroyed by a supergiant that appears out of thin air. As the smaller giants flood the city, the two kids watch in horror as their mother is eaten alive. Eren vows that he will murder every single giant and take revenge for all of mankind.

Latest [Lag-Taka] Shingeki no KyojinEpisode 18 – (243 MiB) is uploaded.
Latest [gg] Shingeki no Kyojin [Tac's]Episode 25 – (156 MiB) is uploaded.

Info
Source gg | Lag-Taka
Encoder zeust (1-13) | theblacktac (gg 14+) | rand (Lag-Taka 12+)
Average Filesize ~130 MB/Ep. | ~200 MB/Ep.
Video 10-bits x264 @ crf 23.0
Audio AAC @ q = 0.4
MyAnimeList Rating 8.97 (scored by 99748 users)
Status Completed

Ordered Chapters
Note: make sure to place OP, ED and EP in the same folder.
Ordered Chapters don’t work with old LAV splitter.

Shingeki no Kyojin – Episodes

[gg] Tac’s Version – Ep. [1 - 25] – (3.32 GiB): MEGA

[gg] Release

OP – 01 – (35 MiB): DDL

ED – 01 – (25 MiB): DDL

[Lag-Taka] Release

OP – 01 – (42 MiB): DDL

OP – 02 – (40 MiB): DDL

OP – 03 – (34 MiB): DDL

ED – 01 – (31 MiB): DDL

ED – 02 – (41 MiB): DDL

ED – 02v2 – (41 MiB): DDL

Shingeki no Kyojin – Episodes

[gg] Release

Ep. 01 – (180 MiB):
DDL | Torrent

Ep. 02 – (170 MiB):
DDL | Torrent

Ep. 03 – (120 MiB):
DDL | Torrent

Ep. 04 – (157 MiB):
DDL | Torrent

Ep. 05 – (191 MiB):
DDL | Torrent

Ep. 06 – (114 MiB):
DDL | Torrent

Ep. 07 – (152 MiB):
DDL | Torrent

Ep. 08 – (161 MiB):
DDL | Torrent

Ep. 09 – (157 MiB):
DDL | Torrent

Ep. 10 – (159 MiB):
DDL | Torrent

Ep. 11 – (159 MiB):
DDL | Torrent

Ep. 12 – (163 MiB):
DDL | Torrent

Ep. 13 – (184 MiB):
DDL | Torrent

Ep. [1 - 25] – (3.32 GiB):
| MEGA |

[Lag-Taka] Release

Ep. 01 – (211 MiB):
DDL | Torrent

Ep. 02 – (199 MiB):
DDL | Torrent

Ep. 03 – (149 MiB):
DDL | Torrent

Ep. 04 – (187 MiB):
DDL | Torrent

Ep. 05 – (221 MiB):
DDL | Torrent

Ep. 06 – (145 MiB):
DDL | Torrent

Ep. 07 – (181 MiB):
DDL | Torrent

Ep. 08 – (190 MiB):
DDL | Torrent

Ep. 09 – (187 MiB):
DDL | Torrent

Ep. 10 – (188 MiB):
DDL | Torrent

Ep. 11 – (189 MiB):
DDL | Torrent

Ep. 12 – (184 MiB):
DDL | Torrent

Ep. 13 – (205 MiB):
DDL | Torrent

Ep. 13.5 – (208 MiB):
DDL | Torrent

Ep. 14 – (121 MiB):
DDL | Torrent

Ep. 15 – (135 MiB):
DDL | Torrent

Ep. 16 – (134 MiB):
DDL | Torrent

Ep. 17 – (247 MiB):
DDL | Torrent

Ep. 18 – (243 MiB):
DDL | Torrent

Shingeki no Kyojin – Patches

[gg] Release

04v2. (50 KiB): DDL
(Fixes chapter file)

04v3. (50 KiB): DDL
(Fixes chapter file)

08v2. (50 KiB): DDL
(Fixes metadata)

10v2. (50 KiB): DDL
(Fixes chapter file)

[Lag-Taka] Release

12v2. (105 KiB): DDL
(Fixes chapter file)

13v2. (106 KiB): DDL
(Fixes chapter file)

13.5v2. (105 KiB): DDL
(Fixes chapter file)


Guide to OC Encoding via CMD

$
0
0

light2xx
Encoders can try it before next season. It might ease things up for you.

Overview
This guide is focused on Ordered Chapters Encoding, also known as OC-Encoding.
I’ve explained all the steps and commands, but you don’t really need to get all of it; you can simply get the script and use it. Script is automated so don’t worry if you got nothing of the concept.
OC-Encoding

Pre-requisites
You need to have some know-how of avscripts. The better the avscript, the efficient would be the encoded OC. It’s absolutely NECESSARY.
Avisynth & Avscripts

You could make use of simple encoding guide as well. It’s NOT necessary, though.
Guide to CMD Encoding

What is OC?
Ordered Chaptering is a feature of (.mkv) container. You can play the external files in ORDER with the help of CHAPTER files.
In anime, it’s usually used as separate OP and ED while the rest of the EPISODE is contained in a separate single file. To play the external OP and ED while EPISODE is being played, the EPISODE must have CHAPTER file in valid ORDER.

How to make OC.
Let’s say you have an Episode of any anime, which would be the source file.
You’ll need to do the following to get an OC at the end.
- OP/ED. (Extract them out from source somehow)
- EPISODE file. (Excluding OP/ED)

External OP/ED.
Whenever you make an OC, always go for OP/ED first. Take care of EPISODE file later; this order will come handy later on.
Cut/Trim the OP and ED accurately with the help of Avisynth. To do that, you’ll need to create the Avscripts. (One for OP and one for ED.) Put those scripts as input of x264.exe –or x264_tMod.exe

Later on you’ll have to encode the audio with neroAacEnc.exe and get the subtitles from source file. (Subtitle extraction according to trimmed parts are explained in EPISODE part below.)

EPISODE.
Once the OP and ED are ready, remaining thing would be to get EPISODE ready. It will require the following things.
a- Video & Audio (Excluding OP and ED)
b- Subtitle (Trimmed according to Video)
c- Chapter file (.xml file containing the SUID for OP and ED)
d- Merge above things with MkvMerge.

a) VIDEO & AUDIO.
Create an avscript (.avs file) containing the source. Trim the source in a way that OP and ED are excluded.

light2xx

Now if you insert that (.avs) into x264.exe and encode it, you’ll get a flawless video which won’t have any glitch or loop at the trimmed parts; you’ll get the feeling that this file had never been trimmed in the first place. So regardless of the key-frames, Avisynth is capable of cutting the video 100% accurately. (Because Avisynth assume every frame as a key-frame already.)

Well having said that, there should not be any problem in OC, right? Unfortunately, you’d still encounter a minor problem.

Let’s say you trimmed the file in this way:

Trim(0, 1000) ++ Trim(3000, 28000) ++ Trim(30000, 32000)

Above frame numbers are of source file, so when you’ll get the resulted file after encoding the frame numbers won’t be same since you’ve omitted the frames of OP and ED. So you can say that in the ENCODED file the trim actually happened like this:

Trim(0, 1000) ++ Trim(1001, 26000) ++ Trim(26001, 28000)

And if there are no key-frames where trimming happened, then when you’ll play the OC it will loop around for 1.sec (approx.). Well if you are not going to make any OC and simply want to cut the file then there’s no need to keep track of key-frames, but if you need an OC file where you’ll use SUID to play OP and ED within EPISODE, it will give problem just before/after the OP/ED starts/ends. (It’s more of a fault of .mkv container.)

Sometimes you get lucky, and the source already has the key-frames just before the OP/ED starts and ends. But if you are not that lucky, then you’ll have to force key-frames.

In short, considering the above frames of ENCODED file (NOT SOURCE FILE), you need to have key-frames at following frames.

Frame no: 0 (Just at the start of first trim.)
 Frame no: 1001 (Just at the start of second trim.)
 Frame no: 26001 (Just at the start of third trim.)

To keep track of these frames is very tedious as it will be changed when the source will be changed. But there’s a trick to do that automatically.

QP FILE.
Qpfile is simply a (.txt) file that contains the number of frame where you need a key-frame. For example, for above case you need a (.txt) file having this

1001 K
 26001 K

Frame 0 has been omitted because encoder (x264.exe) assume first frame a key-frame already. You can manually create the qpfile with the help of a notepad, but to make it automatically you’ll have to use a simple python script called vfr.py

Vfr.py
How does this work?
- This script requires an avscript (.avs) as an input. (Avscript must have the Trim() commands).
- It will read the trim commands from the (.avs) and get the frames of the SOURCE file from that.
- From the source frames, it will do some math to make them the frames of ENCODED file.
- After getting the frames of ENCODED file, it will write down the frames where key-frames are required.
- In the end, it will give you the (.txt) file having the information for forcing key-frames.

vfr.py -vmr -f 24000/1001 -q whatever_name_you_like.txt Input.avs

24000/1001 = fps (Anime usually have fps23.976)
whatever_name_you_like.txt = qpfile (That’s the main thing)
Input.avs = Avscript for input (It should have trim commands)

Okay, now that you’ve got the qpfile.txt with the help of vfr.py, what now?

PUTTING QPFILE IN X264.EXE
You’ll have to put that (.txt) file in x264.exe encoding process. To do that you’ll be adding an extra parameter in x264.exe command line. Here’s the parameter:

--qpfile

replace with the name of (.txt) file. like,

--qpfile qpfile_for_ep1.txt

Add this parameter anywhere in the x264.exe command line. After that you’ll get the ENCODED file having key-frames at places where you wanted them to be. This way, now the OC will play flawlessly, even if you order external OP/ED to play in EPISODE file.
VIDEO & AUDIO are ready.

b) SUBTITLE.
In normal encoding, you can simply get the (.ass) file from the source and attach it to ENCODED file. But in OC, you can’t do that because ENCODED file has no OP/ED; consequently, the subtitle (.ass) file of source will not be in sync with ENCODED file.
In other words, you need to trim the subtitle file just like you trimmed Video & Audio.

Unfortunately, you can’t trim the subs with Avisynth; if you include the (.ass) file in Avisynth and trim it, it will be trimmed just fine but when you’ll get the ENCODED file after encoding, the subs would be hardsubbed in the video. Unless you want that you’ll have to use another trick to trim subtitles.

Before that, extract out the subtiltle file from SOURCE.mkv

ffmpeg -i source.mkv -scodec copy source_subtitle.ass

TrimSub.exe
How does this work?
- It takes an (.avs) file as input. (Avscript must have trim commands in it).
- It will read the trim commands and trim the subtitle according to it.
- After trimming, it will merge the subtitle in a single file.
- Lastly, it will output the trimmed subtitle file having name you will give.

TrimSubs.exe Input.avs -i source_subtitle.ass -o trimmed_subtile.ass

Input.avs = Avscript for Input.
source_subtitle.ass = Original .ass file from SOURCE.mkv
trimmed_subtitle.ass = Subtitle trimmed for ENCODED file.

SUBTITLE is ready.

c) CHAPTER FILE.
Now it’s time to prepare a chapter file that will have SUID of OP/ED to make EPISODE play as an OC. Again, you can manually do that by any tool or notepad, but to that automatically you’ll need to use vfr.py once again.

Vfr.py
How does this work?
- It will take an (.avs) file as input. (Avscript must have trim commands).
- It will read the trim commands from (.avs) file.
- After getting frames from (.avs) it will be ready to make chapter file. (.xml file)
- It will require a template file to put the information of trimming and frames in a chapter file (.xml) format. (Template file is simply a .txt file having some format and info.)
- Lastly, it will output the (.xml) file having name you will give.

vfr.py -vmr -f 24000/1001 -t zeust-template.txt -c Chapter_file.xml Input.avs

24000/1001 = fps
zeust-template.txt = Template file I edited
Chapter_file.xml = Output .xml file
Input.avs = Avscript for Input

CHAPTER FILE (.xml) is ready.

d) MERGING EVRYTHING.
Now that you have everything (VIDEO, AUDIO, SUBTITLE, CHAPTERS), mux them with MkvMerge.exe

mkvmerge -o "Final.mkv" --language "0:jpn" "Encoded.mkv" --language "0:jpn" " Audio.aac" --language "0:eng" "Trimmed_subtitle.ass" --no-chapters -A -D -S "Source.mkv" --chapters "Chapter_file.xml"

Final.mkv = Last File having everything.
Encoded.mkv = Video encoded from x264.exe
Audio.aac = Audio encoded from neroAacEnc.exe
Trimmed_subtitle.ass = Subtitle file you got from TrimSub.exe
Source.mkv = Source/Original File.
Chapter_file.xml = Chapter file you got from vfr.py

DEMONSTRATION.
Let’s go through a quick demonstration.
Source file is the 5th episode of Nurarihyon no Mago: Sennen Makyou.
I’ve renamed it to 05.mkv
I’ve made the Avscript for 05.mkv, named: 05.avs
What I need to do or collect is shown in the snap.
!!Enjoy!!

light2xx

That’s how you make a GOD-LIKE OC.

Zeust’s OC Script
Whatever I have explained above was for making you understand the procedure of OC-Encoding. I have made a script making use of above commands and features.
It’s got the following features.
- Normal Encoding (Single-Mode)
- Normal Encoding (Batch-Mode)
- OC Encoding (Single-Mode)
- OC Encoding (Batch-Mode)
- OP ED Encoding
- Single Audio Encoding
- Multi Audio Encoding (Dual or more…)

Normal Encoding
You can insert either an avscript (.avs file) or video file (.mkv or .mp4 file) as input.

OC Encoding
You strictly need to put an avscript (.avs file) as input. Otherwise, it’s useless.

OP-ED Encoding
If you want to encode OP/ED parts of an OC Encode, then you better use this. It will make use of the file you trimmed the OP/ED from as well.

Audio Encoding
In case you need to encode audio only or more than one audio streams then it’s better to choose this. (It solely encodes audio, nothing would be done to video)

Advices & Warnings
The script is a .bat script. One upside is you don’t need any compiler etc to interpret the commands; one downside is its functionality is very limited compared to what I could have achieved if I had written it in python or c++.
Anyway, still it does the job pretty easily.

Here’s what you should avoid while using it.
- Using complex names or characters or symbols in input slot. (Like parenthesis).
- Using fancy numbering in input. (If you want to name a file 1.mkv then name it as 1.mkv, don’t make it 01.mkv or 001.mkv)
- Using unsuitable modes. (Don’t use OC for normal encodes or vice versa; use batch mode only if you have more than one file to encode.)
- Trying to make an OC Encode with insufficient data. (For OC, make sure you have OP/ED encoded already etc.)

Here’s what you should DO while using it.
- Keep tracks of files / episodes. (especially if you are using batch-mode)
- Try to use the script in an isolated folder.

Python Alert
The script will use some python scripts itself. Well I have python32 installed in my system so I was able to run it smoothly, but I don’t know if it will work in a system devoid of Python. If that happens (if python scripts are not working for you), then let me know so that I could suggest an alternative. Btw, alternative(s) would be this.
- Install python32 on your system. -or-
- Use an executable file (.exe) instead of python scripts. (I’d provide that if you run into any problem)

For now, let’s just hope, nothing like that happens.

Bottom Line
I’ve tested it (almost) and it works pretty good, still I do know you might run into bugs etc. So in that case let me know.
Also, even if you don’t run into any errors, feel free to give me a feedback or suggestion that I could add into the script to make it more awesome.

Script Updates
I have made a separated sub-section for script only. It will contain updates of script etc. Of course it won’t work unless you put it in the folder containing all the requisites (.exe) and python scripts.

Script_v1.2
(Fixes Normal – Batch Mode’s Loop Logic)

Script_v1.4
(Fixes the addition of extra subtitle file)

Script_v1.5
(Fixes merging error in normal encoding mode)

Video Tutorial
I’ve made a video to demonstrate a normal and an OC encode using the script. Hope it clears up all the difficult parts.

Video Tutorial
[ UPDATE TIME : 3rd December, 2013 - 14:30 GMT ]

Kuroko no Basuke – Season 2 [10-bit, 720p]

$
0
0

Encoding Settings: 10-bit x264_tMod @ CRF 23 (Hatsuyuki + Asenshi)
CRF 25 (HorribleSubs), AAC Audio
Average Filesize: ~130 MiB / Ep.
Ripped by: [Hatsuyuki + Asenshi] / [HorribleSubs]
Encoded by: zeust / Kanri

Kuroko no Basuke – Season 2 – Episodes

Hatsu-Senshi releases

Ep. – 01 – (141 MiB): DDL | bc.vc | Torrent
Ep. – 02 – (178 MiB): DDL | bc.vc | Torrent
Ep. – 03 – (142 MiB): DDL | bc.vc | Torrent
Ep. – 04 – (143 MiB): DDL | bc.vc | Torrent
Ep. – 05 – (146 MiB): DDL | bc.vc | Torrent
Ep. – 06 – (175 MiB): DDL | bc.vc | Torrent

Hatsu-Senshi releases – OC

Opening – 01 – (37 MiB): DDL | bc.vc

HorribleSubs releases

Ep. - 09 - (97 MiB): DDL | Torrent
Ep. - 08 - (82 MiB): DDL | Torrent
Ep. - 07 - (82 MiB): DDL | Torrent
Ep. - 06 - (127 MiB): DDL | Torrent
Ep. - 05 - (103 MiB): DDL | Torrent
Ep. - 04 - (95 MiB): DDL | Torrent
Ep. – 03 – (104 MiB): DDL | Torrent
Ep. – 02 – (113 MiB): DDL | Torrent
Ep. – 01 – (99 MiB): DDL | Torrent

Hi10 Anime - Donate

メリークリスマス | Merry Christmas | Frohe Weihnachten | Buon Natale | Joyeux Noël

$
0
0


Hope everyone is enjoying his life. (Don’t worry about me, I’ll manage.)
Anyway, as you can guess… Merry Christmas.

I don’t celebrate it religiously, but I do know it’s a big deal to a lot of people not only religiously but also celebration-wise. Wait, am I ruining it? AM I RUINING THE MOOD?
Anyway, since I care about others happiness once in a while, I wish you the very best of everything.

Now, gift time….
So, where’s my gift???
Huh? I am supposed to give you gift? Why? Do I look like Santa Claus?
AM I RUINING IT, AGAIN? XD

Gift no. 1: Steins;Gate – Movie – BD
Gift no. 2: Naruto Shippuuden – Movie 4 – BD

Other goodies
Oi oi… I’m not your babysitter. However, there is a way to make you think you will get other gifts.
Like other encoders, if they want to, can mention their releases (other than usual) here, just like I did. :)
I would’ve allowed visitors to share things too, but somehow I think it will get troublesome, so I don’t think it’s a good idea. But then again, if you post something lethal, we will remove it anyway, so you can share things if you want to. (It’s CHRISTMAS, so I guess I shouldn’t be so strict.)

Btw, I do have some news for upcoming gift of mine.
Subbing, Typesetting, Karaoke, almost everything is done for:

Gintama Movie 2 - Kanketsu Hen.

All I need to do is now encode the movie and upload it. Of course, I’ll release it first as a fansubber, then release it here after re-encoding it. Well I think it won’t take much time.

Fun-Stuff BY Hi10
You might be wondering what kind of stuff I’m talking about here. Well, it’s really simple stuff like stuff.

Poll – Best Anime of 2013
Poll – Anticipated Anime of Winter 2014

See ya later
Lastly, here’s a funny video. Actually it’s really funny and I watched it a couple of days ago. I’ve gone crazy watching it again and again. (actually listening it, music is very enjoyable.)
Also, I think… I think the song is Indonesian, but anyway, if anyone happens to know it, please let me know. I want to hear it in awesome quality.

IMPORTANT

Oi, tac, yuuhi, RanD, send him some loli/ecchi/cute pictures. It will speed up the healing. (or it could speed up something else. XD)
Anyway, I’ve made my point. :)

French Title – For DDF57
Italian Title – For RanD
German Title – For Alpha
English Title – For the rest of the world
Japanese Title – For site and myself

Happy New Year | Year New Happy

$
0
0


Hope everyone is enjoying his life. (Don’t worry about me, I’m just…)
Anyway, as you can guess… Happy New Year

I don’t celebrate it religiously, but I do know it’s a big deal to a lot of people not only religiously but also celebration-wise. Besides it’s not as if, like birthdays, something sacrilegious. And humans tend to celebrate everything, even deaths. I mean they kill and then they repent and then they celebrate.
And does it feel like this should not be a topic for new year? DOES IT REALLY?
Wait, am I ruining it? AM I RUINING THE MOOD?
Anyway, since I care about others happiness once in a while, I wish you the very–
Te oi!!! I just said it’s a big deal to others religiously…

IMPORTANT

Glad that he’s in good condition. Hope he recovers completely soon.
Anyway, I’ve made my point.

If someone’s wondering that it’s a complete rip-off of my Christmas’ post… he’s not wrong.
You can see I’m out of ideas… or wait, am I? XD
Wish you all the best. (I didn’t complete the sentence up there XD)
Lastly, title is in accord with ‘symmetry’.

One [10-bit, 720p]

$
0
0

One pirate, Monkey D. Luffy, is a boy who had eaten the Devil’s Fruit and gained rubber powers. Now he and his crew are off to find One Piece, while battling enemies and making new friends along the way.

Encoding Settings: 10-bit x264 @ CRF 24-26, AAC Audio
Average Filesize: ~135 MB / Ep.
Subbed by: Yibis Fansubs
Encoded by: Gille, Kanri, Balwant623+

One PieceEPISODES

Episodes [1 - 616] + Movies + Specials ~ (78 GB): TORRENT | Bc.vc

Episodes [622 - XXX] : Mega Folder

Pirate Alliance Saga [575 - 6XX]

Ep. 629 – (113 MB): DDL | Bc.vc [New]
Ep. 628 – (104 MB): DDL | Bc.vc
Ep. 627 – (112 MB): DDL | Bc.vc
Ep. 626 – (113 MB): DDL | Bc.vc
Ep. 625 – (114 MB): DDL | Bc.vc
Ep. 624 – (134 MB): DDL | Bc.vc
Ep. 623 – (130 MB): DDL | Bc.vc
Ep. 622 – (124 MB): DDL | Bc.vc
Ep. 621 – (136 MB): DDL | Bc.vc
Ep. 620 – (102 MB): DDL | Bc.vc
Ep. 619 – (123 MB): DDL | Bc.vc
Ep. 618 – (117 MB): DDL | Bc.vc
Ep. 617 – (123 MB): DDL | Bc.vc
Ep. 616 – (120 MB): DDL | Bc.vc
Ep. 615 – (111 MB): DDL | Bc.vc
Ep. 614 – (106 MB): DDL | Bc.vc
Ep. 613 – (166 MB): DDL | Bc.vc
Ep. 612 – (171 MB): DDL | Bc.vc
Ep. 611 – (112 MB): DDL | Bc.vc
Ep. 610 – (113 MB): DDL | Bc.vc
Ep. 609 – (106 MB): DDL | Bc.vc
Ep. 608 – (133 MB): DDL | Bc.vc
Ep. 607 – (119 MB): DDL | Bc.vc
Ep. 606 – (104 MB): DDL | Bc.vc
Ep. 605 – (113 MB): DDL | Bc.vc
Ep. 604 – (107 MB): DDL | Bc.vc
Ep. 603 – (133 MB): DDL | Bc.vc
Ep. 602 – (140 MB): DDL | Bc.vc
Ep. 601 – (125 MB): DDL | Bc.vc

OLD COMMENTS ARE HERE
[Till - 31st Jan, 2014]

Episodes [1 - 616] + Movies + Specials ~ (78 GB): TORRENT | Bc.vc

Hi10 Anime Donate

Naruto Shippuuden [480p | 720p]

$
0
0

After 2 and a half years Naruto finally returns to his village of Konoha, and sets about putting his ambitions to work, though it will not be easy, as He has amassed a few (more dangerous) enemies, in the likes of the shinobi organization; Akatsuki. [MAL]

Encoding Settings: 10-bit x264 @ CRF 24 | 25, AAC Audio
Average Filesize: ~100 MB/Ep. | ~140 MB/Ep.
Subtitles by: HorribleSubs | Taka Fansubs
Encoded by: Kanri, Balwant343+ (HSubs)
Zeust280+, RanD320+ (Taka)

Naruto Shippuuden Ep. [001 - 294] ~ (30 GB): TORRENT | Bc.vc

Naruto ShippuudenEPISODES

[HorribleSubs] Release

Ep. [343 - ??] ~ (?? GB): MEGA | Bc.vc

Ep. 349[New] – (125 MB): DDL | Torrent
Ep. 348 – (143 MB): DDL | Torrent
Ep. 347 – (127 MB): DDL | Torrent
Ep. 346 – (093 MB): DDL | Torrent
Ep. 345 – (075 MB): DDL | Torrent
Ep. 344 – (074 MB): DDL | Torrent
Ep. 343 – (095 MB): DDL | Torrent
Ep. 342 – (111 MB): DDL | Torrent
Ep. 341 – (100 MB): DDL | Torrent
Ep. 340 – (099 MB): DDL | Torrent
Ep. 339 – (095 MB): DDL | Torrent
Ep. 338 – (074 MB): DDL | Torrent
Ep. 337 – (099 MB): DDL | Torrent
Ep. 336 – (067 MB): DDL | Torrent
Ep. 335 – (070 MB): DDL | Torrent
Ep. 334 – (133 MB): DDL | Torrent
Ep. 333 – (079 MB): DDL | Torrent
Ep. 332 – (123 MB): DDL | Torrent
Ep. 331 – (115 MB): DDL | Torrent
Ep. 330 – (137 MB): DDL | Torrent
Ep. 329 – (111 MB): DDL | Torrent
Ep. 328 – (110 MB): DDL | Torrent
Ep. 327 – (111 MB): DDL | Torrent
Ep. 326 – (116 MB): DDL | Torrent
Ep. 325 – (118 MB): DDL | Torrent
Ep. 324 – (131 MB): DDL | Torrent
Ep. 323 – (107 MB): DDL | Torrent
Ep. 322 – (124 MB): DDL | Torrent
Ep. 321 – (108 MB): DDL | Torrent
Ep. 320 – (121 MB): DDL | Torrent
Ep. 319 – (138 MB): DDL | Torrent
Ep. 318 – (138 MB): DDL | Torrent
Ep. 317 – (100 MB): DDL | Torrent
Ep. 316 – (099 MB): DDL | Torrent
Ep. 315 – (108 MB): DDL | Torrent
Ep. 314 – (124 MB): DDL | Torrent
Ep. 313 – (162 MB): DDL | Torrent
Ep. 312 – (114 MB): DDL | Torrent
Ep. 311 – (083 MB): DDL | Torrent
Ep. 310 – (087 MB): DDL | Torrent
Ep. 309 – (083 MB): DDL | Torrent
Ep. 308 – (104 MB): DDL | Torrent
Ep. 307 – (086 MB): DDL | Torrent
Ep. 306 – (088 MB): DDL | Torrent
Ep. 305 – (121 MB): DDL | Torrent
Ep. 304 – (113 MB): DDL | Torrent
Ep. 303 – (116 MB): DDL | Torrent
Ep. 302 – (123 MB): DDL | Torrent
Ep. 301 – (125 MB): DDL | Torrent
Ep. 300 – (133 MB): DDL | Torrent
Ep. 299 – (156 MB): DDL | Torrent
Ep. 298 – (124 MB): DDL | Torrent
Ep. 297 – (087 MB): DDL | Torrent
Ep. 296 – (127 MB): DDL | Torrent
Ep. 295 – (096 MB): DDL | Torrent

[Taka] Release

Ep. [?? - ??] ~ (?? GB): MEGA | Bc.vc

Ep. 344 – (112 MB): DDL | Torrent
Ep. 343 – (150 MB): DDL | Torrent
Ep. 342 – (178 MB): DDL | Torrent
Ep. 341 – (173 MB): DDL | Torrent
Ep. 340 – (144 MB): DDL | Torrent
Ep. 339 – (148 MB): DDL | Torrent
Ep. 338 – (117 MB): DDL | Torrent
Ep. 337 – (157 MB): DDL | Torrent
Ep. 336 – (101 MB): DDL | Torrent
Ep. 335 – (112 MB): DDL | Torrent
Ep. 334 – (221 MB): DDL | Torrent
Ep. 333 – (126 MB): DDL | Torrent
Ep. 332 – (218 MB): DDL | Torrent
Ep. 331 – (195 MB): DDL | Torrent
Ep. 330 – (213 MB): DDL | Torrent
Ep. 329 – (179 MB): DDL | Torrent
Ep. 327-328 – (348 MB): DDL | Torrent
Ep. 326 – (183 MB): DDL | Torrent
Ep. 325 – (180 MB): DDL | Torrent
Ep. 324 – (219 MB): DDL | Torrent
Ep. 323 – (166 MB): DDL | Torrent
Ep. 322 – (190 MB): DDL | Torrent
Ep. 321 – (163 MB): DDL | Torrent
Ep. 320 – (180 MB): DDL | Torrent
Ep. 319 – (115 MB): DDL | Torrent
Ep. 318 – (197 MB): DDL | Torrent
Ep. 317 – (145 MB): DDL | Torrent
Ep. 316 – (144 MB): DDL | Torrent
Ep. 315 – (158 MB): DDL | Torrent
Ep. 314 – (168 MB): DDL | Torrent
Ep. 313 – (224 MB): DDL | Torrent
Ep. 312 – (152 MB): DDL | Torrent
Ep. 311 – (116 MB): DDL | Torrent
Ep. 310 – (119 MB): DDL | Torrent
Ep. 309 – (116 MB): DDL | Torrent
Ep. 308 – (145 MB): DDL | Torrent
Ep. 307 – (125 MB): DDL | Torrent
Ep. 306 – (122 MB): DDL | Torrent
Ep. 305 – (165 MB): DDL | Torrent
Ep. 304 – (154 MB): DDL | Torrent
Ep. 303 – (156 MB): DDL | Torrent
Ep. 302 – (164 MB): DDL | Torrent
Ep. 301 – (170 MB): DDL | Torrent
Ep. 300 – (181 MB): DDL | Torrent
Ep. 299 – (216 MB): DDL | Torrent
Ep. 298 – (173 MB): DDL | Torrent
Ep. 297 – (122 MB): DDL | Torrent
Ep. 296 – (175 MB): DDL | Torrent
Ep. 295 – (146 MB): DDL | Torrent
Ep. 294 – (117 MB): DDL | Torrent
Ep. 293 – (112 MB): DDL | Torrent
Ep. 292 – (133 MB): DDL | Torrent
Ep. 291 – (094 MB): DDL | Torrent
Ep. 290 – (118 MB): DDL | Torrent
Ep. 289 – (128 MB): DDL | Torrent
Ep. 288 – (137 MB): DDL | Torrent
Ep. 286-287 – (168 MB): DDL | Torrent
Ep. 285 – (096 MB): DDL | Torrent
Ep. 284 – (094 MB): DDL | Torrent
Ep. 283 – (127 MB): DDL | Torrent
Ep. 282 – (122 MB): DDL | Torrent
Ep. 281 – (133 MB): DDL | Torrent
Ep. 280 – (100 MB): DDL | Torrent

Naruto Shippuuden Ep. [001 - 294] ~ (30 GB): TORRENT | Bc.vc

OLD COMMENTS ARE HERE
[Till - 31st Jan, 2014]

Hi10 Anime Donate

Gekijouban Gintama – Kanketsu Hen [10-bit, BD 1080p | 720p]

$
0
0

Video Settings: 10-bit x264_tMod @ CRF 23
Audio Settings: 5.1 AAC-LC Audio @ 0.4
Subtitles by: Kuroi-Subs
Encoded by: zeust

Gintama Movie – Final Act

Movie – 720p – (1.05 GiB) : bc.vc | Adf.ly
Movie – 1080p – (2.66 GiB): bc.vc | Adf.ly

Batch – (3.7 GiB): Batch Torrent


Gintama | Silver Balls [10-bit, 480p | HD 720p | BD 720p | BD 1080p]

$
0
0

vagrant samurai whose personal trademark is not only his naturally permed silver hair but also his love of anything sweet and addiction Shounen Jump is making a life out of this chaotic era. He is self employed in a do-it-all shop named Yoruzuya Gin-chan who offers any job for any amount of money. Their jobs range from searching lost kittens and saving the world.
Sakata Gintoki is a samurai living in an era when samurais are no longer needed. To add to his troubles, oppressive aliens have moved in to invade. Gintoki lives with Kagura and Shinpachi, taking on odd jobs to make the world a better place…and to pay their rent.

Gintama [001201] – (16 GB): TORRENT
Gintama [202252] – (6.4 GB): TORRENT
Gintama [253265] – (2.1 GB): TORRENT

Gintama – Episodes

Rurouni Kenshin [10-bit, Dual Audio, DVD 480p | BD 720p | BD 1080p]

$
0
0

kenshin4

Plot Summary
Ten years after the start of the Meiji Era, a Rurouni wanders into Tokyo to find a new life with his new friends. Vowing never to kill, he tries to escape his fate as the greatest killer of the Edo dynasty. An old menace threatens the new Meiji Era, the villian is Shishio Makoto, the successor to the Hitokiri Battousai who was supposed to have died in the Boshin Wars. Shishio and his Juppon Gatana are ready to start a new revolution to correct the wrong doings of the Meiji Government and also to avoid colonization.

Video Details
[Fansubber] | Audio Details

1-Seisou Hen: 10-bit, BD 1080p, BD 720p, Dual Audio
[HACK-JOB] | JAP 5.1 AAC-LC @ 0.5, ENG 2.0 AAC-LC @ 0.5

2- Tsuioku Hen: 10-bit, BD 1080p, BD 720p, Dual Audio
[HACK-JOB] | JAP 5.1 AAC-LC @ 0.5, ENG 2.0 AAC-LC @ 0.5

3- Ishinshishi e no Requiem: 10-bit, BD 1080p, BD 720p, Dual Audio
[Doutei] | JAP 5.1 AAC-LC @ 0.5, ENG 2.0 AAC-LC @ 0.5

4- Shin Kyoto Hen (Part-1): 10-bit, BD 1080p, BD 720p, Mono Audio
[Taka-THORA] | JAP 5.1 AAC-LC @ 0.5

4- Shin Kyoto Hen (Part-2): 10-bit, BD 1080p, BD 720p, Mono Audio
[AHSH] | JAP 5.1 AAC-LC @ 0.5

5- LIVE ACTION: 10-bit, BD 1080p, BD 720p, Mono Audio
[YYeTs] | JAP 5.1 AAC-LC @ 0.5

6- Episodes: 10-bit, DVD 480p, Dual Audio
[Dragon-Fox] | JAP 2.0 AAC-LC @ 0.4, ENG 2.0 AAC-LC @ 0.4

Rurouni Kenshin – OVA’s | Specials | Movies | Arcs | *CRF Value(s)*|

BD 1080p Release

Rurouni Kenshin – Seisou HenPart 1 – (640 MiB) : DDL *|CRF 24|*
Rurouni Kenshin – Seisou HenPart 2 – (865 MiB) : DDL *|CRF 24|*

Rurouni Kenshin – Tsuioku HenAct 1 – (396 MiB) : DDL *|CRF 24|*
Rurouni Kenshin – Tsuioku HenAct 2 – (427 MiB) : DDL *|CRF 23|*
Rurouni Kenshin – Tsuioku HenAct 3 – (724 MiB) : DDL *|CRF 21|*
Rurouni Kenshin – Tsuioku HenAct 4 – (840 MiB) : DDL *|CRF 21|*

Rurouni Kenshin – Ishinshishi e no Requiem – (1.81 GiB) : DDL *|CRF 25|*

Rurouni Kenshin – Shin Kyoto HenPart 1 – (777 MiB) : DDL *|CRF 23|*
Rurouni Kenshin – Shin Kyoto HenPart 2 – (1.44 MiB) : DDL *|CRF 23|*

Rurouni Kenshin – LIVE ACTION2012 – (2.63 GiB) : DDL *|CRF 24|*

BD 720p Release

Rurouni Kenshin – Seisou HenPart 1 – (419 MiB) : DDL *|CRF 22|*
Rurouni Kenshin – Seisou HenPart 2 – (562 MiB) : DDL *|CRF 22|*

Rurouni Kenshin – Tsuioku HenAct 1 – (357 MiB) : DDL *|CRF 20|*
Rurouni Kenshin – Tsuioku HenAct 2 – (326 MiB) : DDL *|CRF 20|*
Rurouni Kenshin – Tsuioku HenAct 3 – (363 MiB) : DDL *|CRF 20|*
Rurouni Kenshin – Tsuioku HenAct 4 – (407 MiB) : DDL *|CRF 20|*

Rurouni Kenshin – Ishinshishi e no Requiem – (1.11 GiB) : DDL *|CRF 24|*

Rurouni Kenshin – Shin Kyoto HenPart 1 – (439 MiB) : DDL *|CRF 22|*
Rurouni Kenshin – Shin Kyoto HenPart 2 – (878 MiB) : DDL *|CRF 22|*

Rurouni Kenshin – LIVE ACTION2012 – (1.76 GiB) : DDL *|CRF 22|*

DVD 480p Release - Dual Audio

Rurouni Kenshin – Episodes

Episode – 01 – (126 MiB): DDL | bc.vc
Episode – 02 – (116 MiB): DDL | bc.vc
Episode – 03 – (127 MiB): DDL | bc.vc
Episode – 04 – (111 MiB): DDL | bc.vc
Episode – 05 – (132 MiB): DDL | bc.vc
Episode – 06 – (124 MiB): DDL | bc.vc
Episode – 07 – (121 MiB): DDL | bc.vc
Episode – 08 – (116 MiB): DDL | bc.vc
Episode – 09 – (125 MiB): DDL | bc.vc
Episode – 10 – (129 MiB): DDL | bc.vc
Episode – 11 – (133 MiB): DDL | bc.vc
Episode – 12 – (132 MiB): DDL | bc.vc
Episode – 13 – (134 MiB): DDL | bc.vc
Episode – 14 – (139 MiB): DDL | bc.vc
Episode – 15 – (132 MiB): DDL | bc.vc
Episode – 16 – (130 MiB): DDL | bc.vc
Episode – 17 – (129 MiB): DDL | bc.vc
Episode – 18 – (131 MiB): DDL | bc.vc
Episode – 19 – (135 MiB): DDL | bc.vc
Episode – 20 – (135 MiB): DDL | bc.vc
Episode – 21 – (141 MiB): DDL | bc.vc
Episode – 22 – (153 MiB): DDL | bc.vc
Episode – 23 – (125 MiB): DDL | bc.vc
Episode – 24 – (118 MiB): DDL | bc.vc
Episode – 25 – (129 MiB): DDL | bc.vc
Episode – 26 – (128 MiB): DDL | bc.vc
Episode – 27 – (137 MiB): DDL | bc.vc
Episode – 28 – (127 MiB): DDL | bc.vc
Episode – 29 – (110 MiB): DDL | bc.vc
Episode – 30 – (121 MiB): DDL | bc.vc
Episode – 31 – (117 MiB): DDL | bc.vc
Episode – 32 – (122 MiB): DDL | bc.vc
Episode – 33 – (124 MiB): DDL | bc.vc
Episode – 34 – (141 MiB): DDL | bc.vc
Episode – 35 – (126 MiB): DDL | bc.vc
Episode – 36 – (122 MiB): DDL | bc.vc
Episode – 37 – (123 MiB): DDL | bc.vc
Episode – 38 – (124 MiB): DDL | bc.vc
Episode – 39 – (126 MiB): DDL | bc.vc
Episode – 40 – (137 MiB): DDL | bc.vc
Episode – 41 – (129 MiB): DDL | bc.vc
Episode – 42 – (126 MiB): DDL | bc.vc
Episode – 43 – (117 MiB): DDL | bc.vc
Episode – 44 – (115 MiB): DDL | bc.vc
Episode – 45 – (127 MiB): DDL | bc.vc
Episode – 46 – (122 MiB): DDL | bc.vc
Episode – 47 – (121 MiB): DDL | bc.vc
Episode – 48 – (126 MiB): DDL | bc.vc
Episode – 49 – (123 MiB): DDL | bc.vc
Episode – 50 – (111 MiB): DDL | bc.vc
Episode – 51 – (118 MiB): DDL | bc.vc
Episode – 52 – (136 MiB): DDL | bc.vc
Episode – 53 – (127 MiB): DDL | bc.vc
Episode – 54 – (125 MiB): DDL | bc.vc
Episode – 55 – (120 MiB): DDL | bc.vc
Episode – 56 – (121 MiB): DDL | bc.vc
Episode – 57 – (124 MiB): DDL | bc.vc
Episode – 58 – (131 MiB): DDL | bc.vc
Episode – 59 – (138 MiB): DDL | bc.vc
Episode – 60 – (139 MiB): DDL | bc.vc
Episode – 61 – (115 MiB): DDL | bc.vc
Episode – 62 – (121 MiB): DDL | bc.vc
Episode – 63 – (119 MiB): DDL | bc.vc
Episode – 64 – (124 MiB): DDL | bc.vc
Episode – 65 – (120 MiB): DDL | bc.vc
Episode – 66 – (122 MiB): DDL | bc.vc
Episode – 67 – (118 MiB): DDL | bc.vc
Episode – 68 – (120 MiB): DDL | bc.vc
Episode – 69 – (117 MiB): DDL | bc.vc
Episode – 70 – (115 MiB): DDL | bc.vc
Episode – 71 – (110 MiB): DDL | bc.vc
Episode – 72 – (114 MiB): DDL | bc.vc
Episode – 73 – (117 MiB): DDL | bc.vc
Episode – 74 – (130 MiB): DDL | bc.vc
Episode – 75 – (123 MiB): DDL | bc.vc
Episode – 76 – (109 MiB): DDL | bc.vc
Episode – 77 – (122 MiB): DDL | bc.vc
Episode – 78 – (124 MiB): DDL | bc.vc
Episode – 79 – (109 MiB): DDL | bc.vc
Episode – 80 – (110 MiB): DDL | bc.vc
Episode – 81 – (106 MiB): DDL | bc.vc
Episode – 82 – (108 MiB): DDL | bc.vc
Episode – 83 – (124 MiB): DDL | bc.vc
Episode – 84 – (135 MiB): DDL | bc.vc
Episode – 85 – (128 MiB): DDL | bc.vc
Episode – 86 – (127 MiB): DDL | bc.vc
Episode – 87 – (133 MiB): DDL | bc.vc
Episode – 88 – (136 MiB): DDL | bc.vc
Episode – 89 – (131 MiB): DDL | bc.vc
Episode – 90 – (137 MiB): DDL | bc.vc
Episode – 91 – (140 MiB): DDL | bc.vc
Episode – 92 – (136 MiB): DDL | bc.vc
Episode – 93 – (137 MiB): DDL | bc.vc
Episode – 94 – (155 MiB): DDL | bc.vc
Episode – 95 – (114 MiB): DDL | bc.vc

Rurouni Kenshin – Batch

Batch – Series – (11.6 GiB): DDL | bc.vc
Batch – Specials / OVA’s / Movies / Arcs – (17 GiB): DDL | bc.vc

Mushishi [10-bit, BD 1080p | BD 720p]

$
0
0
BD 1080p Release

Encoding Settings: 10-bit x264_tMod @ CRF 24, AAC Audio
Average Filesize: ~280 MB / Ep.
Ripped by: niizk
Encoded by: zeust

BD 720p Release

Encoding Settings: 10-bit x264_tMod @ CRF 23, AAC Audio
Average Filesize: ~145 MB / Ep.
Ripped by: niizk
Encoded by: zeust

Mardock Scramble: The Third Exhaust [10-bit, BD 1080p | BD 720p]

$
0
0

Video Settings: 10-bit x264_tMod @ CRF 27 [1080p] | CRF 25 [720p]
Audio Settings: 5.1 AAC-LC Audio @ 0.4
Subtitles by: THORA
Encoded by: zeust

Mardock Scramble – The Third Exhaust

Movie – 1080p – (4.11 GiB) : bc.vc | Adf.ly
Movie – 720p – (1.78 GiB): bc.vc | Adf.ly

Batch – (5.9 GiB): Batch Torrent

Yondemasu yo, Azazel-san. Z [10-bit, BD 1080p | BD 720p]

$
0
0

BD 1080p -OC- Release

Encoding Settings: 10-bit x264_tMod @ CRF 23, AAC Audio
Average Filesize: ~95 MB / Ep.
Ripped by: WhyNot
Encoded by: zeust

BD 720p -OC- Release

Encoding Settings: 10-bit x264_tMod @ CRF 23, AAC Audio
Average Filesize: ~60 MB / Ep.
Ripped by: WhyNot
Encoded by: zeust

Viewing all 126 articles
Browse latest View live