DorkingtonPugsly Posted December 20, 2013 Report Share Posted December 20, 2013 Ahh very nice. Since I'm a day away form break, I'm excited to download this and get knee deep into this thing. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2106552 Share on other sites More sharing options...
awepittance Posted December 20, 2013 Report Share Posted December 20, 2013 going to find some time to try the new OS later tonight, I haven't seen yet how you input polyphony, i wonder if its just for live keypressing/midi keyboard in or if you can actually stack notes with the step sequencer ala monomachine Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide awepittance's signature Hide all signatures Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2106573 Share on other sites More sharing options...
DorkingtonPugsly Posted December 20, 2013 Report Share Posted December 20, 2013 I actually prefer playing stuff on my midi keyboard and recording live when I can, so either way it's good. Oh yeah when do we get to know what that other machine is? Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2106676 Share on other sites More sharing options...
Guest Posted December 20, 2013 Report Share Posted December 20, 2013 it's a truly great update. you can live-rec chords, the sequencer will pack notes which are played in short succession into a single trig. the arpeggiator note-offsets are used to hold the note values. so a chord that is stored within a single trig will share velocity, note length etc between its used voices. but you can use e.g. multiple trigs & microtiming to program a guitar-strum-like chord or something. polyphony is done in a clever way, e.g. if you put a 3-note-chord on the same step in track 1 & 2, it will give 2 voices to each of them. definitely try messing with the poly-settings on drum beats. (also, this app gave my app-efforts a huge boner) Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2106686 Share on other sites More sharing options...
Guest Posted December 20, 2013 Report Share Posted December 20, 2013 so i've had the chance streamline my code... the following few lines will randomly grab a sound from the soundpool and load it into the currently selected track: NSString *randomSoundKey = [NSString stringWithFormat:@"snd.%d", (uint8_t) mdmath_rand(0, 127)]; NSString *settingsKey = @"set.x"; [A4Request requestWithKeys:@[randomSoundKey, settingsKey] options:0 delegate:nil completionHandler:^(NSDictionary *dict) { A4Settings *settings = dict[settingsKey]; if(settings.selectedTrackParams < 4) { A4Sound *sound = dict[randomSoundKey]; sound.position = settings.selectedTrackParams; [sound sendTemp]; } } errorHandler:^(NSError *err) { DLog(@"crap! %@", err); }]; and the following will grab the current pattern and randomly replace sound-locks: [A4Request requestWithKeys:@[@"pat.x"] options:0 delegate:nil completionHandler:^(NSDictionary *dict) { A4Pattern *pattern = dict[@"pat.x"]; for(int trackIndex = 0; trackIndex < 4; trackIndex++) { int trackLength = pattern.masterLength; if(pattern.timeMode == A4PatternTimeModeAdvanced) { trackLength = [pattern track:trackIndex].settings->trackLength; } for (int stepIndex = 0; stepIndex < trackLength; stepIndex++) { A4Trig trig = [[pattern track:trackIndex] trigAtStep:stepIndex]; if(trig.flags & A4TRIGFLAGS.TRIG && trig.soundLock != A4NULL) { trig.soundLock = mdmath_rand(0, 127); [pattern setTrig:trig atStep:stepIndex inTrack:trackIndex]; } } } [pattern sendTemp]; } errorHandler:^(NSError *err) { DLog(@"meh: %@", err); }]; so yeah I can type out these features in a couple of minutes, it's lush and works very well. (UI still is the hardest part) Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2106694 Share on other sites More sharing options...
Guest Posted December 21, 2013 Report Share Posted December 21, 2013 u guyze not diggin the update? or speechless / overwhelmed? or kill? Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2107088 Share on other sites More sharing options...
awepittance Posted December 21, 2013 Report Share Posted December 21, 2013 havent tried it yet, plan to tonight Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide awepittance's signature Hide all signatures Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2107166 Share on other sites More sharing options...
Keyxox Posted December 22, 2013 Report Share Posted December 22, 2013 On 12/21/2013 at 7:08 PM, phling said: u guyze not diggin the update? or speechless / overwhelmed? or kill? no, no....i just haven't bought the synth yet Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2107230 Share on other sites More sharing options...
awepittance Posted December 23, 2013 Report Share Posted December 23, 2013 On 12/21/2013 at 7:08 PM, phling said: u guyze not diggin the update? or speechless / overwhelmed? or kill? holy shit dude, i'm so excited to have a poly analog4. it's pretty amazing so far, didn't expect to be this blown away by what i;m hearing right now, Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide awepittance's signature Hide all signatures Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2107668 Share on other sites More sharing options...
Guest Posted December 23, 2013 Report Share Posted December 23, 2013 (edited) imo: - set poly to "rotate" & enable "use track sounds." - then load some drum sounds into all 4 tracks... - then put some trigs down on various tracks, mess with the arps. - mess with the poly settings (careful with unison) & track mutes Edited December 23, 2013 by Guest Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2107669 Share on other sites More sharing options...
psn Posted December 23, 2013 Report Share Posted December 23, 2013 On 12/23/2013 at 2:17 PM, phling said: imo: - set poly to "rotate" & enable "use track sounds." - then load some drum sounds into all 4 tracks... - then put some trigs down on various tracks, mess with the arps. - mess with the poly settings (careful with unison) & track mutes Sounds like fun, will give that a go when I have the time! Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2107695 Share on other sites More sharing options...
Guest Posted December 29, 2013 Report Share Posted December 29, 2013 have an iPad & CCK and want to beta-test my app? signup here: http://tflig.ht/19mP2XQ Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109407 Share on other sites More sharing options...
awepittance Posted December 29, 2013 Report Share Posted December 29, 2013 (edited) "recruitment team now closed" not able to sign up :(just played my first gig with the analog4 as a center piece. Used that forum drum pack and was really happy with it. This thing has drums that rival my Xbase, and for that I'm very pleased. Edited December 29, 2013 by John Ehrlichman Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide awepittance's signature Hide all signatures Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109523 Share on other sites More sharing options...
DorkingtonPugsly Posted December 30, 2013 Report Share Posted December 30, 2013 Guys I need help. How do I get the os upgrade? I have C6 up with the file loaded and the analog four in os upgrade mode but when I click send nothing happens. C6 is config'd to the a4 and the a4 input/output is set to usb. I'm obviously doing something wrong. :< Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109658 Share on other sites More sharing options...
Guest Posted December 30, 2013 Report Share Posted December 30, 2013 have you *selected* the OS .syx file in c6 before sending? sounds like this might be the issue. i.e. in the list of files, clicked on the row containing the OS file so it is marked? Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109715 Share on other sites More sharing options...
Guest Posted December 30, 2013 Report Share Posted December 30, 2013 http://vine.co/v/hVKLg9DFYUV Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109734 Share on other sites More sharing options...
DorkingtonPugsly Posted December 30, 2013 Report Share Posted December 30, 2013 I think I did that. But still nothing happens. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109751 Share on other sites More sharing options...
Guest Posted December 30, 2013 Report Share Posted December 30, 2013 dunno... does the progress bar in c6 show a progress? Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109780 Share on other sites More sharing options...
Guest Posted December 30, 2013 Report Share Posted December 30, 2013 if not, it's not sending.. then it's likely an issue with c6, because it sucks. do you have the latest c6? does c6 show the Turbo thing as enabled in the main window? it needs to look like this: turbo thing enabled, and you need to select the file in the list. then hit send, and the progress bar should update. Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109782 Share on other sites More sharing options...
DorkingtonPugsly Posted December 30, 2013 Report Share Posted December 30, 2013 I can't seem to hit turbo, like I click on it and nothing happens. The progress bar's dead too. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109785 Share on other sites More sharing options...
Guest Posted December 30, 2013 Report Share Posted December 30, 2013 make sure config looks like this: "Elektron Analog Four" selected in both Midi In and Out, hit okay. That Turbo toggle should then become active.. Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109786 Share on other sites More sharing options...
DorkingtonPugsly Posted December 30, 2013 Report Share Posted December 30, 2013 Ah! Yes that works! Thanks so much man! :> I'm glad there are kind men in this world who'll help incompetent people like me. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2109792 Share on other sites More sharing options...
Guest Posted December 31, 2013 Report Share Posted December 31, 2013 lol don't mention it Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2110081 Share on other sites More sharing options...
DerWaschbar Posted December 31, 2013 Report Share Posted December 31, 2013 That Vine vid is amazing. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide DerWaschbar's signature Hide all signatures <3 </3 ¯\(シ)/¯ Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2110085 Share on other sites More sharing options...
DorkingtonPugsly Posted December 31, 2013 Report Share Posted December 31, 2013 Ahh and also what cable/cord do I need if I wana connect my Machinedrum to my macbook? Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/76485-analog-four-teaser-trailer/page/9/#findComment-2110089 Share on other sites More sharing options...
Recommended Posts