Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - active1

Pages: [1]
1
Avisynth Usage / dealing with upscales
« on: April 12, 2012, 02:11:47 PM »
hi
how can i know if my source is a real HD or just an upscale from 480p ?
im encoding anime series, but some of it not real HD for sure
so how can i know that ?

2
H.264/AVC / pixel format and bit depth ?
« on: February 13, 2012, 05:43:08 PM »
hi

what is the different between pixel format and bit depth ?
thanks in advance  :)

3
H.264/AVC / resolution and ref,bframes ???
« on: January 28, 2012, 01:36:33 PM »
hi
i have a question about the good number of bframes and ref to use

im usually calculate the ref like this:
maximum ref = 12288 * 1024 / ( width * height * 1.5)

720p = ref 8
1080p = ref 4

but what about bframes ?
can i figure it like the ref ?
i know that i can't use more than 9 bframes in level 4.1
and i always encode with level 4.1
so i can use them all in any resolution, right ?

4
H.264/AVC / how can i build x264 ??
« on: January 27, 2012, 03:22:12 PM »
how can i build x264 from the source code ??

im using Pelles C

but every time when i want to build x264 i get error  :-\ :-\

5
Avisynth Usage / DeDup filter ??
« on: January 08, 2012, 12:34:00 PM »
can i use dedup filter for convert cfr to vfr ?

for example i have 23.976 fps source
and i will use the 2-passes of dedup filter
and then i will have variable fps output after muxing the timecodes with the video

like this:
1st pass:

Code: [Select]
DupMC(log="stats.txt")
2nd pass:

Code: [Select]
DeDup(threshold=.1,maxcopies=4,maxdrops=4,dec=true,log="stats.txt",times="timecodes.txt")
that will not take effect on the source, right ?  ???

6
H.264/AVC / convert to 200 fps ????
« on: January 01, 2012, 01:13:53 PM »
hi

.....
i tried to convert a source that has 23.976 fps to 200 fps !!
for reducing file size, then i had a fast video and this is normal

then i added the timecodes of the raw video to the output video in mkvmerage to correct the length

and everything went fine
but, i noticed some lost in details in the output  ??? ???

so i figure out that this way is wrong (right ??)
and i never saw anyone do that before  ???

but my question is, why did i lost some details in my output video ?
i encoded the video once again with 23.976 fps in the same setting, and i hadn't lost some details from the video

so is there any relation between the frame rate and the quality ??

please i want your answers  :) >sorry about my bad english  :P<

7
H.264/AVC / ts and vfr question ?
« on: December 13, 2011, 12:24:08 PM »
hi everyone

i want to encode a vfr video from .ts source
i know that i must have a timecodes

i can get it by 2-pass
like this
Code: [Select]
DGDecode_mpeg2source("test.d2v")
trim(8639,26697)+trim(32900,45150)
AnimeIVTC(mode=1,aa=2)
tfm(d2v="test.d2v", output="matches.txt")
tdecimate(mode=4, output="metrics.txt")

that was the first pass
and the second pass
here
Code: [Select]
DGDecode_mpeg2source("test.d2v")
trim(8639,26697)+trim(32900,45150)
AnimeIVTC(mode=1,aa=2)
tfm(d2v="test.d2v", input="matches.txt")
tdecimate(mode=5, hybrid=2, vfrDec=1, input="metrics.txt", tfmIn="matches.txt", mkvOut="mkv-timecodesfile.txt")

my question is- can i encode lossless from the first pass.and encode that lossless with the second pass in x264?  :)
i mean that my first script will be like this
Code: [Select]
DGDecode_mpeg2source("test.d2v")
trim(8639,26697)+trim(32900,45150)
AnimeIVTC(mode=1,aa=2)
tfm(d2v="test.d2v", output="matches.txt")
tdecimate(mode=4, output="metrics.txt")

and the second will be like this
Code: [Select]
ffvideosource("lossless.mp4")
tfm(d2v="test.d2v", input="matches.txt")
tdecimate(mode=5, hybrid=2, vfrDec=1, input="metrics.txt", tfmIn="matches.txt", mkvOut="mkv-timecodesfile.txt")

there is nothing wrong if i do it like this, right ??

8
H.264/AVC / is converting CFR to VFR a Right thing ???
« on: November 29, 2011, 03:42:29 PM »
hi

i read this thread http://minitheatre.org/forum/13-guides/75297-how-to-convert-cfr-to-vfr.html
about how to convert cfr to vfr
but, is it a right way ??
i heard that it give us less size, but isn't there any effect on the output video ?  ???

9
H.264/AVC / help me please with 10-Bits Encoding !!
« on: November 04, 2011, 09:56:19 AM »
hi guys

can you tell me please how can i encode with 10 Bits Depth in the right way ??

i have this 8-Bit source for example http://www.fileserve.com/file/cpjf4W9

how can i encode it in the right way ??

please  :)

Pages: [1]