- published: 19 May 2021
- views: 287
'+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; })); }); -->
This article lists information of animated characters from Disney's The Little Mermaid franchise, covering the 1989 film, its prequel TV series, its direct-to-video sequel and prequel films, and the stage musical adaptation.
Ariel is the title character of the franchise, save the second film in which she is a secondary character. Ariel is voiced by Jodi Benson and designed by Glen Keane. Ariel is the seventh-born and the youngest daughter of King Triton and Queen Athena of the merfolk, and over the course of the original film becomes human and marries Prince Eric, a human. She is the only Disney Princess to reach parenthood in Disney's animated film canon.
Prince Eric is based on the "prince" character of Hans Christian Andersen's story "The Little Mermaid" but adapted by the writer-directors Ron Clements and John Musker for the film adaptation. According to the film's official novelization, Eric had just turned 18 in the film, which would make him two years older than Ariel. Eric is voiced by Christopher Daniel Barnes in the original film and Kingdom Hearts II, by Jeff Bennett in the prequel television series, and by Rob Paulsen in the direct-to-video sequel. For the original film, Joshua Finkel acted opposite Sherri Stoner as Ariel in providing live-action references for the animators.
Sebastian is an animated anthropomorphic crab in Disney's The Little Mermaid film franchise. He is a red crab from the Caribbean island of Jamaica and a servant of King Triton. Apart from his role in the film trilogy, Sebastian features in the animated series, in the Kingdom Hearts series of video games, and even has music albums based on him.
The character was developed solely for the film, and is not derived from the original Hans Christian Andersen story. Early on in the writing and development of The Little Mermaid, the character that would later become Sebastian was originally an English-butler crab named Clarence; songwriter Howard Ashman proposed changing Clarence to a Jamaican Rastafarian crab and shifting the music style throughout the film to reflect this. Duncan Marjoribanks served as Sebastian's supervising animator. Sebastian is voiced by Samuel E. Wright, who auditioned for the role as though he were trying out for a stage musical. His physicality impressed co-director Ron Clements, who videotaped a repeat performance in order to inspire the animators.
List of The Little Mermaid characters, including pictures when available. These characters from The Little Mermaid are ordered by their significance to the film, so main characters are featured at the top while minor characters and cameos are further down on the list. The Little Mermaid had a lot of memorable characters, which is part of the reason why the movie is so beloved by people around the world. The names of the actors and actresses who played each character are included next to the character's names, so use this list to discover who played your favorite characters.This list has a variety of items in it, from Flotsam to Ariel.If you want to know, "Who are the characters from The Little Mermaid?" or "What are the names of The Little Mermaid characters?" then this list is the perfect...
The Little Mermaid Characters In Real Life.Characters Are Used:- 1. Arista 2. Flounder 3. Prince Eric 4. Scuttle 5. Ursula 6. Sebastian 7. Princess Ariel 8. Harold 9. Adella 10. Chef Louis 11. Flotsam And Jetsam 12. King Triton 13. Max Support, Like & Subscribe!!! Subscribe:-http://bit.ly/2GvHpqe YouTube :- https://www.youtube.com/c/StarDetector Twitter:- http://www.twitter.com/stardetector Some Interesting Videos:- Lady Avengers : Infinity War Characters ( Gender Swap ) https://youtu.be/gk8WvBBle9E How Avengers Should Really Look | COMIC Vs MCU | https://youtu.be/CDEtXy4I6D0 Dragon Ball Z Characters Gender Swap https://youtu.be/LJbOJkGnqWo Dc Female Characters In Real Life | Perfect Cosplay | https://youtu.be/GHbYuck30Is Beyblade Characters In Real Life https://youtu.be/DD3uJAxf0...
We want to be...where the QUIZZES are...we want to see...want to see you TAKE THEM—that’s right! It’s time to go under the sea alongside the cast of Disney’s The Little Mermaid as they find out which character they truly are! Is Javier really as high and mighty as King Triton? Is Halle really as adventurous and land-loving as Ariel? Is anyone Skuttle?! Watch the video to find out! #TheLittleMermaid #HalleBailey #Disney Take the quiz here! https://www.buzzfeed.com/alliehayes/the-little-mermaid-cast-character-quiz Credits: https://www.buzzfeed.com/bfmp/videos/188890 Subscribe to BuzzFeed Celeb: https://bzfd.it/2kU81Ls BuzzFeed Celeb Celebs + puppies, kittens, thirst tweets, and more = so much yes. GET MORE BUZZFEED: https://www.buzzfeed.com https://www.buzzfeed.com/videos https://www.yo...
Watch the official clip compilation for The Little Mermaid: Anniversary Edition, an animation movie starring Jodi Benson. Available on Digital, Blu-Ray and DVD now. This colorful adventure tells the story of an impetuous mermaid princess named Ariel who falls in love with the very human Prince Eric and puts everything on the line for the chance to be with him. Memorable songs and characters -- including the villainous sea witch Ursula. © The Walt Disney Company
Ursula's evil plan to take over the ocean began with Ariel's voice but do you remember how her plan developed? Take a look at the moment Ursula became human and watches her evil plan unfold! A Little Disney History: From humble beginnings as a cartoon studio in the 1920s to its preeminent name in the entertainment industry today, Disney proudly continues its legacy of creating world-class stories and experiences for every member of the family. Disney’s Aladdin on Blu-Ray and Digital HD Disney’s Beauty & The Beast on Blu-Ray and Digital HD Disney’s Cinderella on Blu-Ray and Digital HD Disney/Pixar’s Brave on Blu-Ray and Digital HD Disney’s Moana on Blu-Ray and Digital HD Disney’s Pocahontas on Blu-Ray and Digital HD Disney’s Sleeping Beauty on Blu-Ray and Digital HD Disney’s Snow White ...
Jacob Tremblay, Awkwafina, and Daveed Diggs are now known to many as Flounder, Scuttle, and Sebastian from the new live-action rendition of Disney's 'The Little Mermaid.' Today, they are joining together to determine which Disney character said iconic lines from films like 'Aladdin,' 'Hercules,' and 'Frozen.' Watch along to see if the cast knows lines of Disney's past or only studied up on 'The Little Mermaid.' 'The Little Mermaid' is playing in theatres now. ELLE SHOWS: Latest Season of Song Association: https://www.youtube.com/playlist?list=PLG8Rnf78qVIHDRXoJrg6E4jXNTJM_Hc9a Watch All Seasons of Song Association Here: https://www.youtube.com/playlist?list=PLG8Rnf78qVIHDRXoJrg6E4jXNTJM_Hc9a Waking Up With: https://www.youtube.com/playlist?list=PLG8Rnf78qVIHio5xi3CysdtBu8aazo1rS Ask Me...
Disney's 2023 The Little Mermaid where Halle Bailey plays the first black Ariel. In this clip, we are showing you the voices behind some of the characters and the real names and ages of the main cast of The Little Mermaid. The main actors presented in the video: Halle Bailey - Ariel, Melissa McCarthy - Ursula, Jacob Tremblay - Flounder, Jonah Hauer-King - Prince Eric, Javier Bardem - King Triton, Awkwafina - Scuttle
Every The Little Mermaid Playable Character (1st Place) in Disney Speedstorm (PC 2023). ► For more Disney Speedstorm videos: https://www.youtube.com/playlist?list=PLs-3FpCsqmK8xbcq2579ii_Ehs_PczpHr ► For daily videos: Subscribe https://www.youtube.com/channel/UCfOwy-Mx2MY-aVJWSN3p2rA?sub_confirmation=1 and click the bell icon. --- Disney Speedstorm (PC) // All 4 Playable The Little Mermaid Characters [Season 6] 00:00 Ariel 02:02 King Triton 04:48 Ursula 07:24 Prince Eric #DisneySpeedstorm #Disney #PC --- ► This gameplay played, recorded and edited by The Silent Gaming Fish ◄
The Ultimate Dream Cast Of The Little Mermaid Live Action Remake SUBSCRIBE for more TheThings ► http://bit.ly/TheThingsSub 10 Cartoon Characters In Real Life ► https://youtu.be/z7rSiqF-H28 10 Best Changes In Disney Live-Action Remakes ► https://youtu.be/9xaJtkOsoBA Ever since Disney announced that they are doing a live-action remake of the animated classic, “The Little Mermaid,” we can’t stop thinking about the ultimate dream cast. With little to go on but rumors, we went ahead and cast the film ourselves...in our imaginations. We’ve got everyone covered, from Sebastian to Flounder, and Scuttle to King Triton. Just wait until you see who we chose to play the roles of Ursula and Ariel. It’s going to take some majorly talented celebrities to pull off these iconic roles. And with the new...
Princess Ariel has six older sisters! Can you name them all? Subscribe to Disney Princess on YouTube: https://bit.ly/DisneyPrincessSubscribe Watch more Disney Princess! What’s New: https://bit.ly/-NewDisneyPrincess Disney Princess Club: https://bit.ly/-DisneyPrincessClub Frozen Friends Club: https://bit.ly/-FrozenFriendsClub Stories & Read Alongs: https://bit.ly/-DisneyPrincessReadAlongs More Disney! Instagram: http://Instagram.com/Disney Twitter: http://Twitter.com/Disney Facebook: http://Facebook.com/Disney YouTube: https://YouTube.com/@Disney A Little Disney History: From humble beginnings as a cartoon studio in the 1920s to its preeminent name in the entertainment industry today, Disney proudly continues its legacy of creating world-class stories and experiences for every member o...
This article lists information of animated characters from Disney's The Little Mermaid franchise, covering the 1989 film, its prequel TV series, its direct-to-video sequel and prequel films, and the stage musical adaptation.
Ariel is the title character of the franchise, save the second film in which she is a secondary character. Ariel is voiced by Jodi Benson and designed by Glen Keane. Ariel is the seventh-born and the youngest daughter of King Triton and Queen Athena of the merfolk, and over the course of the original film becomes human and marries Prince Eric, a human. She is the only Disney Princess to reach parenthood in Disney's animated film canon.
Prince Eric is based on the "prince" character of Hans Christian Andersen's story "The Little Mermaid" but adapted by the writer-directors Ron Clements and John Musker for the film adaptation. According to the film's official novelization, Eric had just turned 18 in the film, which would make him two years older than Ariel. Eric is voiced by Christopher Daniel Barnes in the original film and Kingdom Hearts II, by Jeff Bennett in the prequel television series, and by Rob Paulsen in the direct-to-video sequel. For the original film, Joshua Finkel acted opposite Sherri Stoner as Ariel in providing live-action references for the animators.
Verden er så fuld af skønne kvinder,
driver mig til vanvid
også når de ikke er der.
Tankerne om kvinderne forsvinder,
når man bor så lang tid
på en øde ø som jeg,
så tænker man på:
Roquefort og emmentaler,
gorgonzola, jeg betaler
hvad som helst for feta!
Brie eller camembert,
hvad der lugter endnu værre,
gammel ost fra Kreta.
Ost, jeg vil ha' ost
jeg må ha' ost!
Ost, jeg vil ha' ost
jeg må ha' ost!
ost, ost, ost, ost, ost
jeg må ha' o-hooost!
Havet her omkring er fuld af fjender,
driver mig til vanvid,
og jeg kommer ingen steder.
Selvom jeg går ud til begge ender,
ta'r det aldrig lang tid,
her er ingenting at nå,
her får man aldrig:
Roquefort og emmentaler,
gorgonzola, jeg betaler
hvad som helst for feta!
Brie eller camembert,
hvad der lugter endnu værre,
gammel ost fra Kreta.
Ost, jeg vil ha' ost
jeg må ha' ost!
Ost, jeg vil ha' ost
jeg må ha' ost!
ost, ost, ost, ost, ost
jeg må ha' o-hooost!
Alt det der med guld og grønne skove,
driver mig til vanvid
det har jeg fået mere end nok af.
Jeg syn's det er sjovere at sove,
sove rigtig længe
på min øde ø
så drømmer jeg så sødt om:
Roquefort og emmentaler,
gorgonzola, jeg betaler
hvad som helst for feta!
Brie eller camembert,
hvad der lugter endnu værre,
gammel ost fra Kreta.
Ost, jeg vil ha' ost
jeg må ha' ost!
O-hooiost!
Ost, ost, ost, ost, ost,
jeg må ha' o-hooost!
Roquefort og emmentaler,
gorgonzola, jeg betaler
hvad som helst for feta!
Brie eller camembert,
hvad der lugter endnu værre,
oldtidsost fra Kreta.
Ost, jeg vil ha' ost
jeg må ha' ost!
Ost, jeg vil ha' ost
jeg må haaaaa',
ost, ost, ost, ost, ost