Тёмный
David Domminney Fowler
David Domminney Fowler
David Domminney Fowler
Подписаться
Audio & Video Production Using Cubase 11, Premiere Pro, Waves, IK Multimedia
Writing & Playing Guitar
Recreational Coding
Topical Remixes & Blogs
Endless Self Promotion

I am a guitarist and singer in The Australian Pink Floyd Show, I program computers, make videos, produce songs, I used to have a studio, bit of a geek, currently making a film called 2020 Rendezvous - 2020rendezvous.com

Please subscribe, comment, like and all the things I'm meant to tell you to do!
Комментарии
@jawadhashmi1551
@jawadhashmi1551 Час назад
Amazing sound can u plz tell me abt this amazing patch? Which amp and effects u used in it?
@abdieldormant4790
@abdieldormant4790 6 часов назад
Yes!
@elsa_turador
@elsa_turador 21 час назад
0:16 wow 👌
@jawadhashmi1551
@jawadhashmi1551 День назад
Did u create this backing track?
@domminney
@domminney День назад
@@jawadhashmi1551 it’s the band I’m in…..
@GlennUpgraded
@GlennUpgraded 2 дня назад
Will this work with the Rodecaster Pro 2? I want to be able to do this as well on that device.
@domminney
@domminney День назад
@@GlennUpgraded in principle it will work on any midi device as long as you program it to respond!
@HubertMeunier-f5s
@HubertMeunier-f5s 8 дней назад
Hi Dave, I knew you are a great guitar player Because I saw you with TAPFS three Times in France two years ago, but I realize now that Méli was right when she said us that you also are a Genius of sound. Thank you very very much for the work you have done on her song. Story could be continued ? It should be fine ! Hubert (Méli’s dad)
@domminney
@domminney 8 дней назад
@@HubertMeunier-f5s thanks! I really enjoyed the session. So much talent.
@HubertMeunier-f5s
@HubertMeunier-f5s 8 дней назад
Yes, both of you !
@percarlen1024
@percarlen1024 10 дней назад
Are these presets available on ToneNet?
@domminney
@domminney 8 дней назад
@@percarlen1024 I haven’t put the patch on there, I just made it downloadable here
@jawadhashmi1551
@jawadhashmi1551 14 дней назад
Just wow killer tone killer playing Please share how u achieved this tone
@domminney
@domminney 14 дней назад
@@jawadhashmi1551 this was old, probably guitar rig 5 and eq
@jawadhashmi1551
@jawadhashmi1551 14 дней назад
@@domminney amazing man
@seanski44
@seanski44 15 дней назад
Cool, engaging stuff! :) look forward to hearing the fruits of your labour!
@antimonos
@antimonos 15 дней назад
Goddamn I hate David Pakman.
@tonmendesart
@tonmendesart 16 дней назад
Absolute engineering. Absolute cinema.
@masterastakhovsound
@masterastakhovsound 17 дней назад
Thanks ❤️
@EvansVictor-q3w
@EvansVictor-q3w 18 дней назад
Rico Plains
@domminney
@domminney 18 дней назад
@@EvansVictor-q3w dunno what that means but thanks for the comment!
@kittyonmydesk5532
@kittyonmydesk5532 18 дней назад
Ladies, hear me out: As rudy is to farts throughout his speech; that is the same rate during our time of months and for every little thing we do
@iangant3393
@iangant3393 18 дней назад
How many podcasts did you do only find 8
@domminney
@domminney 18 дней назад
@@iangant3393 they didn’t really take off but recently I’ve had more people interested so I may do more.
@josephkelly9532
@josephkelly9532 19 дней назад
WOW THAT'S AWESOME
@lynfowler5973
@lynfowler5973 19 дней назад
Wow!
@TricksOfADominatrix
@TricksOfADominatrix 19 дней назад
Absolutely fukkin EPIIIIIIICCCCCC 😍🙌
@Nikolausi44
@Nikolausi44 19 дней назад
Really amazing, Dave!
@frajaralon
@frajaralon 24 дня назад
thanks for taking the time to walk through all of this 👍
@euisaachenrique
@euisaachenrique 26 дней назад
I just printed the code and asked chat GPT to transcribe it for us: var easymidi = require('easymidi') var input = new easymidi.Input('BCF2000') var robot = require("robotjs") var mouseDown = false var mouseUpCallback = undefined var currentController = undefined setInterval(function() { console.log(robot.getMousePos()) }, 1000) var controllers = {} var pages = {} pages.primaries = [1945, 213] pages.hdr = [2004, 213] pages.curves = [2192, 213] pages.key = [2687, 213] controllers[16] = { x: 1930, y: 600, page: pages.primaries } controllers[17] = { x: 2161, y: 600, page: pages.primaries } controllers[18] = { x: 2384, y: 600, page: pages.primaries } controllers[19] = { x: 2626, y: 600, page: pages.primaries } controllers[20] = { x: 1984, y: 295, page: pages.primaries } controllers[21] = { x: 2163, y: 295, page: pages.primaries } controllers[22] = { x: 2311, y: 295, page: pages.primaries } controllers[23] = { x: 2341, y: 637, page: pages.primaries } var notes = {} notes[32] = { x: 2025, y: 341, page: pages.primaries } notes[33] = { x: 2252, y: 341, page: pages.primaries } notes[34] = { x: 2481, y: 341, page: pages.primaries } notes[35] = { x: 2709, y: 341, page: pages.primaries } notes[36] = controllers[20] notes[37] = controllers[21] notes[38] = controllers[22] notes[39] = controllers[23] notes[16] = { page: pages.primaries } notes[17] = { page: pages.hdr } notes[18] = { page: pages.curves } notes[19] = { page: pages.key } function doubleClick() { robot.mouseClick() setTimeout(function() { robot.mouseClick() inCc = false }, 60) } input.on('noteon', function(msg) { console.log(msg) var note = notes[msg.note] if (note) { robot.moveMouse(note.page[0], note.page[1]) robot.mouseClick() wait(100) if (!note.x) return robot.moveMouse(note.x, note.y) doubleClick() } }) }) var inCc=false input.on('cc', async function (msg) { console.log(msg) if (inCc) return if (mouseDown && currentController!==msg.controller) { robot.mouseToggle("up") mouseDown=false } inCc=true currentController=msg.controller if (controllers[msg.controller]) { var controller=controllers[msg.controller] var x=controller.x var y=controller.y } var value=msg.value if (value>64){ value=(value-64)*(-1) } if (!mouseDown) { robot.moveMouse(controller.page[0],controller.page[1]) robot.mouseClick() wait(100) robot.moveMouse(x,y) robot.mouseToggle("down") mouseDown=true inCc=false return } var currentMousePos=robot.getMousePos() var newX=currentMousePos.x+(value*2) var newY=currentMousePos.y robot.moveMouse(newX, newY) if (mouseUpCallback) { clearTimeout(mouseUpCallback) } mouseUpCallback=setTimeout(function(){ robot.mouseToggle("up") mouseDown=false inCc=false }, 500) } inCc=false }) async function wait(ms){ return new Promise(function(resolve, reject) { setTimeout(resolve, ms) }) }
@domminney
@domminney 19 дней назад
I've added a bit since then but yes!
@rickyred001
@rickyred001 27 дней назад
Was looking for some help with this plug in, this video is by far and away the clearest explanation on how to use it I've seen, and I've seen a lot ! Cheers Dave
@domminney
@domminney 27 дней назад
@@rickyred001 no probs! Glad it’s helped
@JKoehr27
@JKoehr27 28 дней назад
Tell me more about these guitars! I seem to have a similar problem ahahah...
@euisaachenrique
@euisaachenrique 29 дней назад
Amazing! The internet claims for your code my friend haha I would help me and so many others!
@domminney
@domminney 29 дней назад
@@euisaachenrique soon I promise. I’m on tour right now so can’t do it till I’m back
@deusjesusmaria7072
@deusjesusmaria7072 Месяц назад
This is very good. Thank you so much
@domminney
@domminney 19 дней назад
Glad you like it!
@hihopeseveryday
@hihopeseveryday Месяц назад
Daves recent post on 'Am I a good guitar player?' I guess many of us related to and the winding roads of our musical abilites being honed as we grew up was a very honest take on the whole story. I've watched since Dave came into the band and as Gilmour lifted Floyd so Dave working with Steve intuitively (big word for today) is outstanding. Steve, Dave and Ido from Brit Floyd rock it out the best when it comes to Gilmour. Well done fellas and hows about coming out to Australia once in a while? Hint. And thanks for the recent 'Echoes' event and all that lovely WEM stuff stacked up, ah the old days. Keep it on goin fellas you're keeping some incredible music which is being reintroduced to many new generations who've never even heard of 'Pink Who?'
@hihopeseveryday
@hihopeseveryday Месяц назад
Well, I bet that felt good yeah!
@60secondsinireland
@60secondsinireland Месяц назад
This looks amazing, fair play! Is the code available anywhere?
@domminney
@domminney Месяц назад
@@60secondsinireland I’m currently on tour but will finish and publish when I’m home!
@60secondsinireland
@60secondsinireland Месяц назад
@@domminney Nice one, all the best with the touring!
@hihopeseveryday
@hihopeseveryday Месяц назад
Funny almost a same outfit here, started at 10, got serious at 12. Followed Steve Lukather, Dan Huff, Steve Stevens, then The Edge, David Gilmour and everything on from Dark Side. Attended music school and then deeper classes to boot to read and compose. Well, my ear had kicked in and it bit hard, that like you I could narrow it down figure it out then rock it out. Musically, my life took a twist after a serious work accident at 26yoa just newly married. Then met a dear friend and formed a combo of fusion jazz and dance band music, Madinat ions were huge then. So now at 60 I have my own home studio with an insurmountable amount of gear it's nutts. But my point is our journey is our journey. I follow you guys and Brit Floyd but yourself and Ido are the best at the craft keeping a dream alive....when music was music and bands lived!! If I hear one more solo artist I'll gag it! Keep doing what you do best Dave, I miss Steve to until I realise it's over 35yrs you buggers have been at this. Cheers from Australia mate!!
@domminney
@domminney Месяц назад
@@hihopeseveryday cheers for you comment my friend.
@johnralph7091
@johnralph7091 Месяц назад
Which is your Fave Dave? x
@domminney
@domminney Месяц назад
@@johnralph7091 one that’s not in the video! 🤣
@alexrasmussen3758
@alexrasmussen3758 Месяц назад
Been trying to figure out a solution like this for months! Would love to see the code!
@domminney
@domminney Месяц назад
@@alexrasmussen3758 I’m currently on tour but will finish and publish when I’m home!
@warthogA10
@warthogA10 Месяц назад
I think perhaps it would have been better to try just using Gilmore's style, rather than bits and pieces of his actual solos mingled together.. But.. 🤷 it's all fun
@domminney
@domminney Месяц назад
@@warthogA10 each to their own, I spent about 10 minutes on it and it did what I intended it to do
@warthogA10
@warthogA10 Месяц назад
@@domminney I wasn't knocking it btw
@warthogA10
@warthogA10 Месяц назад
What if Jeff Beck had done the solo? 🤔 But you'd have to go back to his earlier days when he used Gibson Les Pauls..
@GustavoOio
@GustavoOio Месяц назад
AWESOME MY FRIEND!
@theinstigator2715
@theinstigator2715 Месяц назад
Thanks for doing this, Dave. Is it just me, though, or are there less than 10 distinct sounds here and at least 75 that are pretty much identical to others?
@domminney
@domminney 17 дней назад
I think the same is true for amps, it’s all just eq and wave shaping
@williamsteffen7465
@williamsteffen7465 Месяц назад
It does sound good. I am hearing some delay repeat. I don’t see that in the effects chain? I saw you said a tele was used. I would be interested in the interface used and the gain staging. In all these type modelers it seems to be the crucial element. Too, I am wondering if there is any post production on the clips. Sounds great in this mix. It would be interesting to hear the guitar track on its own, minus the backing. Whatever you did, I’m not denying this sounds great. My question is with a presonus itwo interface and specific attention to gain staging, can I get this tone. I hear things like this, but I never seem to be able to duplicate what I here.
@domminney
@domminney Месяц назад
@@williamsteffen7465 the delay is a stock plugin that gets automated in during the solo bit at the end. Interface wise from what I remember I kept it to stuff anyone can have cheap, it was either a behringer x32 or the umc 2i2 with the z-tone guitar di by IK multimedia. I use SSL & RME interfaces for day to day stuff but don’t use them for demos in case they are unrealistic to what the average user has at home, plus my x32 allows digital routing options for doing videos that my SSL stuff doesn’t.
@williamsteffen7465
@williamsteffen7465 Месяц назад
@@domminney ok, thanks for the reply. perhaps the direct box before the interface is the difference. I usually just use the instrument input of the itwo. I’m still confused on these modelers on setting proper gain. Selecting instrument input with the gain on the interface all the way down, or using the instrument input on interface and adjusting gain to just below clipping on interface….or in the case of using a di, it’s settings? Guess I’ll just keep experimenting. Obviously some folks get it to run quite well. Thanks again
@domminney
@domminney Месяц назад
@@williamsteffen7465 the DI will make a difference but your instrument input should work. Generally if I hit the guitar loud the peak should be around -6. On my video about making the sound for another brick in the wall part II solo I included the guitar file and patch etc. you can use this as a guide, there was nothing fancy with that either. Also don’t stand or sit to close to anything that will give you interference through your pickups.
@williamsteffen7465
@williamsteffen7465 Месяц назад
@@domminney thanks again for your reply’s and input. I will experiment with the info you have given me. I appreciate it. When you say -6. Does that mean dry guitar before engaging the plug-in, or -6 when plug in is engaged. Thanks again!!
@domminney
@domminney Месяц назад
@@williamsteffen7465 dry signal captured from the interface, your input level!
@StratsRUs
@StratsRUs 2 месяца назад
Everything has been on sale at excellent prices lately.Which I appreciate because I just about saved up for a new computer. I like the UAD and IK T Racks.Tonex and Amplitube 5 Max have also been on sale plus MODO drum.Then they gave me MODO 2 Bass free too! IK are great. Waves I was put off by because of their renewal pricing. I'm very happy otherwise because SSD5.5 is also on sale ! Phew. Thanks
@SAMMYKO1
@SAMMYKO1 2 месяца назад
Amazing work and tone but even after 3 years I am baffled!
@domminney
@domminney 2 месяца назад
@@SAMMYKO1 what baffles you?
@e.apollis2877
@e.apollis2877 2 месяца назад
t racks for condensers Waves for dynamics
@jessejames5825
@jessejames5825 2 месяца назад
David, I was in the front right (stage) side of the Audience at the Hult Center Concert on Aug 4th 2024 in Eugene, OR USA. You asked me to send you my video of the crazy old guy trying to crawl up on your stage during the last 2 songs of the night. Where would you like me to send the link to? 🙂
@domminney
@domminney 2 месяца назад
Hello mate! Do you use Facebook? I'm on there @domminney If not email me df.onlyit@gmail.com Ha ha, he was brilliant! Thanks :)
@jessejames5825
@jessejames5825 2 месяца назад
I love this. :)
@jessejames5825
@jessejames5825 2 месяца назад
David, I was in the front row right (stage) side of the Audience at the Hult Center Concert on Aug 4th 2024 in Eugene, OR USA. You asked me to send you my video of the crazy old guy trying to crawl up on your stage during the last 2 songs of the night. Where would you like me to send the link to? 🙂
@domminney
@domminney Месяц назад
can you email df.onlyit @ gmail dot com? I replied to your other comment but I'm not sure you got it!
@Iriswrx1
@Iriswrx1 17 дней назад
@@domminney @jessejames5825 how about you send that to all of us. That sounds hilarious. 😂😂😂
@videoclipestraduzidos9888
@videoclipestraduzidos9888 2 месяца назад
Thank you very much for this great contribution! When you make videos like this, you are expanding the territory so that rock music can continue to live among us. You have gained another subscriber to your channel. I am already looking forward to the next ones.
@sergeantcrow
@sergeantcrow 2 месяца назад
Wow !
@bobbarker6511
@bobbarker6511 2 месяца назад
I just bought Amplitude 5Max v2 a couple of weeks ago. only have like 5 amps. Do I have to buy all the amps you are demoing? I still have not got a decent tone yet but I'm sure its me. Anybody know any good training videos for a clean to Rock sound?
@domminney
@domminney Месяц назад
Max comes with all the amps, are you sure you have activated them all?
@StratsRUs
@StratsRUs 3 месяца назад
Thank you !
@medicenceni2609
@medicenceni2609 3 месяца назад
Have you done all this only using amplitube?
@domminney
@domminney 3 месяца назад
@@medicenceni2609 yes!
@medicenceni2609
@medicenceni2609 3 месяца назад
@@domminney it's amazing bro! Cheers from argentina!
@briodJames
@briodJames 3 месяца назад
I am a beginner perhaps tha that is why but I simply added your preset in google drive in my amplitube but the song I get is not close to the sound you show in this video, I tried with Fender strat , P90 Yamaha Revestar and also Les paul. No way it is not the way it sounds here or I might be wrong I try again
@domminney
@domminney 3 месяца назад
@@briodJames I also released a Strat version but here are things you should check…. Make sure you are using an input that takes an instrument level signal, don’t use a line in then gain it up. I use the IK multimedia z-tone buffer for this, it has massively improved my guitar tones via a DI. Not all guitars sound the same so tweak the opening EQ or add another before it so you can match your guitar closer to the one I made the patch with. Make sure you’re not clipping your input signal. In my experience most people’s mistake is with the incorrect impedance on the input, it must be an instrument input.
@briodJames
@briodJames 3 месяца назад
@@domminney thanks I use Motu interface and the input says : LINE /MiC/ Guitar it is instrument input for others ok I will try :)
@briodJames
@briodJames 3 месяца назад
@@domminney All the wave files are just for my reference right?
@domminney
@domminney 3 месяца назад
@@briodJames it’s been a while since I looked at what was included but I’m sure I put in my DI’d guitar so you could test getting the same sound along with the backing
@mylesdavey6654
@mylesdavey6654 3 месяца назад
Killer!