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

Big Fish

Big Fish is a 2003 American fantasy drama film based on the 1998 novel of the same name by Daniel Wallace. The film was directed by Tim Burton and stars Ewan McGregor, Albert Finney, Billy Crudup, Jessica Lange, and Marion Cotillard. Other roles are performed by Helena Bonham Carter, Matthew McGrory, and Danny DeVito among others. Finney plays Edward Bloom, a former traveling salesman from the Southern United States with a gift for storytelling, now confined to his deathbed. Bloom's estranged son, a journalist played by Crudup, attempts to mend their relationship as his dying father relates tall tales of his eventful life as a young adult during which scenes he is played by Ewan McGregor.

Screenwriter John August read a manuscript of the novel six months before it was published and convinced Columbia Pictures to acquire the rights. August began adapting the novel while producers negotiated with Steven Spielberg who planned to direct after finishing Minority Report (2002). Spielberg considered Jack Nicholson for the role of Edward Bloom, but eventually dropped the project to focus on Catch Me If You Can (2002). Tim Burton and Richard D. Zanuck took over after completing Planet of the Apes (2001) and brought Ewan McGregor and Albert Finney on board.

Big Fish (band)

Big Fish was a Swedish experimental rock music group with influences from industrial music, punk, jazz, blues, metal and folk music, adding up to a unique sound.

One of their songs, "Den Blinde Rasisten" (eng. "The Blind Racist"), is based on a poem by Hans Alfredsson. "Den Blinde Rasisten" gained a lot of popularity for its lyrics, which tell the story of a blind boy who grows up to be a racist. He then undergoes a surgical procedure that restores his sight. A glance in the mirror and the man falls dead of a heart attack. The glance had taught him that "he himself was a nigger".

