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.


Messages - active1

Pages: [1]
1
Avisynth Usage / Re: dealing with upscales
« on: April 13, 2012, 12:41:06 PM »
ah, thanx for the explain

2
Avisynth Usage / Re: dealing with upscales
« on: April 13, 2012, 11:59:53 AM »
poisondeathray, thanx for all of your advices :)

Firesledge, wow nice script, but when i change the lmin option the result become unreasonable
the script don't give me a 1280x720 resolution
but it works fine with the default :)
question, why do you put the SD resolution 852x480 not 848x480 ?

3
Avisynth Usage / Re: dealing with upscales
« on: April 13, 2012, 11:54:55 AM »
poisondeathray, thanx for all of your advices :)

Firesledge, wow nice script, but when i change the lmin option the result become unreasonable
the script don't give me a 1280x720 resolution
but it works fine with the default :)
question, why do you put the SD resolution 852x480 not 848x480 ?

4
Avisynth Usage / Re: dealing with upscales
« on: April 12, 2012, 03:20:45 PM »
thanx for answering my questions  :)
another last question, when we say 480 we mean 848x480 or 640x480 ?
because i must know the resolution if i wanted to do downscale-upscale test
and if i maked sure that it was upscaled from this resolution, i will encode it in this resolution because i will not have more quality than it (correct me if im wrong)

5
Avisynth Usage / Re: dealing with upscales
« on: April 12, 2012, 02:44:46 PM »
thanx
another question
if i saw an anime source and it was real HD 720
thats mean that the studio provided in HD, right ?
what if it was upscaled from 480, is that mean that the studio didn't made this anime in HD 720 ?

6
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 ?

7
H.264/AVC / Re: pixel format and bit depth ?
« on: February 14, 2012, 04:13:43 PM »
I fail to see how that will make any difference to a "regular encode" because that will do 8-bit 420

i noticed a very little different :
http://imageshack.us/photo/my-images/190/76812535.png/
http://imageshack.us/photo/my-images/85/64954268.png/

thank you all for answering me   :)

8
H.264/AVC / Re: pixel format and bit depth ?
« on: February 14, 2012, 09:59:05 AM »
Quote
"can I combine different pixel sampling formats with different color depths"

yes exact
that is what i want to ask for  :)
i do that in x264
with something like this:
Code: [Select]
x264-8bit --<options> --vf resize:csp=rgb:16 --output out.mp4 in.avsi noticed that the result with this was better
but i thought that i must compilance with the bit depth  :P

9
H.264/AVC / Re: pixel format and bit depth ?
« on: February 14, 2012, 05:10:05 AM »
thank you Dust Signs
i get it now
but i have a query

can i create a video that contain different pixels format and different bit depth ?
for example, 16 pixels format in 8 bit depth

10
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  :)

11
H.264/AVC / Re: resolution and ref,bframes ???
« on: January 29, 2012, 11:09:35 AM »
Quote
Seems like you are trying to calculate the maximum allowed references for a level,... if so this thread might be interesting,....

yeah thats right

Quote
to my knowledge, the specification has no restriction on the number of bframes.

this applies to both the levels and the standard overall.

x264 simply has an arbitrary maximum at 16.

the only primary restriction on bframes is the ability to have them or not, which is specified by the profile.

so i can use more than 9
actually i saw many using 16 bframes in there encodes but i was not sure if it is right to do that
thanx

12
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 ?

13
H.264/AVC / Re: how can i build x264 ??
« on: January 28, 2012, 11:29:01 AM »
thank you so much
every thing is right now :)

14
H.264/AVC / Re: how can i build x264 ??
« on: January 28, 2012, 10:23:39 AM »
yeah im reading the guide and trying
but now i get this problem:
No working C Compiler found

maybe i didn't install MinGW correctly

15
H.264/AVC / Re: how can i build x264 ??
« on: January 28, 2012, 08:26:22 AM »
thank you
sorry its my bad that i didn't say what is the problem

