VideoHelp Forum




+ Reply to Thread
Results 1 to 6 of 6
  1. How to Encode like this
    Using the Encoder what?
    Setting how?

    720p Video Only 46MB
    480p is only 30MB

    http://www.98subs.com/rezero-kara-hajimeru-isekai-seikatsu-episode-15-anime-subtitle-i...onesia-98subs/
    Quote Quote  
  2. MediaInfo shows you the encoding settings:
    Code:
    Writing library                          : x265 1.9:[Windows][GCC 4.9.0][64 bit] 8bit
    Encoding settings                        : wpp / ctu=64 / min-cu-size=8 / max-tu-size=32 / tu-intra-depth=1 / tu-inter-depth=1 / me=1 / subme=2 / merange=57 / no-rect / no-amp / max-merge=2 / temporal-mvp / no-early-skip / rdpenalty=0 / no-tskip / no-tskip-fast / strong-intra-smoothing / no-lossless / no-cu-lossless / no-constrained-intra / no-fast-intra / open-gop / no-temporal-layers / interlace=0 / keyint=240 / min-keyint=24 / scenecut=40 / rc-lookahead=20 / lookahead-slices=4 / bframes=8 / bframe-bias=0 / b-adapt=2 / ref=3 / limit-refs=3 / no-limit-modes / weightp / no-weightb / aq-mode=2 / qg-size=32 / aq-strength=1.80 / cbqpoffs=0 / crqpoffs=0 / rd=6 / psy-rd=0.00 / rdoq-level=0 / psy-rdoq=0.00 / signhide / no-deblock / sao / no-sao-non-deblock / b-pyramid / cutree / no-intra-refresh / rc=crf / crf=31.0 / qcomp=0.60 / qpmin=0 / qpmax=51 / qpstep=4 / ipratio=1.40 / pbratio=1.30
    the rest is removing details before encoding,...
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  3. So wear?
    What? If you are asking what encoding gui was used to create the file you also can see that inside the MediaInfo output (in this case handbrake was used)

    GCC?
    That is the compiler used to compile the x265 version that was used.

    As a side note, since you don't seem to know much about x265, the settings above correspond to:
    Code:
    x265 --crf 31 --wpp --ctu 64 --min-cu-size 8 --max-tu-size 32 --tu-intra-depth 1 --tu-inter-depth 1 --me 1 --subme 2 --merange 57 --no-rect --no-amp --max-merge 2 --temporal-mvp --no-early-skip --rdpenalty 0 --no-tskip --no-tskip-fast --strong-intra-smoothing --no-lossless --no-cu-lossless --no-constrained-intra --no-fast-intra --open-gop --no-temporal-layers --interlaceMode 0 --keyint 240 --min-keyint 24 --scenecut 40 --rc-lookahead 20 --lookahead-slices 4 --bframes 8 --bframe-bias 0 --b-adapt 2 --ref 3 --limit-refs 3 --weightp --no-weightb --aq-mode 2 --aq-strength 1.80 --cbqpoffs 0 --crqpoffs 0 --rd 6 --psy-rd 0.00 --rdoq-level 0 --psy-rdoq 0.00 --signhide --no-deblock --sao --no-sao-non-deblock --b-pyramid --cutree --qcomp 0.60 --qpmin 0 --qpmax 51 --qpstep 4 --ipratio 1.40 --pbratio 1.30 --qg-size 32 --no-limit-modes
    (to understand what each option does, assuming you know some basics about MPEG-4 video format, you can read http://x265.readthedocs.io/en/default/cli.html)

    -> if you have a similar video try the settings (using a current x265 version and may be the encoder gui of you choice) and be happy
    If you are not sure how to do that, sorry but then you need to wait for someone else to explain since I'm not the one patient enough to explain the basic of video encoding.

    Cu Selur
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  4. 1. The essential setting : crf (constant rate factor).

    crf range : 0-51
    0 = lossless quality (x264) or best quality (x265), very big file size
    51 = bad quality, smallest file size

    Beginner encoding worth : crf = 25 (half 51), or present video setting crf = 31.

    2. Many still image (few motion, not complicated video) does not require a lot of space (easy compression).

    3. Example : ffmpeg command line encoder : http://ffmpeg.org/

    Code:
    ffmpeg -i input.mkv -crf 31 -vcodec libx265 -acodec copy output.mkv
    Result (equal video size) : http://osztott.com/TeBU/ffmpeg_test.mkv
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!