'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Atomic Dog

"Atomic Dog" is a song by George Clinton from his 1982 album Computer Games. The track was released as a single in December 1982 and became the P-Funk collective's last to reach #1 on the U.S. R&B Chart. The single failed to reach the Top 100 of the Pop Chart although it has attained stature since partly to its having been sampled in several hip hop songs.

History

George Clinton’s P-Funk reached its commercial and conceptual height during the late 1970s after the release of Mothership Connection and a series of spectacular concert tours. Each of these concerts ended with a climactic descent of a giant spaceship from the rafters. However, as the band and their concept of funk grew, the organization became entangled in internal dissension, legal disputes, and creative exhaustion. “Atomic Dog” was the P-Funk collective’s last single to reach #1 on the U.S. R&B chart.

According to Clinton, most of the song's lyrics were ad-libbed during the recording process.

Critical reception and charts

Atomic Dog (film)

Atomic Dog is an 1998 sci-fi horror film directed by Brian Trenchard-Smith and starring Daniel Hugh Kelly and Cindy Pickett. The story tells of a dog who, after being exposed to radiation, begins the search to identify himself with a pack.

Plot

A man befriends a puppy of about three months old that lives in an atomic plant. One day, an accident causes the people working in the plant to abandon it. However, the man has no chance of retrieving the puppy, who has to stay inside.

A few years later, a family moves into the town along with their female dog. Somehow the puppy, now an atomic dog, with an enhanced sense of smell, strength and memory only given to wolves, manages to escape from the plant and mates with the female dog, producing a litter of puppies. However, upon delivering, the female dog perishes, and is buried in the backyard.

The family gives the puppies away, but the dog himself tries to retrieve them, and launches himself on an attack towards those humans he sees as threatening, starting with the local veterinarian. The family itself becomes involved, and the dog chases them to the plant. Here he is killed by falling metal tubes, and is buried beside his consort.

