Hi all,
I need to setup Staxrip in order to batch the editing/conversion of several video.
First of all let me say I think Staxrip is very usefull and complete software and I'd really like to keep using it and not change to anything else. Furthermore I am quite sure it could do things I need, it's just a question of setup...

Here's my tasks:
WHAT THE THEY GIVE ME: standard video mp4 (x264/aac)
WHAT I NEED TO SET UP FOR BATCH:
1) Overlay a Logo (already done!)
2) Trim the first 30''
3) Add at the end a second video (5'')
Basically my company wants to share video on Youtube, but they ask me to cut them at 30'', hard-fuse logo and add a bumper at the end which say "Go here XXXX to see the whole video".

CUTTING: I set up a filter which is Trim(0,fps*30). It cuts the video but not the audio. You watch the video, which stops on last frame while the audio keeps playing... How could I solve it?

ADD A VIDEO AT THE END: I thought something like this...
v1 = DirectShowSource("..\original video.mp4")
v2 = DirectShowSource("..\bumper.avi")
v2.BicubicResize(v1.Width, v1.Height)
last = v1 + v2

--> It says framesize doesn't match or something similar... any ideas?

Thank you in advance

elmuz