YouTube With Denver Moore

Get More Views
Save More Time

TRUSTED BY

(function () { const block = document.currentScript.parentNode; const wrap = block.querySelector('.carOne-wrap'); const inner = block.querySelector('.carOne-inner'); const isMobile = /Mobi|Android|iPhone|iPad|iPod/i.test(navigator.userAgent) || window.innerWidth < 768; const baseSpeed = parseFloat(wrap.getAttribute('data-speed')) || 0.3; const speed = baseSpeed; const cap = parseFloat(wrap.getAttribute('data-cap')) || 1.0; function scaleImages() { const imgs = inner.querySelectorAll('img'); imgs.forEach(img => { const baseHeight = 200; img.style.height = Math.round(baseHeight * cap) + 'px'; img.style.transform = 'scale(1)'; img.style.opacity = 1; }); } function whenReady(cb) { let tries = 0; (function wait() { const w = inner.scrollWidth; if (w > 0) { cb(); return; } if (++tries < 240) requestAnimationFrame(wait); })(); } let pos = 0, segmentWidth = 0, raf = 0; let dragging = false, startX = 0, startPos = 0; let lastTime = 0; let velocity = 0; let lastDragX = 0; let lastDragTime = 0; const getTX = () => { const t = getComputedStyle(inner).transform; if (!t || t === 'none') return 0; const m = t.match(/matrix(3d)?\(([^)]+)\)/); if (!m) return 0; const v = m[2].split(',').map(parseFloat); return m[1] ? v[12] : v[4]; }; const apply = x => inner.style.transform = 'translate3d(' + x.toFixed(2) + 'px,0,0)'; function measure() { const itemCount = inner.children.length / 3; segmentWidth = inner.scrollWidth / 3; } function buildLoop() { const originals = Array.from(inner.children); originals.forEach(node => inner.appendChild(node.cloneNode(true))); originals.forEach(node => inner.appendChild(node.cloneNode(true))); measure(); pos = -segmentWidth; apply(pos); } function step(timestamp) { if (!lastTime) lastTime = timestamp; const deltaTime = Math.min(timestamp - lastTime, 100); lastTime = timestamp; if (!dragging) { if (Math.abs(velocity) > 0.01) { pos += velocity * (deltaTime / 16.67); velocity *= 0.95; } else { velocity = 0; pos -= speed * (deltaTime / 16.67); } } if (segmentWidth > 0) { if (pos <= -segmentWidth * 2) pos = -segmentWidth; if (pos > -segmentWidth) pos = -segmentWidth * 2; } apply(pos); scaleImages(); raf = requestAnimationFrame(step); } function onDown(clientX) { dragging = true; startX = clientX; startPos = getTX(); lastDragX = clientX; lastDragTime = performance.now(); velocity = 0; wrap.style.cursor = 'grabbing'; } function onMove(clientX, passive) { if (!dragging) return; const now = performance.now(); const delta = clientX - startX; const timeDelta = now - lastDragTime; if (timeDelta > 0) { velocity = (clientX - lastDragX) / timeDelta * 16.67; } lastDragX = clientX; lastDragTime = now; let newPos = startPos + delta; if (segmentWidth > 0) { if (newPos <= -segmentWidth * 2) newPos = -segmentWidth; if (newPos > -segmentWidth) newPos = -segmentWidth * 2; } pos = newPos; apply(pos); scaleImages(); if (!passive) return false; } function onUp() { dragging = false; wrap.style.cursor = 'grab'; } wrap.addEventListener('mousedown', e => onDown(e.pageX)); window.addEventListener('mousemove', e => onMove(e.pageX, true)); window.addEventListener('mouseup', onUp); wrap.addEventListener('touchstart', e => onDown(e.touches[0].pageX), { passive: true }); wrap.addEventListener('touchmove', e => { const r = onMove(e.touches[0].pageX, false); if (r === false) e.preventDefault(); }, { passive: false }); window.addEventListener('touchend', onUp); const ro = new ResizeObserver(() => measure()); ro.observe(wrap); whenReady(() => { buildLoop(); cancelAnimationFrame(raf); raf = requestAnimationFrame(step); }); })();

What Creators SAY

Real Feedback - Real Results

Since starting:

Gained over 2m subscribers together
Held team-wide strategy calls weekly

"Denver is solely responsible for the video that has made us the most amount of money we have ever made on YouTube."

Since starting:

Achieved over 2.3b views together in 1 year
Gained over 7m subscribers

"There's a lot of fakers out there and there's one thing I will say, Denver is not a faker, he knows YouTube."

Since starting:

Reached 1m Subscribers in less than a year
Achieved over 34.6m watch time (hours)

"I feel like I've learned more about YouTube than I ever did before. If you wanna be the biggest, hire Denver."

Since starting:

Drastically improved content strategy
Doubled yearly revenue

"Once Denver joined, I felt like I had a real partner who understood how to grow a channel long-term."

Since starting:

From 0 to 100k+ Subscribers
Achieved 19.5m views and counting

"Denver has helped me launch my YouTube from nothing to over 125k subs in less than 24 months."

Since starting:

Created new channels reaching 2m+ views longform expanding business
Increased monthly revenue by 14%

"Denver is pretty much the smartest person I've ever met with YouTube... You should definitely work with Denver."

PROOF OF SUCCESS

From new creators to established channels, fast forward your YouTube growth.
Creators come to me for one reason: actual results.
No nonsense. Just more views.

WHAT CLIENTS SEE REGULARLY

