Log in

View Full Version : CCE SP3 loads only first cell.


rhaz
8th July 2014, 09:03
Hi, I have this simple .avs
LoadPlugin("DGDecode.dll")
LoadPlugin("ColorMatrix.dll")
DGDecode_mpeg2source("1.d2v", info=3)
ColorMatrix(hints=true, threads=0)
trim(0,7454)
ConvertToYUY2(interlaced=true)
AudioDub(BlankClip())
When I load it in Cinema Craft Encoder it loads only first cell of the .m2v which is one big DVD file. So why CCE does that? It should load entire thing, not just first 4 minutes.
http://i.imgur.com/yzIsM8b.png

TheSkiller
8th July 2014, 10:38
What happens if you open that script with a media player or in VirtualDub? Does it load more than those 5 minutes?

bigotti5
8th July 2014, 10:47
It is not CCE, it is your trim command

trim(0,7454)

rhaz
8th July 2014, 11:21
Lol! You are right bigotti5! Can't believe didn't see that, it's obvious. Lol, thanks again.