the problem is with header .h files, and i tried compile with gcc and the same problem
this:
Code: [Select]
In file included from E:\x264-snapshot-20120127-2245\/common/common.h:87:0,
                 from E:\x264-snapshot-20120127-2245\x264.c:33:
E:\x264-snapshot-20120127-2245\/common/osdep.h:36:20: fatal error: config.h: No
such file or directory
compilation terminated.

i tried to solute the problem by copy all header files in the source code folder to the include folder in MinGW
but i still have problems!

these:
Code: [Select]
In file included from E:\x264-snapshot-20120127-2245\/common/osdep.h:60:0,
                 from E:\x264-snapshot-20120127-2245\/common/common.h:87,
                 from E:\x264-snapshot-20120127-2245\x264.c:33:
e:\cross-mingw-w64.gcc462.20111101\bin\../lib/gcc/i686-w64-mingw32/4.6.2/../../.
./../i686-w64-mingw32/include/math.h:514:25: error: expected ')' before '/' toke
n
e:\cross-mingw-w64.gcc462.20111101\bin\../lib/gcc/i686-w64-mingw32/4.6.2/../../.
./../i686-w64-mingw32/include/math.h:515:24: error: expected ')' before '/' toke
n
In file included from E:\x264-snapshot-20120127-2245\/common/common.h:203:0,
                 from E:\x264-snapshot-20120127-2245\x264.c:33:
e:\cross-mingw-w64.gcc462.20111101\bin\../lib/gcc/i686-w64-mingw32/4.6.2/../../.
./../i686-w64-mingw32/include/x264.h:42:25: fatal error: x264_config.h: No such
file or directory
compilation terminated.

so, what shoud i do ? ???

16
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  :-\ :-\

17
Avisynth Usage / Re: DeDup filter ??
« on: January 09, 2012, 02:25:11 PM »
Dedup will drop all frames that are below the threshold up to the maximum drop count.  Dedup does not know what makes the output "bad".

As for the file size, what are you comparing it with?  The same input with the same options (excluding the TC fie)?  If so, I wonder what settings you're using.

im comparing between 2 outputs from the same input file and the same settings:

1st ouput without input the timecodes file to the encoder
2nd output with input the timecodes (--tcfile-in "path")

and the 1st output size less than the 2nd

18
Avisynth Usage / Re: DeDup filter ??
« on: January 08, 2012, 05:23:28 PM »
thank you  :)

i meant :"dedup will not drop frames that makes the output video bad, right?"
because i tried this way before http://minitheatre.org/forum/13-guides/75297-how-to-convert-cfr-to-vfr.html

but it wasn't good  :-\

but dedup 2-passes work fine  :)

another questing : the file size didn't reduce when i use this command --tcfile-in "path" ,why ?  ???
i used the timecodes v2 that dedup took out

(and thank you about the last topic , i removed it mistakenly :P)

19
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 ?  ???

20
H.264/AVC / Re: convert to 200 fps ????
« on: January 02, 2012, 08:58:24 AM »
ah, i understood now  :D
yes i used crf  :)

ok thanx man  ;D

21
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<

22
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 ??

23
H.264/AVC / Re: is converting CFR to VFR a Right thing ???
« on: December 10, 2011, 01:16:28 AM »
thank you  ;D

i tried it it is not very good

cfr to cfr is better than cfr to vfr

24
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 ?  ???

25
H.264/AVC / Re: help me please with 10-Bits Encoding !!
« on: November 05, 2011, 01:34:56 AM »
thank you so much  ;D
i was trying other ways but i will try this way
thanx  ;D

26
H.264/AVC / Re: help me please with 10-Bits Encoding !!
« on: November 04, 2011, 09:26:22 PM »
thanx man  :D

but can i add the this line
Code: [Select]
Dither_convey_yuv4xxp16_on_yvxx()only!?

and why i should add a deband filter ?
and what if the source was 10 Bits ? can i do the same things ?

27
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]