'+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; })); }); -->

The Smurfs

The Smurfs (French: Les Schtroumpfs) (Dutch: De Smurfen) is a Belgian comic and television franchise centered on a fictional colony of small blue creatures who live in mushroom-shaped houses in the forest. The Smurfs was first created and introduced as a series of comic characters by the Belgian comics artist Peyo (pen name of Pierre Culliford) in 1958, where they were known as Les Schtroumpfs. There are more than one hundred Smurf characters, and their names are based on adjectives that emphasize their characteristics, such as "Jokey Smurf", who likes to play practical jokes on his fellow smurfs. "Smurfette" was the first female Smurf to be introduced in the series. The Smurfs wear Phrygian caps, which came to represent freedom during the modern era.

The word “Smurf” is the original Dutch translation of the French "Schtroumpf", which, according to Peyo, is a word invented during a meal with fellow cartoonist André Franquin, when he could not remember the word salt.

The Smurfs franchise began as a comic and expanded into advertising, films, TV series, ice capades, video games, theme parks, and dolls.

Smurfs: The Lost Village

Smurfs: The Lost Village, previously known as Get Smurfy, is an upcoming American computer-animated adventure-comedy film directed by Kelly Asbury and written by Karey Kirkpatrick and Chris Poche. It is the third feature film from Sony Pictures Animation based on The Smurfs comic book series created by the Belgian comics artist Peyo, and a reboot film of Sony's live-action/animated film series. The film stars Demi Lovato as Smurfette, Mandy Patinkin as Papa Smurf, Rainn Wilson as Gargamel, Joe Manganiello as Hefty Smurf, Jack McBrayer as Clumsy Smurf and Danny Pudi as Brainy Smurf. The film is set for a March 31, 2017 release.