(function(){ const block=document.currentScript.parentNode; const wrap=block.querySelector('.carTwo-wrap'); const inner=block.querySelector('.carTwo-inner'); const speed=parseFloat(wrap.getAttribute('data-speed'))||0.3; function ready(cb){let t=0;(function w(){if(inner.scrollWidth>0){cb();return;}if(++t<120)requestAnimationFrame(w);})(); } let pos=0,drag=false,startX=0,dragStart=0,half=0; function getTX(){const t=getComputedStyle(inner).transform;if(!t||t==='none')return 0;const m=t.match(/matrix(3d)?\(([^)]+)\)/);if(!m)return 0;const v=m[2].split(',').map(parseFloat);return m[1]?v[12]:v[4];} const apply=x=>inner.style.transform='translate3d('+x+'px,0,0)'; function step(){ if(!drag){ pos-=speed; if(half>0 && pos<=-half){ pos=0; } } apply(pos); requestAnimationFrame(step); } wrap.addEventListener('mousedown',e=>{drag=true;startX=e.pageX;dragStart=getTX();wrap.style.cursor='grabbing';}); wrap.addEventListener('mousemove',e=>{if(!drag)return;const delta=e.pageX-startX;const newPos=dragStart+delta;if(half>0){pos=((newPos%half)+half)%half;if(pos>0)pos-=half;}else{pos=newPos;}apply(pos);}); window.addEventListener('mouseup',()=>{drag=false;wrap.style.cursor='grab';}); wrap.addEventListener('touchstart',e=>{drag=true;startX=e.touches[0].pageX;dragStart=getTX();wrap.style.cursor='grabbing';},{passive:true}); wrap.addEventListener('touchmove',e=>{if(!drag)return;const delta=e.touches[0].pageX-startX;const newPos=dragStart+delta;if(half>0){pos=((newPos%half)+half)%half;if(pos>0)pos-=half;}else{pos=newPos;}apply(pos);},{passive:true}); window.addEventListener('touchend',()=>{drag=false;wrap.style.cursor='grab';}); ready(()=>{half=inner.scrollWidth/2;requestAnimationFrame(step);}); })();

WHAT I DO FOR CHANNELS

VIDEO IDEATION

I provide a stream of proven ideas weekly that fit you and your specific style within your niche.

OPTIMIZE RETENTION

I teach the same editing and storytelling principles used by today’s biggest creators to keep viewers watching.Editing feedback, strategic planning, and video structure included.

TAILOR PACKAGING

Make better thumbnails and titles that get more clicks.Ideation, sketches, artist coordination and more!

WHAT I ALSO DO

ANALYTIC RESEARCH

I break down what’s actually happening in your analytics, why a video worked or didn’t, and exactly what to double down on next so decisions are clear and unemotional.

STRATEGY & DIRECTION

I help you clarify your positioning, niche, and long-term vision so every video ladders up to a bigger goal, not just the next upload.

TEAM BUILDING

I work with your entire team, not just you, teaching editors, designers, and collaborators how to think strategically so the whole operation levels up together.

STREAMLINE WORKFLOW

I help you streamline filming, editing, and feedback so content gets made faster, with less stress, and without quality dropping as you scale.

AI IMPLEMENTATION

I show you practical ways to use AI for ideation, scripting, titles, thumbnails, research, and workflow automation so you get more output without burning out.

HANDLE BRAND DEALS

I guide you on pricing, media kits, outreach, and negotiations so you know your value and avoid bad deals or undercharging.

PROVIDE PERSPECTIVE

I’m here to pressure test ideas, calm algorithm panic, and keep you focused on what actually moves the needle.

GROWTH & SCALING

I help you think beyond single videos, including series, channel expansion, audience segmentation, and building something that lasts.

You’re not just getting feedback on videos. You’re getting a strategist who thinks about the entire channel, the team behind it, and the business it can become.


ABOUT ME

I taught in an elementary school for six years before saying goodbye to a career I genuinely loved.During that time, every spare minute I had went into learning YouTube. Eventually, it paid off. I almost made more in one month than I had in an entire year as a teacher, and that changed everything.My wife and I are now able to stay home and spend more time with our kids. In a way, I never really stopped teaching. I just teach something different now.Today, I work with creators of all sizes, including some of the biggest channels in the world. We focus on the things that actually move the needle. Video ideas. Thumbnails. Strategy. Systems that save time and increase views and revenue.None of this is instant. It takes work and patience. But it also does not have to take years of trial and error if you are learning the right things from the right people. I hit 1 million subscribers in just 350 videos and I now get to teach others how to make this dream come true as fast as possible.If you are here, chances are you are not just chasing extra money, even though that is nice, too. You are looking for more time, balance, and purpose in your life.That is what YouTube gave me.My role is simple. I help creators understand how this really works, how to put the pieces together, and build something that can last for years.If learning this skill and building something of your own sounds like the path you want to take, you are in the right place.Whatever you do, work at it with all your heart, as working for the Lord.
Col 3:23


Want more
views, money & time?

Of course you do. We all do. This is just what I do for creators.
Contact me ASAP and see if we're a good fit.

Denver Moore

© All rights reserved 2025

CALLS ARE BOOKED FULL

I'm currently not available for more calls, but sometimes there are exceptions.
Contact me on X, DMs are open.

YouTube Cohort COMING SOONyt.school

250,000,000 MONTHLY VIEWS

This is the current number of just longform views from my clients (not even including Shorts!).

TRUSTED BY
100 MILLION SUBSCRIBERS

100% Private. No contract required.Guaranteed results or you move on.

I DO IT ALL
FOR YOU

Video ideas, Thumbnails, Planning, Optimizing, Uploading, A/B Testing and much more!Be as hands-on or hands-off as you want.

I'VE DONE IT MYSELF AT THE HIGHEST LEVEL

My own channels hit 1,000,000 and 250,000 subscribers!