Jump to content

matkatamibakundo

Member
  • Posts

    80
  • Joined

  • Last visited

1 Follower

matkatamibakundo's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I have a video that is 5 hours long. whenever I try to Export Audio to Movie, I'm shown this dialog box: Then, when I click "OK", Logic freezes, the video exports without audio, and Logic stays frozen until it is done exporting the video. There is no option to export the audio as CAF when using "Export audio to movie". This issue exists in Logic Pro 10.6.2
  2. This is now called TargetEvent in the EventTypes.js //----------------------------------------------------------------------------- // TargetEvent : { target:, value: } //----------------------------------------------------------------------------- TargetEvent.prototype = new Event(); TargetEvent.prototype.constructor = TargetEvent; //----------------------------------------------------------------------------- function TargetEvent(e) { this.status = 0x50; if(e) { // clone existing event this.target = (e.target) ? e.target : ""; this.value = (e.value) ? e.value : 0; this.isRealtime = (e.isRealtime) ? e.isRealtime : false; this.beatPos = 0; } else { // default values this.target = ""; this.value = 0; this.beatPos = 0; this.isRealtime = true; } }; //----------------------------------------------------------------------------- TargetEvent.prototype.toString = function() { return '[' + this.constructor.name + ' target:' + this.target + ' value:' + this.value + ']'; };
  3. Is this even implemented? It exists in https://gist.github.com/djtech42/94e3b0980c684680ac79 which is a copy of that EventTypes.js hidden inside Logic Pro X.app. Fader.prototype = new Event(); Fader.prototype.constructor = Fader; //----------------------------------------------------------------------------- function Fader(e) { this.status = 0x50; if(e) { // clone existing event this.channel = (e.channel) ? e.channel : 1; this.number = (e.number) ? e.number : 1; this.value = (e.value) ? e.value : 0; this.inStartFrame = (e.inStartFrame) ? e.inStartFrame : 0; this.isRealtime = (e.isRealtime) ? e.isRealtime : false; } else { // default values this.channel = 1; this.number = 1; this.value = 0; this.inStartFrame = 0; this.isRealtime = true; } }; //----------------------------------------------------------------------------- Fader.prototype.toString = function() { return '[' + this.constructor.name + ' slot:' + this.channel + ' parameter ID:' + this.number + ' value:' + this.value + ']'; };
  4. Are there any developers who might be able to chime in here? It seems like this Fader object's functionality is not implemented yet.
  5. The problem with that is that i have to do that for every session that i want to use the kronos with the vintage b3. I'm looking for a preset script that i dont have to do anything but turn on the kronos (because the external midi settings are stored), add the b3 to the session, add the Scripter plugin and load in the script and be up and running. Seeing as the script api is not heavily documented, what does the Fader object do? It doesnt turn into a slider on the gui, so perhaps it's not fully implemented in Logic yet? Seems like they want to eventually make it replace the Fader object from the environment and how it can interact with a plugin the same way that automation lanes can.
  6. I have been experimenting with controlling the Vintage B3 plugin with my Korg Kronos using the External Control Surface mode on the kronos. This lets me manually assign CC numbers to all of the knobs, faders and buttons on the Kronos to control the B3. Unfortunately, the B3 doesn't have midi learn and the available CC options differ depending on which MIDI Controller mode you set it in. So, I have a question for the Environment Gurus in here. When I open up the automation view to see what parameters in the plugin can be automated, every control is available for automation as expected. When i draw in some automation and then open the Automation Event List, the events appear as "Fader". So, my question is as follows. is it possible to route regular CC data into the Environment and then convert it into a Fader event, so it'll be picked up by the Automation system? Furthermore, is it possible to create Fader events from within the Scripter plugin? edit: According to EventTypes.js hidden in Logic Pro X.app/Contents/Franeworks/MADSP.framework/Versions/A/Resources/ there is a Fader() event object. Any idea what it does?
  7. yeah, it's pretty altered compared to the old stuff. My buddy Quennel and I posted a video last night, check it out! he's a super heavy gospel cat, but he plays so much more than that. Mods, that youtube tag doesn't work.
  8. I posted a new Chop Of the Day video: Thanks for watching, hope it helps you improve musically!
  9. Hey folks, just thought I'd share my "Chop of the Day" youtube series with ya. It's a series of videos teaching a lick or phrase, mainly on keyboards. hope you enjoy it!
  10. your EWI is sending CC7 messages. Go into the setup on the unit and make sure it's turned off.
  11. did you read the manual about beat Mapping, specifically "Protect MIDI"? http://manuals.info.apple.com/MANUALS/1000/MA1648/en_US/logic_pro_x_user_guide.pdf around page 604
  12. Hey folks. I finally got around to putting together a demo reel. you can hear lots of LASS and WIVI in it: thanks for checking it out!
  13. so, Hyperdraw in the arrange view, vs. the Piano Roll?? I have to experiment with this..
  14. I wish there were a way to make automation stretch when you change the length of a region. this would go with the CC curves shown in the pictures. So, once I find the perfect stair-step or smooth curve, I could just change the length of the region and it would stretch/shrink relatively. Is there any way to do that?
  15. is it possible to use the transform window to create this effect? On the left is using the Automation Curve tool to generate the curve On the right, i manually drew it in. it's a tedious process, and I'm wondering if there is a way to get the Transform window to do it. I think it might be possible because when I delete the stair step portion in that picture, and click "Select Only" in the transform window, it says some 40+ events are selected. It appears the extra events are hidden under the "Additional Info" display in the Event List:
×
×
  • Create New...