|
|
| rjisinspired |
| Posted: Jul 3 2010, 12:45 AM |
 |
|

Advanced Member
  
Group: Members
Posts: 1256
Member No.: 20008
Joined: 12-October 06

|
I did at one time get colorbars to work but I may not have it correct?
Colorbars(704, 480, "RGB32") Tone(length=10.0, frequency=440, samplerate=48000, channels=2, type="sine")
Says colorbars doesn't have a video stream. I then added this line: Blankclip(300, 704, 480, "RGB32", 30, 1001, 48000, true, true)
Still doesn't work. According to the avisynth wiki all that is needed is the colorbar line. |
 |
| rjisinspired |
| Posted: Jul 3 2010, 12:57 AM |
 |
|

Advanced Member
  
Group: Members
Posts: 1256
Member No.: 20008
Joined: 12-October 06

|
huh? I removed the "tone" line and now get bars? Why can't tone work with colorbars? I don't like the tone that is default. Looks like I'll have to go into audition and replace it, sigh. |
 |
| dloneranger |
| Posted: Jul 3 2010, 02:34 AM |
 |
|
Moderator
  
Group: Moderators
Posts: 2366
Member No.: 22158
Joined: 26-September 07

|
avisynth returns the last clip used the way your doing it, the last clip was audio only you need to mix the two together
a=Colorbars(704, 480, "RGB32") b=Tone(length=10.0, frequency=440, samplerate=48000, channels=2, type="sine") audiodub( a, b )
-------------------- MultiAdjust JoinWav WavNormalize FFMPeg Input Plugin v1827 UnSharpMask Windows7/8 Codec Chooser All FccHandlers Stuff inc. Installers for acm codecs AAC, AC3, LameMp3 |
 |
| rjisinspired |
| Posted: Jul 3 2010, 03:08 AM |
 |
|

Advanced Member
  
Group: Members
Posts: 1256
Member No.: 20008
Joined: 12-October 06

|
Thanks.
I was scratching my head there for a while. |
 |