Voice cast

  • Demi Lovato as Smurfette
  • Mandy Patinkin as Papa Smurf
  • Rainn Wilson as Gargamel
  • Joe Manganiello as Hefty Smurf
  • Jack McBrayer as Clumsy Smurf
  • Danny Pudi as Brainy Smurf
  • Production

    On May 10, 2012, just two weeks after they announced production of The Smurfs 2, Sony Pictures Animation and Columbia Pictures were already developing a script for The Smurfs 3 with scribes Karey Kirkpatrick and Chris Poche.Hank Azaria, who played Gargamel in the first two movies, revealed that the third film "might actually deal with the genuine origin of how all these characters ran into each other way back when." Unlike the first two live action/computer-animated hybrid films, the third film will be entirely computer-animated and won't be a sequel.

    The Smurfs (TV series)

    The Smurfs (also known as simply Smurfs and syndicated as Smurfs' Adventures) is an American-Belgian animated fantasy-comedy television series that aired on NBC from September 12, 1981, to December 2, 1989. Made by Hanna-Barbera Productions, it is based on the Belgian comic series by the same name, created by Belgian cartoonist Peyo (who also served as story supervisor of this adaptation) and aired for 256 episodes with a total of 418 stories, excluding three cliffhanger episodes and seven specials.

    History

    In 1976, Stuart R. Ross, an American media and entertainment entrepreneur who saw the Smurfs while traveling in Belgium, entered into an agreement with Editions Dupuis and Peyo, acquiring North American and other rights to the characters, whose original name was "les Schtroumpfs". Subsequently, Ross launched the Smurfs in the United States in association with a California company, Wallace Berrie and Co., whose figurines, dolls and other Smurf merchandise became a hugely popular success. NBC President Fred Silverman's daughter, Melissa, had a Smurf doll of her own that he had bought for her at a toy shop while they were visiting Aspen, Colorado. Silverman thought that a series based on the Smurfs might make a good addition to his Saturday-morning lineup.

    The Smurfs music

    The Smurfs is a Belgian comics series, created by Peyo in 1958, and popularized in the English speaking world mainly through the 1981–1989 Hanna Barbera cartoon series. Over the decades, many singles and albums of Smurf music have been released in different countries and languages, sometimes very successfully, with millions of copies sold.

    Music recordings

    Several popular Smurfs LPs were released, the first of which (Father Abraham in Smurfland) was created by Dutch musician Pierre Kartner, who sings under the alias Father Abraham. His single "The Smurf Song" reached the #1 position in 16 countries. (While held off the top spot in the UK by "You're The One That I Want", the single broke a record for most consecutive weeks at number two, which was only equalled in 1991 by Right Said Fred's "I'm Too Sexy".) Subsequent albums included Smurfing Sing Song, The Smurfs All Star Show, Christmas in Smurfland, and Best of Friends. In 1996, there was a release titled The Smurfs Go Pop! which had a hit UK single titled "I've Got a Little Puppy". The same year, the Smurfs' album Techno is Cool - Volume 1 received a platinum award for sales in excess of 1 million in Europe. This was repeated in 1999 when the German language album Alles Banane (by Die Schlümpfe) also sold more than one million copies.

    Podcasts:

    • We Must Find Baby's Cuddly Toy! 🧸🔍 • The Smurfs 3D • Cartoons For Kids

      The Cuddly Toy: After having lost his favorite pillow, Lazy can no longer fall into his legendary sleep and borrows Baby's cuddly toy in order to do so. However, while he's miraculously sleeping once again, a lizard steals it from him, and Baby, who's inconsolable, starts to cry constantly. Eaten up with guilt, Lazy sets off in search of the "cuddly toy", unaware that it has ended up in Gargamel's hovel. The latter is determined to make it into his new favorite toy... Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http:...

      published: 13 Feb 2024
    • The Smurfs Full Episodes 🔴 Live

      Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel.

      published: 02 Nov 2023
    • Bringing Up Smurfy | Full Episode | The Smurfs New Series 3D | Cartoons For Kids

      When Dimwitty finds an egg in the woods, the Smurfs parenting skills are put to the test. Vanity wants to design a new outfit for the Smurfs but he and Tailor have different visions. Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, li...

      published: 10 Jun 2023
    • Smurftastic adventures with the Smurfs! • Remastered episodes • 1 hour compilation

      Join the Smurfs as they embark on thrilling quests in the Smurfs' magical village. From solving puzzles to exploring hidden treasures, this compilation of the Smurfs series will keep your little ones entertained and inspired. Watch as the lovable blue creatures use teamwork, bravery, and their unique smurfy skills to overcome challenges and spread happiness. Don't miss out on the fun-filled escapades of the Smurfs! Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.co...

      published: 27 May 2023
    • Time to see a doctor 🏥 • The Smurfs 3D • Cartoons For Kids

      Papa Smurf leaves the nest: While Papa Smurf is preparing a potion to cure his lost voice, a sparrow enters his lab and accidentally knocks over a body-switching powder. When the Smurfs see Papa Smurf acting like a bird, they assume he has received a blow to the head and chase away the real Papa Smurf, who is still voiceless and inside the bird's body. A female sparrow forces her intentions upon the latter, who is then pursued by her jealous partner, while the Smurfs, with the aid of Willow and her potions, try in vain to heal the bird whom they mistake for their leader... Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twit...

      published: 27 Feb 2024
    • We're Captured by Caveman Smurfs! @TheSmurfsEnglish

      When Blossom accidentally knocks Smurfette into a barrel of manure, she is so mortified that she asks Handy's help. The latter invents a time machine so she can go back and fix her blunder. But another blunder sends Blossom and Handy all the way back to prehistoric times, where a monkey steals their time travel cuckoo clock… Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/ch...

      published: 15 Jun 2024
    • The Smurfs - Clip - Gargamel The Genius

      Movie: The Smurfs Clip: Gargamel The Genius When Gargamel turn the woman from older to younger, she was surprised! i do not own this video! swear

      published: 07 Jan 2012
    • A Clumsy Escape! | NEW EXCLUSIVE CLIP | The Smurfs 2021

      To discover on Nickelodeon and NickTOONS! Nickelodeon (USA, Australia & New Zealand) : https://www.nick.com NickTOONS (UK): http://www.nicktoons.co.uk/ New exclusive Clip Smurfette, Clumsy and Hefty are collecting yummy food for their friends! Unfortunately, they encounter the evil Gargamel and his feline companion Azrael. It won't be easy escaping his ferocious clutches, especially with Clumsy by your side... Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.c...

      published: 09 Oct 2021
    • The Smurfs Today At 10am | 9C On MeTV Toons (WMEI)

      published: 25 Jun 2024
    • I've found a cat! 🐱 • The Smurfs 3D Season 2 • Cartoons For Kids

      Lost Cat: Azrael has had enough of Gargamel and leaves the hovel! However, once in the forest, he gets injured and is taken in by Wild. The latter brings him to the village to heal him but the cat's arrival divides the Smurfs into two groups: those who want to help him, convinced that he can become kind, and those who want to get rid of him as fast as possible! Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube...

      published: 13 Apr 2024
    developed with YouTube
    We Must Find Baby's Cuddly Toy! 🧸🔍 • The Smurfs 3D • Cartoons For Kids
    2:03:22

    We Must Find Baby's Cuddly Toy! 🧸🔍 • The Smurfs 3D • Cartoons For Kids

    • Order:
    • Duration: 2:03:22
    • Uploaded Date: 13 Feb 2024
    • views: 518838
    The Cuddly Toy: After having lost his favorite pillow, Lazy can no longer fall into his legendary sleep and borrows Baby's cuddly toy in order to do so. However, while he's miraculously sleeping once again, a lizard steals it from him, and Baby, who's inconsolable, starts to cry constantly. Eaten up with guilt, Lazy sets off in search of the "cuddly toy", unaware that it has ended up in Gargamel's hovel. The latter is determined to make it into his new favorite toy... Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel. Produced by Peyo Productions, Dupuis Edition & Audiovisual In co-production with Kika, Ketnet, RTBF and Les Cartooneurs Associés With the participation of TF1 Produced by Véronique Culliford Executive Producers: Nele De Wilde, Caroline Duvochel, Caroline Audebert Associated Producers: Maïa Tubiana, Brigitte Ickmans In collaboration with: Sebastien Debertin, Tina Debertin, Yann Labasque, Telidja Klai, Paola Acosta Line Producer: Fabien Coulon Production Managers : François Deglain, Lorin Horwitz Original Score: Brad Breeck Theme Song adaptation: Brad Breeck and Justin Bates Creative Directors: Luc Parthoens, Tom Cosijn Literary Bible and Writing Directors: Peter Saisselin and Amy Serafin Co-writing Director: Mélina Masó Sarrat THE SMURFS By Peyo Director: William Renaud Smurfs Kids App ► https://apps.apple.com/app/apple-store/id6468835974?pt=126562175&ct=Youtube%20ENG%20DES&mt=8
    https://wn.com/We_Must_Find_Baby's_Cuddly_Toy_🧸🔍_•_The_Smurfs_3D_•_Cartoons_For_Kids
    The Smurfs Full Episodes 🔴 Live
    0:00

    The Smurfs Full Episodes 🔴 Live

    • Order:
    • Duration: 0:00
    • Uploaded Date: 02 Nov 2023
    • views: 763351
    Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel.
    https://wn.com/The_Smurfs_Full_Episodes_🔴_Live
    Bringing Up Smurfy | Full Episode | The Smurfs New Series 3D | Cartoons For Kids
    11:31

    Bringing Up Smurfy | Full Episode | The Smurfs New Series 3D | Cartoons For Kids

    • Order:
    • Duration: 11:31
    • Uploaded Date: 10 Jun 2023
    • views: 3564721
    When Dimwitty finds an egg in the woods, the Smurfs parenting skills are put to the test. Vanity wants to design a new outfit for the Smurfs but he and Tailor have different visions. Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel.
    https://wn.com/Bringing_Up_Smurfy_|_Full_Episode_|_The_Smurfs_New_Series_3D_|_Cartoons_For_Kids
    Smurftastic adventures with the Smurfs! • Remastered episodes • 1 hour compilation
    1:19:48

    Smurftastic adventures with the Smurfs! • Remastered episodes • 1 hour compilation

    • Order:
    • Duration: 1:19:48
    • Uploaded Date: 27 May 2023
    • views: 1507551
    Join the Smurfs as they embark on thrilling quests in the Smurfs' magical village. From solving puzzles to exploring hidden treasures, this compilation of the Smurfs series will keep your little ones entertained and inspired. Watch as the lovable blue creatures use teamwork, bravery, and their unique smurfy skills to overcome challenges and spread happiness. Don't miss out on the fun-filled escapades of the Smurfs! Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel.
    https://wn.com/Smurftastic_Adventures_With_The_Smurfs_•_Remastered_Episodes_•_1_Hour_Compilation
    Time to see a doctor 🏥 • The Smurfs 3D • Cartoons For Kids
    2:03:24

    Time to see a doctor 🏥 • The Smurfs 3D • Cartoons For Kids

    • Order:
    • Duration: 2:03:24
    • Uploaded Date: 27 Feb 2024
    • views: 848785
    Papa Smurf leaves the nest: While Papa Smurf is preparing a potion to cure his lost voice, a sparrow enters his lab and accidentally knocks over a body-switching powder. When the Smurfs see Papa Smurf acting like a bird, they assume he has received a blow to the head and chase away the real Papa Smurf, who is still voiceless and inside the bird's body. A female sparrow forces her intentions upon the latter, who is then pursued by her jealous partner, while the Smurfs, with the aid of Willow and her potions, try in vain to heal the bird whom they mistake for their leader... Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel. Produced by Peyo Productions, Dupuis Edition & Audiovisual In co-production with Kika, Ketnet, RTBF and Les Cartooneurs Associés With the participation of TF1 Produced by Véronique Culliford Executive Producers: Nele De Wilde, Caroline Duvochel, Caroline Audebert Associated Producers: Maïa Tubiana, Brigitte Ickmans In collaboration with: Sebastien Debertin, Tina Debertin, Yann Labasque, Telidja Klai, Paola Acosta Line Producer: Fabien Coulon Production Managers : François Deglain, Lorin Horwitz Original Score: Brad Breeck Theme Song adaptation: Brad Breeck and Justin Bates Creative Directors: Luc Parthoens, Tom Cosijn Literary Bible and Writing Directors: Peter Saisselin and Amy Serafin Co-writing Director: Mélina Masó Sarrat THE SMURFS By Peyo Director: William Renaud Smurfs Kids App ► https://apps.apple.com/app/apple-store/id6468835974?pt=126562175&ct=Youtube%20ENG%20DES&mt=8
    https://wn.com/Time_To_See_A_Doctor_🏥_•_The_Smurfs_3D_•_Cartoons_For_Kids
    We're Captured by Caveman Smurfs! @TheSmurfsEnglish
    1:17:00

    We're Captured by Caveman Smurfs! @TheSmurfsEnglish

    • Order:
    • Duration: 1:17:00
    • Uploaded Date: 15 Jun 2024
    • views: 6332560
    When Blossom accidentally knocks Smurfette into a barrel of manure, she is so mortified that she asks Handy's help. The latter invents a time machine so she can go back and fix her blunder. But another blunder sends Blossom and Handy all the way back to prehistoric times, where a monkey steals their time travel cuckoo clock… Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel. Produced by Peyo Productions, Dupuis Edition & Audiovisual In co-production with Kika, Ketnet, RTBF and Les Cartooneurs Associés With the participation of TF1 Produced by Véronique Culliford Executive Producers: Nele De Wilde, Caroline Duvochel, Caroline Audebert Associated Producers: Maïa Tubiana, Brigitte Ickmans In collaboration with: Sebastien Debertin, Tina Debertin, Yann Labasque, Telidja Klai, Paola Acosta Line Producer: Fabien Coulon Production Managers : François Deglain, Lorin Horwitz Original Score: Brad Breeck Theme Song adaptation: Brad Breeck and Justin Bates Creative Directors: Luc Parthoens, Tom Cosijn Literary Bible and Writing Directors: Peter Saisselin and Amy Serafin Co-writing Director: Mélina Masó Sarrat THE SMURFS By Peyo Director: William Renaud Smurfs Kids App ► https://apps.apple.com/app/apple-store/id6468835974?pt=126562175&ct=Youtube%20ENG%20DES&mt=8
    https://wn.com/We're_Captured_By_Caveman_Smurfs_Thesmurfsenglish
    The Smurfs - Clip - Gargamel The Genius
    2:06

    The Smurfs - Clip - Gargamel The Genius

    • Order:
    • Duration: 2:06
    • Uploaded Date: 07 Jan 2012
    • views: 1930713
    Movie: The Smurfs Clip: Gargamel The Genius When Gargamel turn the woman from older to younger, she was surprised! i do not own this video! swear
    https://wn.com/The_Smurfs_Clip_Gargamel_The_Genius
    A Clumsy Escape! | NEW EXCLUSIVE CLIP | The Smurfs 2021
    13:29

    A Clumsy Escape! | NEW EXCLUSIVE CLIP | The Smurfs 2021

    • Order:
    • Duration: 13:29
    • Uploaded Date: 09 Oct 2021
    • views: 1991941
    To discover on Nickelodeon and NickTOONS! Nickelodeon (USA, Australia & New Zealand) : https://www.nick.com NickTOONS (UK): http://www.nicktoons.co.uk/ New exclusive Clip Smurfette, Clumsy and Hefty are collecting yummy food for their friends! Unfortunately, they encounter the evil Gargamel and his feline companion Azrael. It won't be easy escaping his ferocious clutches, especially with Clumsy by your side... Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube: https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel.
    https://wn.com/A_Clumsy_Escape_|_New_Exclusive_Clip_|_The_Smurfs_2021
    The Smurfs Today At 10am | 9C On MeTV Toons (WMEI)
    0:15

    The Smurfs Today At 10am | 9C On MeTV Toons (WMEI)

    • Order:
    • Duration: 0:15
    • Uploaded Date: 25 Jun 2024
    • views: 419
    https://wn.com/The_Smurfs_Today_At_10Am_|_9C_On_Metv_Toons_(Wmei)
    I've found a cat! 🐱 • The Smurfs 3D Season 2 • Cartoons For Kids
    11:00

    I've found a cat! 🐱 • The Smurfs 3D Season 2 • Cartoons For Kids

    • Order:
    • Duration: 11:00
    • Uploaded Date: 13 Apr 2024
    • views: 875371
    Lost Cat: Azrael has had enough of Gargamel and leaves the hovel! However, once in the forest, he gets injured and is taken in by Wild. The latter brings him to the village to heal him but the cat's arrival divides the Smurfs into two groups: those who want to help him, convinced that he can become kind, and those who want to get rid of him as fast as possible! Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel. Produced by Peyo Productions, Dupuis Edition & Audiovisual In co-production with Kika, Ketnet, RTBF and Les Cartooneurs Associés With the participation of TF1 Produced by Véronique Culliford Executive Producers: Nele De Wilde, Caroline Duvochel, Caroline Audebert Associated Producers: Maïa Tubiana, Brigitte Ickmans In collaboration with: Sebastien Debertin, Tina Debertin, Yann Labasque, Telidja Klai, Paola Acosta Line Producer: Fabien Coulon Production Managers : François Deglain, Lorin Horwitz Original Score: Brad Breeck Theme Song adaptation: Brad Breeck and Justin Bates Creative Directors: Luc Parthoens, Tom Cosijn Literary Bible and Writing Directors: Peter Saisselin and Amy Serafin Co-writing Director: Mélina Masó Sarrat THE SMURFS By Peyo Director: William Renaud Smurfs Kids App ► https://apps.apple.com/app/apple-store/id6468835974?pt=126562175&ct=Youtube%20ENG%20DES&mt=8
    https://wn.com/I've_Found_A_Cat_🐱_•_The_Smurfs_3D_Season_2_•_Cartoons_For_Kids
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • We Must Find Baby's Cuddly Toy! 🧸🔍 • The Smurfs 3D • Cartoons For Kids
      2:03:22
      We Must Find Baby's Cuddly Toy! 🧸🔍 • The Smurfs 3D • Cartoons For Kidsremove from playlist
    • The Smurfs Full Episodes 🔴 Live
      0:00
      The Smurfs Full Episodes 🔴 Liveremove from playlist
    • Bringing Up Smurfy | Full Episode | The Smurfs New Series 3D | Cartoons For Kids
      11:31
      Bringing Up Smurfy | Full Episode | The Smurfs New Series 3D | Cartoons For Kidsremove from playlist
    • Smurftastic adventures with the Smurfs! • Remastered episodes • 1 hour compilation
      1:19:48
      Smurftastic adventures with the Smurfs! • Remastered episodes • 1 hour compilationremove from playlist
    • Time to see a doctor 🏥 • The Smurfs 3D • Cartoons For Kids
      2:03:24
      Time to see a doctor 🏥 • The Smurfs 3D • Cartoons For Kidsremove from playlist
    • We're Captured by Caveman Smurfs! @TheSmurfsEnglish
      1:17:00
      We're Captured by Caveman Smurfs! @TheSmurfsEnglishremove from playlist
    • The Smurfs - Clip - Gargamel The Genius
      2:06
      The Smurfs - Clip - Gargamel The Geniusremove from playlist
    • A Clumsy Escape! | NEW EXCLUSIVE CLIP | The Smurfs 2021
      13:29
      A Clumsy Escape! | NEW EXCLUSIVE CLIP | The Smurfs 2021remove from playlist
    • I've found a cat! 🐱 • The Smurfs 3D Season 2 • Cartoons For Kids
      11:00
      I've found a cat! 🐱 • The Smurfs 3D Season 2 • Cartoons For Kidsremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    We Must Find Baby's Cuddly Toy! 🧸🔍 • The Smurfs 3D • Cartoons For Kids

    The Cuddly Toy: After having lost his favorite pillow, Lazy can no longer fall into his legendary sleep and borrows Baby's cuddly toy in order to do so. However, while he's miraculously sleeping once again, a lizard steals it from him, and Baby, who's inconsolable, starts to cry constantly. Eaten up with guilt, Lazy sets off in search of the "cuddly toy", unaware that it has ended up in Gargamel's hovel. The latter is determined to make it into his new favorite toy... Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ►https://www.instagram.com/smurfsofficial/ @smurfsoffcial Facebook ►https://www.facebook.com/SmurfOfficial/ @SmurfOfficial Twitter ►https://twitter.com/smurfsmovie Smurfs GIPHY ► https://giphy.com/thesmurfs Visit Our Website ► http://goo.gl/szB5Gh Smurfs Business ►www.smurfbusiness.com Wikipedia ► http://goo.gl/y2VSo The Smurfs YouTube ► https://www.youtube.com/c/smurfs/channels Thanks for all your support, liking the video is always appreciated! The Smurfs This series follows the adventures of the Smurfs, little blue creatures who live in a peaceful village and try to outwit the evil Gargamel. Produced by Peyo Productions, Dupuis Edition & Audiovisual In co-production with Kika, Ketnet, RTBF and Les Cartooneurs Associés With the participation of TF1 Produced by Véronique Culliford Executive Producers: Nele De Wilde, Caroline Duvochel, Caroline Audebert Associated Producers: Maïa Tubiana, Brigitte Ickmans In collaboration with: Sebastien Debertin, Tina Debertin, Yann Labasque, Telidja Klai, Paola Acosta Line Producer: Fabien Coulon Production Managers : François Deglain, Lorin Horwitz Original Score: Brad Breeck Theme Song adaptation: Brad Breeck and Justin Bates Creative Directors: Luc Parthoens, Tom Cosijn Literary Bible and Writing Directors: Peter Saisselin and Amy Serafin Co-writing Director: Mélina Masó Sarrat THE SMURFS By Peyo Director: William Renaud Smurfs Kids App ► https://apps.apple.com/app/apple-store/id6468835974?pt=126562175&ct=Youtube%20ENG%20DES&mt=8
    2:03:22
    We Must Find Baby's Cuddly Toy! 🧸🔍 • The Smurfs 3D • Cartoons For Kids
    The Cuddly Toy: After having lost his favorite pillow, Lazy can no longer fall into his le...
    published: 13 Feb 2024
    Play in Full Screen
    0:00
    The Smurfs Full Episodes 🔴 Live
    Watch More Videos ► http://goo.gl/y6hsZp Subscribe Here ►http://goo.gl/zmDpN5 Instagram ...
    published: 02 Nov 2023
    Play in Full Screen
    11:31
    Bringing Up Smurfy | Full Episode | The Smurfs New Series 3D | Cartoons For Kids
    When Dimwitty finds an egg in the woods, the Smurfs parenting skills are put to the test. ...
    published: 10 Jun 2023
    Play in Full Screen
    1:19:48
    Smurftastic adventures with the Smurfs! • Remastered episodes • 1 hour compilation
    Join the Smurfs as they embark on thrilling quests in the Smurfs' magical village. From so...
    published: 27 May 2023
    Play in Full Screen
    2:03:24
    Time to see a doctor 🏥 • The Smurfs 3D • Cartoons For Kids
    Papa Smurf leaves the nest: While Papa Smurf is preparing a potion to cure his lost voice,...
    published: 27 Feb 2024
    Play in Full Screen
    1:17:00
    We're Captured by Caveman Smurfs! @TheSmurfsEnglish
    When Blossom accidentally knocks Smurfette into a barrel of manure, she is so mortified th...
    published: 15 Jun 2024
    Play in Full Screen
    2:06
    The Smurfs - Clip - Gargamel The Genius
    Movie: The Smurfs Clip: Gargamel The Genius When Gargamel turn the woman from older to yo...
    published: 07 Jan 2012
    Play in Full Screen
    13:29
    A Clumsy Escape! | NEW EXCLUSIVE CLIP | The Smurfs 2021
    To discover on Nickelodeon and NickTOONS! Nickelodeon (USA, Australia & New Zealand) : h...
    published: 09 Oct 2021
    Play in Full Screen
    0:15
    The Smurfs Today At 10am | 9C On MeTV Toons (WMEI)
    published: 25 Jun 2024
    Play in Full Screen
    11:00
    I've found a cat! 🐱 • The Smurfs 3D Season 2 • Cartoons For Kids
    Lost Cat: Azrael has had enough of Gargamel and leaves the hovel! However, once in the fo...
    published: 13 Apr 2024
    Play in Full Screen

    The Smurfs

    The Smurfs (French: Les Schtroumpfs) (Dutch: De Smurfen) is a Belgian comic and television franchise centered on a fictional colony of small blue creatures who live in mushroom-shaped houses in the forest. The Smurfs was first created and introduced as a series of comic characters by the Belgian comics artist Peyo (pen name of Pierre Culliford) in 1958, where they were known as Les Schtroumpfs. There are more than one hundred Smurf characters, and their names are based on adjectives that emphasize their characteristics, such as "Jokey Smurf", who likes to play practical jokes on his fellow smurfs. "Smurfette" was the first female Smurf to be introduced in the series. The Smurfs wear Phrygian caps, which came to represent freedom during the modern era.

    The word “Smurf” is the original Dutch translation of the French "Schtroumpf", which, according to Peyo, is a word invented during a meal with fellow cartoonist André Franquin, when he could not remember the word salt.

    The Smurfs franchise began as a comic and expanded into advertising, films, TV series, ice capades, video games, theme parks, and dolls.

    '); } 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)); } }); }); }); // -->

    Latest News for: the smurfs music

    Edit

    Father Abraham DEAD: Man behind The Smurfs music, Pierre Kartner, dies

    The Mirror 12 Nov 2022
    Tributes have been paid to Dutch musician Pierre Kartner – better known as Father Abraham – who was the man behind The Smurfs music ... .
    • 1

    Most Viewed

    ×