Discography

  • The Natural Powers
  • Hydrology (1990)
  • Död mans vals (1991)
  • Vargavinter (1992)
  • Dans mot tiden (1993)
  • Sånger ur sten (1994)
  • Nyårshambo (1994)
  • Blues för Paranoia (1996)
  • Andar i halsen (1996)
  • On compilations

  • Definitivt 50 Spänn #5
  • Clubland X-Treme 2 (disc 1)
  • Definitivt 50 Spänn IV
  • I Sometimes Wish I Was Famous: A Swedish Tribute to Depeche Mode

  • Big Fish (soundtrack)

    Big Fish: Music from the Motion Picture is the soundtrack, on the Sony Classical label, of the 2003 film Big Fish. The original score and songs were composed by Danny Elfman.

    The album was nominated for the Academy Award and the Golden Globe Award for Best Original Score.

    Track listing

  • "Man of the Hour" - Pearl Jam (3:45)
  • "Dinah" - Bing Crosby (2:17)
  • "Everyday" - Buddy Holly (2:09)
  • "All Shook Up" - Elvis Presley (1:58)
  • "Five O'Clock World" - The Vogues (2:10)
  • "Ramblin' Man" - The Allman Brothers Band (4:57)
  • "Let's Work Together" - Canned Heat (3:13)
  • "Pictures" (0:45)
  • "Big Fish (Titles)" (4:32)
  • "Shoe Stealing" (0:54)
  • "Underwater" (1:53)
  • "Sandra's Theme" (2:22)
  • "The Growing Montage" (2:40)
  • "Leaving Spectre" (1:59)
  • "Return to Spectre" (2:12)
  • "Rebuilding" (1:18)
  • "The Journey Home" (2:10)
  • "In the Tub" (1:18)
  • "Sandra's Farewell" (1:16)
  • "Finale" (11:10)
  • "End Titles" (2:41)
  • "Jenny's Theme" (1:45)
  • "Twice the Love (Siamese Twin's Song)" - Bobbi Page and Candice Rump (1:49)
  • References

    Joseph F. Girzone

    Joseph Francis Girzone (May 15, 1930 November 29, 2015), sometimes known as the "Joshua Priest", was an American Catholic priest and writer, most notably as the author of the Joshua series of novels.

    Life

    Early life

    Girzone was born in Albany, New York, to Peter, a butcher, and Margaret Girzone, the oldest of their twelve children. It was a struggling family, which experienced the shame of eviction during his childhood.<ref name=TU2 /

    Girzone entered the Carmelite Order as a young man and was ordained as a priest in 1955. A few years later he chose to leave the order in favor of life as a secular priest and was accepted by the Roman Catholic Diocese of Albany. He then served at various parishes of the diocese, in the course of which he became active in advocating for the elderly. He was a driving force in the formation of the Office for the Aging of Montgomery County.<ref name=TU /

    In 1981, however, Girzone was diagnosed with a heart condition which was judged to be fatal, leading him to retire from active ministry.<ref name=girzone-site / He accepted the forfeiture of any pension or medical benefits from the diocese as part of an agreement for his early retirement.<ref name=NCR /

    Joshua (name)

    Joshua is a Biblical given name derived from the Hebrew Yehoshua (יהושע). The name was a common alternative form of the name יֵשׁוּעַ – yēšūă which corresponds to the Greek spelling Iesous, from which, through the Latin Iesus, comes the English spelling Jesus.

    As a result of the origin of the name, a majority of people before the 17th century who have this name are Jewish. A variant, truncated form of the name, Josh, gained popularity in the United States in the 1970s.

    Popularity

    Joshua

    Information from the United Kingdom's Office for National Statistics from 2003 to 2007 shows "Joshua" among the top-five given names for newborn males. In Scotland, the popularity of "Joshua" has been substantially lower than in the rest of the United Kingdom, appearing at rank 35 in 2000 and rising to rank 22 in 2006.

    Instances of use

    Following is a short annotated list of persons, real and fictional, sharing "Joshua" or "Josh" or very rarely "Yehoshua" as a given name, representative of the breadth in geography and time of the names' use.

    Joshua (record producer)

    Joshua (born Jon Schumann in 1971) is a Danish and Swedish Grammy-awarded music producer and mixing engineer from Denmark. He has produced for bands such as Kent, Kashmir, Mew, D-A-D and Carpark North.

    Joshua produced the 1999 breakthrough album by the Danish rock band Kashmir, The Good Life, which gave him the "Danish Producer of the Year" award at the 2000 Danish Grammy Awards. He produced the albums Tillbaka till samtiden and Röd by the Swedish alternative rock band Kent, released in 2007 and 2009, respectively. For the latter he was awarded "Producer of the Year" at the 2010 Swedish Grammy Awards. In the spring of 2010 he produced three tracks on the band's ninth studio album En plats i solen, released on 30 June. He currently resides in London, UK.

    Selective production discography

    References

    External links

  • Joshua at MySpace
  • Joshua at Facebook
  • Joshua at Twitter
  • Joshua at Discogs
  • Joshua at WordPress
  • Mannhandle - { music and webdesign }

  • Podcasts:

    Joshua

    ALBUMS

    Joshua

    ALBUMS

    Joshua

    Joshua

    ALBUMS

    Joshua

    ALBUMS

    Joshua

    ALBUMS

    Joshua

    ALBUMS

    Joshua

    ALBUMS

    Joshua

    ALBUMS

    Joshua

    ALBUMS

    Joshua

    ALBUMS

    조수아

    ALBUMS

    Joshua

    ALBUMS

    • Kcee - Big Fish (Official Video)

      Stream & Download "BIG FISH" by Kcee. https://onerpm.link/kcee-big-fish Listen to Kcee Apple Music: https://music.lnk.to/0sasxR Spotify: https://spoti.fi/3vffMzP Best of Kcee: https://bit.ly/3Tsk3If Follow Kcee on: https://www.facebook.com/officialkcee​ http://Twitter.com/iam_KCEE​ http://Instagram.com/iam_KCEE​ #Kcee #bigfish #ritadominic #iniedo

      published: 10 May 2024
    • Big Fish (大魚) - Zhou Shen (周深) lyrics [Eng/Chinese/Pinyin]

      Big Fish and Bergona (大鱼海棠) Theme Song Big Fish by Zhou Shen Lyrics in English, Chinese, Pinyin To those who have not watched this film yet, you should definitely watch it. This film is a masterpiece, a visual poetry. No copyright infringement intended.

      published: 13 May 2018
    • Big Fish (2003) Official Trailer 1 - Ewan McGregor Movie

      Starring: Ewan McGregor, Albert Finney, Billy Crudup Big Fish (2003) Official Trailer 1 - Ewan McGregor Movie A frustrated son tries to determine the fact from fiction in his dying father's life. Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn We're on SNAPCHAT: http://bit.ly/2cOzfcy Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer requests and we will do our best to hunt it down.

      published: 16 Feb 2017
    • I Caught the Monster Attacking My Fish!

      In today’s video, I catch the MONSTER that has been attacking my fish! It all started about a week ago when I rescued a 4ft long ripsaw catfish. Since it was so big I put it in my predator pond along with all my other monster fish! However, a few days later I discovered multiple fish dead including my massive redtail catfish, arowanas, and my $4,000 man-eating catfish… So now, I have to catch out and save the rest of my fish before it’s too late! I jumped in the pond and I was immediately attacked by the fish. I started to net around and I ended up catching sturgeon, giant gouramis, exotic catfish, pacu, and MORE! But it was starting to become more difficult so I decided to drain the pond! I got back in and caught out giant koi, clown knife fish, albino plecos, cichlids, freshwater sharks,...

      published: 18 May 2024
    • Vince Staples - Big Fish (Official Video)

      Check out the official music video for "Big Fish" by Vince Staples Vince Staples "BIG FISH THEORY" available now: http://smarturl.it/BigFishTheory Music video by Vince Staples performing Big Fish. (C) 2017 Def Jam Recordings, a division of UMG Recordings, Inc. http://vevo.ly/w3W92V #VinceStaples #BigFish #Vevo

      published: 18 May 2017
    • Terrible, Brave hunter and spiderman catch giant fish to confront carnivorous monsters

      Terrible, Brave hunter and spiderman catch giant fish to confront carnivorous monsters | Mike Survival #mikesurvival #fishing #cacthfish

      published: 30 Jan 2024
    • 10 BIGGEST CATCHES OF ALL TIME

      10 BIGGEST CATCHES OF ALL TIME If you're new, Subscribe! → http://goo.gl/djmfuX Facebook: https://www.facebook.com/Top5BestShow Top 5 Best is the #1 place for all your heart warming stories about amazing people that will inspire you everyday. Make sure to subscribe and never miss a single video! Leave a like for more shark tank, pawn stars, dr. phil, and other tv show business content. On Top 5 Best, we like to help you in mindset productivity, whether it's how to make more money videos, or going over the biggest mansions in the world, we show everything here! Make sure to subscribe for more amazing videos everyday! family friendly pg clean #viralstory #amazingpeople #top5best The world over fisherman spend hours or even days trolling for the perfect catch and over the generations, ...

      published: 19 Jan 2020
    • Strongest Men VS Strongest Fish

      In this episode of BlacktipH, I go fishing with some of the strongest men in the world to try battle one the strongest fish in the world! I invited JujiMufu (fitness freak and social media celebrity), Devon Larratt (World Arm Wrestling Champion and ex-special forces), and Layne Norton (World Champion powerlifter and fitness expert) on a quest to catch some monster Goliath groupers using stand-up tackle. Everyone quickly discovered how difficult it is to catch goliath groupers using stand-up tackle. All three men had very intense battles with these sea monsters! ▼ BlacktipH Products: http://bit.ly/blacktiph-shop ▼ Jon Call aka JujiMufu Social Media: • Subscribe to JujiMufu → http://bit.ly/subscribe-jujimufu • Follow JujiMufu on Instagram → @jujimufu ▼ Devon Larratt Social Media: • Subsc...

      published: 06 Aug 2019
    • Groupers and Big Fish - Reef Life of the Andaman - Part 10

      Groupers and big fishes. Part 10 of my DVD, "Reef Life of the Andaman", available at http://www.bubblevision.com/marine-life-DVD.htm or view the whole 2-hour video at http://www.youtube.com/watch?v=8ncUVddkK3Q This episode features groupers and the most common species of big bony fish to be found in the Andaman Sea. After an introduction to 2 small and common members of the grouper family, the blacktip grouper, Epinephelus fasciatus, and longfin grouper, Epinephelus quoyanus, we meet 2 of the biggest species, the brown-marbled grouper, Epinephelus fuscoguttatus, at Richelieu Rock in Thailand, and a friendly potato cod, Epinephelus tukula, at the Burma Banks in Myanmar. At the Similan Islands we then encounter the largest wrasse, the humphead wrasse, Cheilinus undulatus, sometimes known ...

      published: 26 Jun 2012
    • Big Fish: A Father's Final Story (HD Clip)

      Will (Billy Crudup) helps his dad (Albert Finney) with his final story. #BigFish #EwanMcGregor #hdclips #moviescenes Watch Big Fish Now: http://AAN.SonyPictures.com/BigFish Throughout his life Edward Bloom (Ewan McGregor) has always been a man of big appetites, enormous passions and tall tales. In his later years, portrayed by five-time Best Actor Oscar® nominee Albert Finney (Best Actor in a Supporting Role, Erin Brockovich, 2000), he remains a huge mystery to his son, William (Billy Crudup). Now, to get to know the real man, Will begins piecing together a true picture of his father from flashbacks of his amazing adventures in this marvel of a movie.

      published: 10 Jun 2022
    Kcee - Big Fish (Official Video)
    3:07

    Kcee - Big Fish (Official Video)

    • Order:
    • Duration: 3:07
    • Uploaded Date: 10 May 2024
    • views: 4698710
    Stream & Download "BIG FISH" by Kcee. https://onerpm.link/kcee-big-fish Listen to Kcee Apple Music: https://music.lnk.to/0sasxR Spotify: https://spoti.fi/3vffMzP Best of Kcee: https://bit.ly/3Tsk3If Follow Kcee on: https://www.facebook.com/officialkcee​ http://Twitter.com/iam_KCEE​ http://Instagram.com/iam_KCEE​ #Kcee #bigfish #ritadominic #iniedo
    https://wn.com/Kcee_Big_Fish_(Official_Video)
    Big Fish (大魚) - Zhou Shen (周深) lyrics [Eng/Chinese/Pinyin]
    5:12

    Big Fish (大魚) - Zhou Shen (周深) lyrics [Eng/Chinese/Pinyin]

    • Order:
    • Duration: 5:12
    • Uploaded Date: 13 May 2018
    • views: 1750563
    Big Fish and Bergona (大鱼海棠) Theme Song Big Fish by Zhou Shen Lyrics in English, Chinese, Pinyin To those who have not watched this film yet, you should definitely watch it. This film is a masterpiece, a visual poetry. No copyright infringement intended.
    https://wn.com/Big_Fish_(大魚)_Zhou_Shen_(周深)_Lyrics_Eng_Chinese_Pinyin
    Big Fish (2003) Official Trailer 1 - Ewan McGregor Movie
    2:22

    Big Fish (2003) Official Trailer 1 - Ewan McGregor Movie

    • Order:
    • Duration: 2:22
    • Uploaded Date: 16 Feb 2017
    • views: 1514580
    Starring: Ewan McGregor, Albert Finney, Billy Crudup Big Fish (2003) Official Trailer 1 - Ewan McGregor Movie A frustrated son tries to determine the fact from fiction in his dying father's life. Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn We're on SNAPCHAT: http://bit.ly/2cOzfcy Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer requests and we will do our best to hunt it down.
    https://wn.com/Big_Fish_(2003)_Official_Trailer_1_Ewan_Mcgregor_Movie
    I Caught the Monster Attacking My Fish!
    23:33

    I Caught the Monster Attacking My Fish!

    • Order:
    • Duration: 23:33
    • Uploaded Date: 18 May 2024
    • views: 8759702
    In today’s video, I catch the MONSTER that has been attacking my fish! It all started about a week ago when I rescued a 4ft long ripsaw catfish. Since it was so big I put it in my predator pond along with all my other monster fish! However, a few days later I discovered multiple fish dead including my massive redtail catfish, arowanas, and my $4,000 man-eating catfish… So now, I have to catch out and save the rest of my fish before it’s too late! I jumped in the pond and I was immediately attacked by the fish. I started to net around and I ended up catching sturgeon, giant gouramis, exotic catfish, pacu, and MORE! But it was starting to become more difficult so I decided to drain the pond! I got back in and caught out giant koi, clown knife fish, albino plecos, cichlids, freshwater sharks, and tons of monster catfish! Once all of the fish were saved it was time to catch out the 4ft monster that has been eating my fish! This was by far the biggest fish i have owned and it wasn’t easy catching it! We then put him back in the pond where he will continue to live without any other fish to harm… What should we name our new monster? — MERCH NOW AVAILABLE: https://bassfishingproductions.shop — ⏹Instagram: https://www.instagram.com/bassfishingproductions/ ⏹TikTok: https://www.tiktok.com/@bassfishingproductions?enter_from=pc&source=h5_m ⏹ Promotion inquiries: Esmamanagement@gmail.com ⏹Business email: bassfishermanguy@gmail.com
    https://wn.com/I_Caught_The_Monster_Attacking_My_Fish
    Vince Staples - Big Fish (Official Video)
    2:47

    Vince Staples - Big Fish (Official Video)

    • Order:
    • Duration: 2:47
    • Uploaded Date: 18 May 2017
    • views: 13122524
    Check out the official music video for "Big Fish" by Vince Staples Vince Staples "BIG FISH THEORY" available now: http://smarturl.it/BigFishTheory Music video by Vince Staples performing Big Fish. (C) 2017 Def Jam Recordings, a division of UMG Recordings, Inc. http://vevo.ly/w3W92V #VinceStaples #BigFish #Vevo
    https://wn.com/Vince_Staples_Big_Fish_(Official_Video)
    Terrible, Brave hunter and spiderman catch giant fish to confront carnivorous monsters
    8:45

    Terrible, Brave hunter and spiderman catch giant fish to confront carnivorous monsters

    • Order:
    • Duration: 8:45
    • Uploaded Date: 30 Jan 2024
    • views: 3665002
    Terrible, Brave hunter and spiderman catch giant fish to confront carnivorous monsters | Mike Survival #mikesurvival #fishing #cacthfish
    https://wn.com/Terrible,_Brave_Hunter_And_Spiderman_Catch_Giant_Fish_To_Confront_Carnivorous_Monsters
    10 BIGGEST CATCHES OF ALL TIME
    10:43

    10 BIGGEST CATCHES OF ALL TIME

    • Order:
    • Duration: 10:43
    • Uploaded Date: 19 Jan 2020
    • views: 14806307
    10 BIGGEST CATCHES OF ALL TIME If you're new, Subscribe! → http://goo.gl/djmfuX Facebook: https://www.facebook.com/Top5BestShow Top 5 Best is the #1 place for all your heart warming stories about amazing people that will inspire you everyday. Make sure to subscribe and never miss a single video! Leave a like for more shark tank, pawn stars, dr. phil, and other tv show business content. On Top 5 Best, we like to help you in mindset productivity, whether it's how to make more money videos, or going over the biggest mansions in the world, we show everything here! Make sure to subscribe for more amazing videos everyday! family friendly pg clean #viralstory #amazingpeople #top5best The world over fisherman spend hours or even days trolling for the perfect catch and over the generations, many amateur fisherman have conflated tales of their one big catch to impress friends and acquaintances. But now adays with the internet and cameras everywhere it is easier and easier to record proof of monster hauls, and today we are looking at 10 of the biggest catches of all time. 10. Largest lobster Lobster fishing is done by dropping baited traps into the water and then waiting for lobsters to come for it. This system of capture often means that lobster are hard to catch in large numbers, but it is still a wildly profitable industry. Despite the potential for profit, lobster fishing is often seen as one of the most dangerous occupations in the world, fisherman have become entangled in the lines used to haul up traps, this can prove fatal in many cases. Despite the risks, hundreds of people take to the seas every year hoping to make the big catch...and in 1977 a crew off the coast of Nova Scotia, Canada, caught what Guinness called the world's Heaviest Marine Crustacean - a 44 pound 6 ounce North Atlantic lobster. While it is the largest officially recognized lobster, a massive Maine lobster caught in 1926 was said to weigh a shocking 51.5 pounds, unfortunately, this fish was never officially confirmed before it became dinner. 9. Largest catfish Catfish are some notoriously large creatures and the aptly named Mekong Giant Catfish is no exception, these giant fish live along the Mekong River between lower Mekong in Vietnam and the Yunnan province in China. Unfortunately they have been severely over-fished and are currently a critically endangered species. On January 18 2019, an unbelievable specimen was caught by local fishermen, the monstrous Mekong was over 9 feet long and weighed an unbelievable 650 pounds, experts who verified the catch have said that it may not only be the largest catfish ever caught, but it may In fact be the largest freshwater fish ever caught. 8. Largest salmon https://i1.wp.com/fishwithjd.com/wp-content/uploads/2016/11/15134547_10207822475781315_5683356838567009819_n.jpg?resize=680%2C492&ssl=1 Salmon is a notoriously common fish, and chances are if you've ever eaten at a seafood restaurant then you have seen salmon on the menu. It is a staple of seafood cuisine and can be found on sandwiches, in cans, and as a regular feature with sushi. In the wild salmon ranges from 3 pounds to over a hundred pounds depending on the species, and without fail the largest variety of salmon is the King Salmon, sometimes called the Chinook Salmon. In 1949 a group of fisherman in Petersburg Alaska sprung a net trap and waited for it to fill with various species of fish, but when they pulled up the net they had caught a little more than they had bargained for, among the fish was a 126 pound King salmon, the fish was varified and tho this day is one of the largest salmon ever caught. 7. Largest Squid https://amp.businessinsider.com/images/541894c76bb3f7583df059f5-1136-852.jpg It’s no surprise that one of the largest recorded squids was from the species known as the colossal squid. The colossal squid is even larger than the giant squid with members of this species reaching over 30 feet in length and weighing up to 1,500 pounds. In February of 2008 fishermen in New Zealand hauled up a massive net, they expected it to be filled with millions of smaller fish that would be sold commercially. When they got a look at the contents though, they realized that the net contained several fish and one inconceivably massive, 33-foot long colossal squid, they realized that the specimen was truly something special and they turned it over to the Auckland University of Technology, where marine biologist Steve O’Shea confirmed that it was the largest squid on record.
    https://wn.com/10_Biggest_Catches_Of_All_Time
    Strongest Men VS Strongest Fish
    21:28

    Strongest Men VS Strongest Fish

    • Order:
    • Duration: 21:28
    • Uploaded Date: 06 Aug 2019
    • views: 90718357
    In this episode of BlacktipH, I go fishing with some of the strongest men in the world to try battle one the strongest fish in the world! I invited JujiMufu (fitness freak and social media celebrity), Devon Larratt (World Arm Wrestling Champion and ex-special forces), and Layne Norton (World Champion powerlifter and fitness expert) on a quest to catch some monster Goliath groupers using stand-up tackle. Everyone quickly discovered how difficult it is to catch goliath groupers using stand-up tackle. All three men had very intense battles with these sea monsters! ▼ BlacktipH Products: http://bit.ly/blacktiph-shop ▼ Jon Call aka JujiMufu Social Media: • Subscribe to JujiMufu → http://bit.ly/subscribe-jujimufu • Follow JujiMufu on Instagram → @jujimufu ▼ Devon Larratt Social Media: • Subscribe to Devon Larratt → http://bit.ly/subscribe-devon-larratt • Follow Devon Larratt on Instagram → @devlarratt • Like Devon Larratt on Facebook → http://bit.ly/devon-larratt-fb ▼ Layne Norton social media & YouTube: • Subscribe to Layne Norton → http://bit.ly/subscribe-biolayne • Follow Layne on Instagram → @biolayne • Follow Layne on Twitter → http://bit.ly/twitter-layne-norton • Like Layne Norton on Facebook → http://bit.ly/layne-norton-FB ▼ Special Thanks to: • Bimini Bay Outfitters → http://bit.ly/bimini-bay-clothing • Penn • Blackfin Rods • Winthrop Roller Guides • SeaVee Boats ▼ To learn more about the species of fish caught in this video, click the links below: • Goliath Grouper → http://bit.ly/goliathgrouper ▬▬▬▬▬▬▬ ABOUT BLACKTIPH ▬▬▬▬▬▬▬ BlacktipH Fishing brings you some of the most exciting fishing videos on the web. Our host, Josh Jorgensen, is an extreme angler who has an adrenaline seeking appetite for monster fish! Whether it's catching monster fish from the beach, from a kayak or from a boat, Josh pushes the limits of big game fishing. Our content has been featured on Discovery, National Geographic, Today Show and many more! ► NEW VIDEOS EVERY TUESDAY!! ► Click Here to Subscribe → http://bit.ly/blacktiph-subscribe ► Website → http://blacktiph.com ▼ BlacktipH social media: • Snapchat → @BlacktipH • Instagram → @BlacktipH • Facebook → http://bit.ly/blacktiph-fb • Twitter → http://bit.ly/blacktiph-twitter • Tag us on social media: #blacktiph ▼ Business Inquiries | Media | Private Fishing Trips: info@blacktiph.com ▬▬▬▬▬▬▬ BLACKTIPH PRODUCTS ▬▬▬▬▬▬▬ ▼ HATS: ○ Hats → http://bit.ly/blacktiph-hats ▼ APPAREL: ○ Face Shields / Neck Scarves → https://bit.ly/blacktiph-neck-scarves ○ Performance Shirts → https://bit.ly/blacktiph-performance-shirts ○ Lifestyle T-Shirts → https://bit.ly/blacktiph-t-shirts ▼ FISHING TACKLE: ○ Fishing Rods → https://bit.ly/blacktiph-fishing-rods ○ Rigs / Leaders → https://bit.ly/blacktiph-rigs ○ All Tackle → https://bit.ly/blacktiph-tackle ▼ ACCESSORIES: ○ Tumblers → https://bit.ly/blacktiph-tumblers ○ Decals → https://bit.ly/blacktiph-decals ○ Phone Cases → https://bit.ly/blacktiph-phone-cases ○ Other Products → https://bit.ly/blacktiph-accessories ▬▬▬▬▬▬▬ BLACKTIPH FISHING TRIPS ▬▬▬▬▬▬▬ Go on a BlacktipH Approved fishing trip → http://bit.ly/blacktiph-fishing-trips ▬▬▬▬▬▬▬ MUSIC SOURCES ▬▬▬▬▬▬▬ • Pond5 • Audio Jungle • PremiumBeat ▬▬▬▬▬▬▬ PREVIOUS EPISODE ▬▬▬▬▬▬▬ MASSIVE Topwater Snook Fishing: http://bit.ly/topwater-snook-fishing
    https://wn.com/Strongest_Men_Vs_Strongest_Fish
    Groupers and Big Fish - Reef Life of the Andaman - Part 10
    5:51

    Groupers and Big Fish - Reef Life of the Andaman - Part 10

    • Order:
    • Duration: 5:51
    • Uploaded Date: 26 Jun 2012
    • views: 23870156
    Groupers and big fishes. Part 10 of my DVD, "Reef Life of the Andaman", available at http://www.bubblevision.com/marine-life-DVD.htm or view the whole 2-hour video at http://www.youtube.com/watch?v=8ncUVddkK3Q This episode features groupers and the most common species of big bony fish to be found in the Andaman Sea. After an introduction to 2 small and common members of the grouper family, the blacktip grouper, Epinephelus fasciatus, and longfin grouper, Epinephelus quoyanus, we meet 2 of the biggest species, the brown-marbled grouper, Epinephelus fuscoguttatus, at Richelieu Rock in Thailand, and a friendly potato cod, Epinephelus tukula, at the Burma Banks in Myanmar. At the Similan Islands we then encounter the largest wrasse, the humphead wrasse, Cheilinus undulatus, sometimes known as the Napoleon wrasse, and the impressive green humphead parrotfish (bumphead parrotfish), Bolbometopon muricatum. We then take a look at the great barracuda, Sphyraena barracuda, in Burma and three different species of trevally, or jacks: The giant trevally, Caranx ignobilis, the golden trevally, Gnathanodon speciosus, and the bluefin trevally, Caranx melampygus. There will be footage of more species of barracuda and trevally in a later episode about schooling fish. The following closed captions/subtitles are available by clicking the CC button under the video: NARRATION / COMMENTARY: - English - German (Deutscher Kommentar) - Portuguese (Narração Português) - Spanish (Narración en Español) - Thai (คำบรรยายภาษาไทย) MARINE LIFE & DIVE SITE NAMES - Dutch (Nederlandse Namen) - English - German (Deutsche Bezeichnungen) - Thai (ชื่อภาษาไทย & จุดดำน้ำ) Please get in touch with me if you would like to help translate the narration or marine life names into other languages. Thanks to Mark Ellison for the 1st music track, "Tai Long Wan" and 3rd music track, "Andaman Resonance". Thanks to Smashed Toy (http://www.soundclick.com/smashedtoy) for the 2nd music track, "Space Frigate". I have more scuba diving videos and underwater footage on my website at: http://www.bubblevision.com I post updates about my videos, and interesting underwater videos from other filmmakers here: http://www.facebook.com/bubblevision http://www.twitter.com/nicholashope The video was shot by Nick Hope with a Sony VX2000 DV camera in a Gates housing. It was edited in Sony Vegas Pro then deinterlaced with QTGMC and upscaled to 720p HD in AviSynth. Thanks to Santana Diving of Phuket (http://www.santanaphuket.com), to Elfi and Uli Erfort and Daniel Bruehwiler for help with the German translation, and to Frank Nelissen for the Dutch subtitles. Full list of fish species and dive sites featured in this video: 00:00 Oriental Sweetlips, Plectorhinchus vittatus, Christmas Point 00:06 Blacktip Grouper, Epinephelus fasciatus, Racha Noi 00:17 Longfin Grouper, Epinephelus quoyanus, Moving Wall 00:27 Longfin Grouper, Epinephelus quoyanus, Shark Cave 00:33 Brown-Marbled Grouper, Epinephelus fuscoguttatus, Richelieu Rock 01:25 Potato Cod, Epinephelus tukula, Silvertip Bank 02:25 Humphead Wrasse, Cheilinus undulatus, Rocky Point 02:35 Humphead Wrasse, Cheilinus undulatus, Christmas Point 02:43 Humphead Wrasse, Cheilinus undulatus, Shark Fin Reef 02:52 Green Humphead Parrotfish, Bolbometopon muricatum, Shark Fin Reef 03:39 Great Barracuda, Sphyraena barracuda, Black Rock 03:45 Great Barracuda, Sphyraena barracuda, Silvertip Bank 04:38 Giant Trevally, Caranx ignobilis, Koh Tachai 04:52 Golden Trevally, Gnathanodon speciosus, Koh Tachai 04:57 Bluefin Trevally, Caranx melampygus, Rocky Point 05:13 Golden Trevally, Gnathanodon speciosus, Richelieu Rock 05:22 Blackspotted Puffer, Arothron nigropunctatus, Marita's Rock, Racha Noi
    https://wn.com/Groupers_And_Big_Fish_Reef_Life_Of_The_Andaman_Part_10
    Big Fish: A Father's Final Story (HD Clip)
    8:08

    Big Fish: A Father's Final Story (HD Clip)

    • Order:
    • Duration: 8:08
    • Uploaded Date: 10 Jun 2022
    • views: 48297
    Will (Billy Crudup) helps his dad (Albert Finney) with his final story. #BigFish #EwanMcGregor #hdclips #moviescenes Watch Big Fish Now: http://AAN.SonyPictures.com/BigFish Throughout his life Edward Bloom (Ewan McGregor) has always been a man of big appetites, enormous passions and tall tales. In his later years, portrayed by five-time Best Actor Oscar® nominee Albert Finney (Best Actor in a Supporting Role, Erin Brockovich, 2000), he remains a huge mystery to his son, William (Billy Crudup). Now, to get to know the real man, Will begins piecing together a true picture of his father from flashbacks of his amazing adventures in this marvel of a movie.
    https://wn.com/Big_Fish_A_Father's_Final_Story_(Hd_Clip)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Kcee - Big Fish (Official Video)
      3:07
      Kcee - Big Fish (Official Video)remove from playlist
    • Big Fish (大魚) - Zhou Shen (周深) lyrics [Eng/Chinese/Pinyin]
      5:12
      Big Fish (大魚) - Zhou Shen (周深) lyrics [Eng/Chinese/Pinyin]remove from playlist
    • Big Fish (2003) Official Trailer 1 - Ewan McGregor Movie
      2:22
      Big Fish (2003) Official Trailer 1 - Ewan McGregor Movieremove from playlist
    • I Caught the Monster Attacking My Fish!
      23:33
      I Caught the Monster Attacking My Fish!remove from playlist
    • Vince Staples - Big Fish (Official Video)
      2:47
      Vince Staples - Big Fish (Official Video)remove from playlist
    • Terrible, Brave hunter and spiderman catch giant fish to confront carnivorous monsters
      8:45
      Terrible, Brave hunter and spiderman catch giant fish to confront carnivorous monstersremove from playlist
    • 10 BIGGEST CATCHES OF ALL TIME
      10:43
      10 BIGGEST CATCHES OF ALL TIMEremove from playlist
    • Strongest Men VS Strongest Fish
      21:28
      Strongest Men VS Strongest Fishremove from playlist
    • Groupers and Big Fish - Reef Life of the Andaman - Part 10
      5:51
      Groupers and Big Fish - Reef Life of the Andaman - Part 10remove from playlist
    • Big Fish: A Father's Final Story (HD Clip)
      8:08
      Big Fish: A Father's Final Story (HD Clip)remove from playlist
    PLAYLIST TIME: 0:00 / 1:31:56

    Kcee - Big Fish (Official Video)

    Stream & Download "BIG FISH" by Kcee. https://onerpm.link/kcee-big-fish Listen to Kcee Apple Music: https://music.lnk.to/0sasxR Spotify: https://spoti.fi/3vffMzP Best of Kcee: https://bit.ly/3Tsk3If Follow Kcee on: https://www.facebook.com/officialkcee​ http://Twitter.com/iam_KCEE​ http://Instagram.com/iam_KCEE​ #Kcee #bigfish #ritadominic #iniedo
    3:07
    Kcee - Big Fish (Official Video)
    Stream & Download "BIG FISH" by Kcee. https://onerpm.link/kcee-big-fish Listen to Kcee ...
    published: 10 May 2024
    Play in Full Screen
    5:12
    Big Fish (大魚) - Zhou Shen (周深) lyrics [Eng/Chinese/Pinyin]
    Big Fish and Bergona (大鱼海棠) Theme Song Big Fish by Zhou Shen Lyrics in English, Chinese, P...
    published: 13 May 2018
    Play in Full Screen
    2:22
    Big Fish (2003) Official Trailer 1 - Ewan McGregor Movie
    Starring: Ewan McGregor, Albert Finney, Billy Crudup Big Fish (2003) Official Trailer 1 -...
    published: 16 Feb 2017
    Play in Full Screen
    23:33
    I Caught the Monster Attacking My Fish!
    In today’s video, I catch the MONSTER that has been attacking my fish! It all started abou...
    published: 18 May 2024
    Play in Full Screen
    2:47
    Vince Staples - Big Fish (Official Video)
    Check out the official music video for "Big Fish" by Vince Staples Vince Staples "BIG FIS...
    published: 18 May 2017
    Play in Full Screen
    8:45
    Terrible, Brave hunter and spiderman catch giant fish to confront carnivorous monsters
    Terrible, Brave hunter and spiderman catch giant fish to confront carnivorous monsters | ...
    published: 30 Jan 2024
    Play in Full Screen
    10:43
    10 BIGGEST CATCHES OF ALL TIME
    10 BIGGEST CATCHES OF ALL TIME If you're new, Subscribe! → http://goo.gl/djmfuX Facebook...
    published: 19 Jan 2020
    Play in Full Screen
    21:28
    Strongest Men VS Strongest Fish
    In this episode of BlacktipH, I go fishing with some of the strongest men in the world to ...
    published: 06 Aug 2019
    Play in Full Screen
    5:51
    Groupers and Big Fish - Reef Life of the Andaman - Part 10
    Groupers and big fishes. Part 10 of my DVD, "Reef Life of the Andaman", available at http:...
    published: 26 Jun 2012
    Play in Full Screen
    8:08
    Big Fish: A Father's Final Story (HD Clip)
    Will (Billy Crudup) helps his dad (Albert Finney) with his final story. #BigFish #EwanMcGr...
    published: 10 Jun 2022
    Play in Full Screen

    Big Fish

    Big Fish is a 2003 American fantasy drama film based on the 1998 novel of the same name by Daniel Wallace. The film was directed by Tim Burton and stars Ewan McGregor, Albert Finney, Billy Crudup, Jessica Lange, and Marion Cotillard. Other roles are performed by Helena Bonham Carter, Matthew McGrory, and Danny DeVito among others. Finney plays Edward Bloom, a former traveling salesman from the Southern United States with a gift for storytelling, now confined to his deathbed. Bloom's estranged son, a journalist played by Crudup, attempts to mend their relationship as his dying father relates tall tales of his eventful life as a young adult during which scenes he is played by Ewan McGregor.

    Screenwriter John August read a manuscript of the novel six months before it was published and convinced Columbia Pictures to acquire the rights. August began adapting the novel while producers negotiated with Steven Spielberg who planned to direct after finishing Minority Report (2002). Spielberg considered Jack Nicholson for the role of Edward Bloom, but eventually dropped the project to focus on Catch Me If You Can (2002). Tim Burton and Richard D. Zanuck took over after completing Planet of the Apes (2001) and brought Ewan McGregor and Albert Finney on board.

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