Podcasts:

  • Atomic Dog

    Provided to YouTube by Universal Music Group Atomic Dog · George Clinton Computer Games ℗ 1982 Capitol Records LLC Released on: 1982-01-01 Producer: George Clinton Producer: Ted Currier Producer: George S. Clinton Composer Lyricist: Garry Shider Composer Lyricist: George Clinton Composer Lyricist: David Spradley Composer Lyricist: Garry Marshall Shider Auto-generated by YouTube.

    published: 26 Jul 2018
  • George Clinton - Atomic Dog

    George Clinton - Atomic Dog Video I claim no right to this video or the music contained within. The original artists retain all rights. Thank you for allowing me to host the video on my page. That being said today 6/22/12 George Clinton subscribed to my video's. Thank you for the honor !!

    published: 27 Aug 2006
  • Atomic Dog (Original Extended Version)

    Provided to YouTube by Universal Music Group Atomic Dog (Original Extended Version) · George Clinton Greatest Funkin' Hits ℗ 1982 Capitol Records, LLC Released on: 1996-10-29 Producer: Ted Currier Producer, Executive Producer: Jonnie Forster Composer: George Clinton Composer: David L. Spradley Composer: Garry Marshall Shider Auto-generated by YouTube.

    published: 11 May 2017
  • George Clinton - Atomic Dog (Official Music Video) HD

    Single by George Clinton from the album 'Computer Games'. B-side: "Loopzilla", "Man's Best Friend" Released December 1982 Format Vinyl record (7", 12") Recorded: January 1982 Genre: P-Funk, electronica Length: 4:15 (7" single version) 4:42 (LP and instrumental versions) 10:00 (Atomic mix) Label: Capitol Writer:s George Clinton, Garry Shider, David Spradley Producer: George Clinton 'Atomic Dog' is a song by George Clinton from his 1982 album Computer Games. The track was released as a single in December 1982 and became the P-Funk collective's last to reach #1 on the U.S. R&B Chart. The single failed to reach the Top 100 of the Pop Chart at all, though it has arguably attained greater popular stature over the past two decades due in part to its having been sampled ...

    published: 11 Feb 2014
  • C BlaQue x George Clinton x Ben Crump - Atomic Dog - Que Dog Edition (Official Video)

    C BlaQue x George Clinton x Ben Crump - Atomic Dog - Que Dog Edition (Official Video) Starring: George Clinton, C BlaQue, Ben Crump Released: November 17, 2023 by Tenacious Dawgs Music Director: Jamarcus Crump for Vizionx Media Executive Producer: Curtis BlaQue Smith, Ben Crump Director of Photography: Vaul Alexander, Jacob Wise, Edward Stroop, Imperium Productions Post Production: Cade Infinite, Digital Sword Artwork & Animation: Rave Growl Music Productions: Teak Underdue for Hallway Productionz Performance Director: Keanna KJ Rose - The Rose Effect Special Thanks: The Omega Psi Phi Fraternity, Inc & Brothers of The Omega Psi Phi Fraternity, Inc. Howard University Florida State University The City of Charlotte, NC, Mecklenburg County Florida A&M University & The Marching 100 Bro. ...

    published: 18 Nov 2023
  • George Clinton - Atomic Dog

    Atomic Dog performed by George Clinton (4K/HD audio) ▶️ Listen to more great funk/soul music: https://youtube.com/playlist?list=PLvfKFZOdWC4SvqpA2wfDGehHehYWWQzZu (C) EMI Records #GeorgeClinton

    published: 12 Feb 2010
  • Various Artists - Atomic Dog World Tour Remix (from Trolls World Tour)

    George Clinton and Parliament Funkadelic, Anderson .Paak & Mary J. Blige - "Atomic Dog World Tour Remix" (from Trolls World Tour) - Out Now! https://smarturl.it/TWTSoundtrack Anna Kendrick and Justin Timberlake return in Trolls World Tour, an all-star sequel to DreamWorks Animation’s 2016 musical hit. In an adventure that will take them well beyond what they’ve known before, Poppy (Kendrick) and Branch (Timberlake) discover that they are but one of six different Trolls tribes scattered over six different lands and devoted to six different kinds of music: Funk, Country, Techno, Classical, Pop and Rock. Their world is about to get a lot bigger and a whole lot louder. Trolls World Tour in theaters April 10. For more information: https://www.trollsworldtour.com #TrollsWorldTour #AtomicDogW...

    published: 13 Mar 2020
  • Day 2 Nagasaki Japan Kyushu Travel Vlog | Atomic Bomb Museum Cathedral Mount Inasa Ropeway Sunset

    #japanvlog #fukuoka #hakata #kyushu #nagasaki This is part 2 of the Vlog. ♡ Part 3 Vlog Coming Soon! Watch Part 1 here! Day 1 Fukuoka Japan https://youtu.be/RQG7gSyCDTA See you on my next vlog ! ♡ ---------------------------------------------------------------------------- ♡ ♡ Sightseeing Spots featured in this vlog : ♡ ♡ Nagasaki Atomic Bomb Museum ♡ Kushida Shrine ♡ Mt. Inasa ♡ Mall & Food places featured on this vlog : ♡ ♡ Champon at Nagasaki Station #vlog #travelvlog #culinary #travel ♡ ---------------------------------------------------------------------------- ♡ Leia Comes To Reality Logo by Nephirea https://twitter.com/Nephireaa Video & Vlog edit by me Editing software & track music from CapCut ♡ ---------------------------------------------------------------------...

    published: 04 Nov 2024
  • George Clinton - Atomic Dog [Atomic Mix Long Version]

    published: 22 Jan 2011
developed with YouTube
Atomic Dog
4:48

Atomic Dog

  • Order:
  • Duration: 4:48
  • Uploaded Date: 26 Jul 2018
  • views: 8877637
Provided to YouTube by Universal Music Group Atomic Dog · George Clinton Computer Games ℗ 1982 Capitol Records LLC Released on: 1982-01-01 Producer: George Clinton Producer: Ted Currier Producer: George S. Clinton Composer Lyricist: Garry Shider Composer Lyricist: George Clinton Composer Lyricist: David Spradley Composer Lyricist: Garry Marshall Shider Auto-generated by YouTube.
https://wn.com/Atomic_Dog
George Clinton - Atomic Dog
4:15

George Clinton - Atomic Dog

  • Order:
  • Duration: 4:15
  • Uploaded Date: 27 Aug 2006
  • views: 15428364
George Clinton - Atomic Dog Video I claim no right to this video or the music contained within. The original artists retain all rights. Thank you for allowing me to host the video on my page. That being said today 6/22/12 George Clinton subscribed to my video's. Thank you for the honor !!
https://wn.com/George_Clinton_Atomic_Dog
Atomic Dog (Original Extended Version)
9:59

Atomic Dog (Original Extended Version)

  • Order:
  • Duration: 9:59
  • Uploaded Date: 11 May 2017
  • views: 11968627
Provided to YouTube by Universal Music Group Atomic Dog (Original Extended Version) · George Clinton Greatest Funkin' Hits ℗ 1982 Capitol Records, LLC Released on: 1996-10-29 Producer: Ted Currier Producer, Executive Producer: Jonnie Forster Composer: George Clinton Composer: David L. Spradley Composer: Garry Marshall Shider Auto-generated by YouTube.
https://wn.com/Atomic_Dog_(Original_Extended_Version)
George Clinton -  Atomic Dog (Official Music Video) HD
4:43

George Clinton - Atomic Dog (Official Music Video) HD

  • Order:
  • Duration: 4:43
  • Uploaded Date: 11 Feb 2014
  • views: 494347
Single by George Clinton from the album 'Computer Games'. B-side: "Loopzilla", "Man's Best Friend" Released December 1982 Format Vinyl record (7", 12") Recorded: January 1982 Genre: P-Funk, electronica Length: 4:15 (7" single version) 4:42 (LP and instrumental versions) 10:00 (Atomic mix) Label: Capitol Writer:s George Clinton, Garry Shider, David Spradley Producer: George Clinton 'Atomic Dog' is a song by George Clinton from his 1982 album Computer Games. The track was released as a single in December 1982 and became the P-Funk collective's last to reach #1 on the U.S. R&B Chart. The single failed to reach the Top 100 of the Pop Chart at all, though it has arguably attained greater popular stature over the past two decades due in part to its having been sampled in dozens of rap songs. History- George Clinton's P-Funk reached its commercial and conceptual height during the late 1970s after the release of Mothership Connection and a series of spectacular concert tours. Each of these concerts ended with a climactic descent of a giant spaceship from the rafters. However, as the band and their concept of funk grew, the organization became entangled in internal dissension, legal disputes, and creative exhaustion. 'Atomic Dog' was the P-Funk collective's last single to reach #1 on the U.S. R&B chart. According to Clinton, most of the song's lyrics were ad-libbed during the recording process. People who have sampled this song- ATL: Process Of Elimination Why Must I Feel Like Dat Biz Markie: The Dragon Blackstreet: Booti Call Compton's Most Wanted: I Don't Dance I Gots Ta Get Over College Boyz: Underground Blues Consolidated: You Suck Digital Underground: Doowutchyalike Bran New Swetta Good Thing We're Rappin' DJ Jazzy Jeff & The Fresh Prince: A Dog Is A Dog Fu-Schnickens: Back Off Let Me Make... Geto Boys: Homie Don't Play Dat Girl Talk: Get It Get It MC Hammer: Pumps And A Bump Herbie Hancock: Vibe Alive Ice Cube: Better Off Dead Ghetto Bird A Man's Best Friend No Vaseline Summer Vacation The Nigga You Love To Hate 2 N Tha Morning Ice-T: Funky Gripsta Insane Clown Posse: Dog Beats Insane Poetry: How Ya Gonna Reason With A... KAM: Peace Treaty Kris Kross: Party K-Solo: I Can't Hold It Back MC Ren: Hound Dogz Nas: American Way NWH: Ice Froggy Frog Paris: Bush Killa Coffee, Donuts & Death Pitbull: Girls Public Enemy: Pollywanacraka PM Dawn: Comatose Redman: Bobyahed2dis Process Of Elimination Slide And Rock On Watch Yo Nuggets Winicumuhround Scarface: Diary Of A Madman South Central Cartel: South Central... Schoolly D: Where'd You Get That Funk From Snoop Dogg: Who Am I? (What's My Name)? Stetsasonic: Speaking Of A Girl Named Suzy 2Pac: Holler If Ya Hear Me X-Clan: Earth Bound Don't forgot to comment, leave a like & Subscribe! PEACE - DJ Trikka. **********George Clinton - Atomic Dog (Official Music Video) HD********** **********George Clinton - Atomic Dog (Official Music Video) HD********** **********George Clinton - Atomic Dog (Official Music Video) HD********** **********George Clinton - Atomic Dog (Official Music Video) HD********** **********George Clinton - Atomic Dog (Official Music Video) HD**********
https://wn.com/George_Clinton_Atomic_Dog_(Official_Music_Video)_Hd
C BlaQue x George Clinton x Ben Crump - Atomic Dog - Que Dog Edition (Official Video)
6:20

C BlaQue x George Clinton x Ben Crump - Atomic Dog - Que Dog Edition (Official Video)

  • Order:
  • Duration: 6:20
  • Uploaded Date: 18 Nov 2023
  • views: 459032
C BlaQue x George Clinton x Ben Crump - Atomic Dog - Que Dog Edition (Official Video) Starring: George Clinton, C BlaQue, Ben Crump Released: November 17, 2023 by Tenacious Dawgs Music Director: Jamarcus Crump for Vizionx Media Executive Producer: Curtis BlaQue Smith, Ben Crump Director of Photography: Vaul Alexander, Jacob Wise, Edward Stroop, Imperium Productions Post Production: Cade Infinite, Digital Sword Artwork & Animation: Rave Growl Music Productions: Teak Underdue for Hallway Productionz Performance Director: Keanna KJ Rose - The Rose Effect Special Thanks: The Omega Psi Phi Fraternity, Inc & Brothers of The Omega Psi Phi Fraternity, Inc. Howard University Florida State University The City of Charlotte, NC, Mecklenburg County Florida A&M University & The Marching 100 Bro. Ronald T. Smith Bro. Ronald D. Smith Bro. Peter Simmons Bro. Malcolm Davis Bro. Ryan Stewart Bro. Kenny Washington Bro. Keyon Harold Bro. Charles Heyward Bro. Leon Spenser III Bro. Leo Bennett Bro. Christopher Mccreary Bro. Rickey Smiley Bro. Roi Johnson Bro. Fernandez Anderson Bro. Fred Thomas Bro. Ahli Moore Bro. Sadat Smith Bro. Kevin Prophete Bro. Roger Henderson Bro. Bakari Burns The Stompdown Tobe Nwigwe
https://wn.com/C_Blaque_X_George_Clinton_X_Ben_Crump_Atomic_Dog_Que_Dog_Edition_(Official_Video)
George Clinton - Atomic Dog
4:48

George Clinton - Atomic Dog

  • Order:
  • Duration: 4:48
  • Uploaded Date: 12 Feb 2010
  • views: 1038115
Atomic Dog performed by George Clinton (4K/HD audio) ▶️ Listen to more great funk/soul music: https://youtube.com/playlist?list=PLvfKFZOdWC4SvqpA2wfDGehHehYWWQzZu (C) EMI Records #GeorgeClinton
https://wn.com/George_Clinton_Atomic_Dog
Various Artists - Atomic Dog World Tour Remix (from Trolls World Tour)
4:19

Various Artists - Atomic Dog World Tour Remix (from Trolls World Tour)

  • Order:
  • Duration: 4:19
  • Uploaded Date: 13 Mar 2020
  • views: 1738332
George Clinton and Parliament Funkadelic, Anderson .Paak & Mary J. Blige - "Atomic Dog World Tour Remix" (from Trolls World Tour) - Out Now! https://smarturl.it/TWTSoundtrack Anna Kendrick and Justin Timberlake return in Trolls World Tour, an all-star sequel to DreamWorks Animation’s 2016 musical hit. In an adventure that will take them well beyond what they’ve known before, Poppy (Kendrick) and Branch (Timberlake) discover that they are but one of six different Trolls tribes scattered over six different lands and devoted to six different kinds of music: Funk, Country, Techno, Classical, Pop and Rock. Their world is about to get a lot bigger and a whole lot louder. Trolls World Tour in theaters April 10. For more information: https://www.trollsworldtour.com #TrollsWorldTour #AtomicDogWorld #Trolls
https://wn.com/Various_Artists_Atomic_Dog_World_Tour_Remix_(From_Trolls_World_Tour)
Day 2 Nagasaki Japan Kyushu Travel Vlog | Atomic Bomb Museum Cathedral Mount Inasa Ropeway Sunset
9:57

Day 2 Nagasaki Japan Kyushu Travel Vlog | Atomic Bomb Museum Cathedral Mount Inasa Ropeway Sunset

  • Order:
  • Duration: 9:57
  • Uploaded Date: 04 Nov 2024
  • views: 118
#japanvlog #fukuoka #hakata #kyushu #nagasaki This is part 2 of the Vlog. ♡ Part 3 Vlog Coming Soon! Watch Part 1 here! Day 1 Fukuoka Japan https://youtu.be/RQG7gSyCDTA See you on my next vlog ! ♡ ---------------------------------------------------------------------------- ♡ ♡ Sightseeing Spots featured in this vlog : ♡ ♡ Nagasaki Atomic Bomb Museum ♡ Kushida Shrine ♡ Mt. Inasa ♡ Mall & Food places featured on this vlog : ♡ ♡ Champon at Nagasaki Station #vlog #travelvlog #culinary #travel ♡ ---------------------------------------------------------------------------- ♡ Leia Comes To Reality Logo by Nephirea https://twitter.com/Nephireaa Video & Vlog edit by me Editing software & track music from CapCut ♡ ---------------------------------------------------------------------------- ♡ ♡Aiko Leia is a Dream Traveller Dog♡ I Love Leletachi & Frenchie! ♡ ID/EN/日本語 OK! よろしくお願いします ♡ #vtuberindonesia #vtuberid #vtuber #streamerindonesia #youtuberindonesia Subscribe, like, comment & share ! https://www.youtube.com/channel/UCNdkCHUUqeexMqKnbPHTv5Q ♡ ---------------------------------------------------------------------------- ♡ ♡ Donations are greatly appreciated ♡ 「Indonesia」 https://trakteer.id/MisLeia ♡ ---------------------------------------------------------------------------- ♡ ♡ Aiko Leia ♡ Twitter: https://twitter.com/AikoLeia Instagram: aikoleia TikTok: aikoleiach ♡ Hashtags ♡ General: #aikoleia Live: #leialive Fan name: #leletachi FanArt: #aileiart Clip: #aileiclip Meme: #leiameme Travel/Vlog : #leiacomestoreality ♡ ---------------------------------------------------------------------------- ♡
https://wn.com/Day_2_Nagasaki_Japan_Kyushu_Travel_Vlog_|_Atomic_Bomb_Museum_Cathedral_Mount_Inasa_Ropeway_Sunset
George Clinton - Atomic Dog [Atomic Mix Long Version]
9:58

George Clinton - Atomic Dog [Atomic Mix Long Version]

  • Order:
  • Duration: 9:58
  • Uploaded Date: 22 Jan 2011
  • views: 5696142
https://wn.com/George_Clinton_Atomic_Dog_Atomic_Mix_Long_Version
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Atomic Dog
    4:48
    Atomic Dogremove from playlist
  • George Clinton - Atomic Dog
    4:15
    George Clinton - Atomic Dogremove from playlist
  • Atomic Dog (Original Extended Version)
    9:59
    Atomic Dog (Original Extended Version)remove from playlist
  • George Clinton -  Atomic Dog (Official Music Video) HD
    4:43
    George Clinton - Atomic Dog (Official Music Video) HDremove from playlist
  • C BlaQue x George Clinton x Ben Crump - Atomic Dog - Que Dog Edition (Official Video)
    6:20
    C BlaQue x George Clinton x Ben Crump - Atomic Dog - Que Dog Edition (Official Video)remove from playlist
  • George Clinton - Atomic Dog
    4:48
    George Clinton - Atomic Dogremove from playlist
  • Various Artists - Atomic Dog World Tour Remix (from Trolls World Tour)
    4:19
    Various Artists - Atomic Dog World Tour Remix (from Trolls World Tour)remove from playlist
  • Day 2 Nagasaki Japan Kyushu Travel Vlog | Atomic Bomb Museum Cathedral Mount Inasa Ropeway Sunset
    9:57
    Day 2 Nagasaki Japan Kyushu Travel Vlog | Atomic Bomb Museum Cathedral Mount Inasa Ropeway Sunsetremove from playlist
developed with YouTube
PLAYLIST TIME:

Atomic Dog

Provided to YouTube by Universal Music Group Atomic Dog · George Clinton Computer Games ℗ 1982 Capitol Records LLC Released on: 1982-01-01 Producer: George Clinton Producer: Ted Currier Producer: George S. Clinton Composer Lyricist: Garry Shider Composer Lyricist: George Clinton Composer Lyricist: David Spradley Composer Lyricist: Garry Marshall Shider Auto-generated by YouTube.
4:48
Atomic Dog
Provided to YouTube by Universal Music Group Atomic Dog · George Clinton Computer Games ...
published: 26 Jul 2018
Play in Full Screen
4:15
George Clinton - Atomic Dog
George Clinton - Atomic Dog Video I claim no right to this video or the music contained wi...
published: 27 Aug 2006
Play in Full Screen
9:59
Atomic Dog (Original Extended Version)
Provided to YouTube by Universal Music Group Atomic Dog (Original Extended Version) · Geo...
published: 11 May 2017
Play in Full Screen
4:43
George Clinton - Atomic Dog (Official Music Video) HD
Single by George Clinton from the album 'Computer Games'. B-side: "Loopzilla", "Man's Bes...
published: 11 Feb 2014
Play in Full Screen
6:20
C BlaQue x George Clinton x Ben Crump - Atomic Dog - Que Dog Edition (Official Video)
C BlaQue x George Clinton x Ben Crump - Atomic Dog - Que Dog Edition (Official Video) Sta...
published: 18 Nov 2023
Play in Full Screen
4:48
George Clinton - Atomic Dog
Atomic Dog performed by George Clinton (4K/HD audio) ▶️ Listen to more great funk/soul mu...
published: 12 Feb 2010
Play in Full Screen
4:19
Various Artists - Atomic Dog World Tour Remix (from Trolls World Tour)
George Clinton and Parliament Funkadelic, Anderson .Paak & Mary J. Blige - "Atomic Dog Wor...
published: 13 Mar 2020
Play in Full Screen
9:57
Day 2 Nagasaki Japan Kyushu Travel Vlog | Atomic Bomb Museum Cathedral Mount Inasa Ropeway Sunset
#japanvlog #fukuoka #hakata #kyushu #nagasaki This is part 2 of the Vlog. ♡ Part 3 Vlog...
published: 04 Nov 2024
Play in Full Screen
9:58
George Clinton - Atomic Dog [Atomic Mix Long Version]
published: 22 Jan 2011
Play in Full Screen

Atomic Dog

"Atomic Dog" is a song by George Clinton from his 1982 album Computer Games. The track was released as a single in December 1982 and became the P-Funk collective's last to reach #1 on the U.S. R&B Chart. The single failed to reach the Top 100 of the Pop Chart although it has attained stature since partly to its having been sampled in several hip hop songs.

History

George Clinton’s P-Funk reached its commercial and conceptual height during the late 1970s after the release of Mothership Connection and a series of spectacular concert tours. Each of these concerts ended with a climactic descent of a giant spaceship from the rafters. However, as the band and their concept of funk grew, the organization became entangled in internal dissension, legal disputes, and creative exhaustion. “Atomic Dog” was the P-Funk collective’s last single to reach #1 on the U.S. R&B chart.

According to Clinton, most of the song's lyrics were ad-libbed during the recording process.

Critical reception and charts

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×