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

Max Grodénchik

Max Grodénchik (born November 12, 1952), also known as Michael Grodénchik, is an American stage, film, and television actor, best known for his role as Rom, a recurring character on the television series Star Trek: Deep Space Nine.

Career

Theater

Grodénchik worked in theater during the 1980s as Michael Grodénchik, where his performances received notice. Of his 1980 performance in John O'Keefe's All Night Long, Sarasota Herald-Tribune art reviewer Marcia Corbino wrote that Grodénchik was an intriguing actor who had "an enchanting, mobile comic face on which aberrant emotions flicker, spread, retreat, retrench and explode with a single instant."

Television

Grodénchik is better known for his portrayal of the fictional character Rom on Star Trek: Deep Space Nine. He had previously auditioned for the role of Rom's brother Quark, but the role was given to Armin Shimerman. The two both guest-appeared on opposite teams in the short lived British Sci-Fi Quiz show Space Cadets, in 1997.

Star Trek: Deep Space Nine

Star Trek: Deep Space Nine (sometimes abbreviated to DS9) is a science fiction television series set in the Star Trek universe in the Milky Way galaxy, in the years 2369–2375. In contrast to the setting of the other Star Trek TV shows, it takes place on a space station instead of a starship, so as not to have two series with starships at the same time (the starship USS Defiant was introduced in season 3, but the station remained the primary setting for the show). This made continuing story arcs and the appearance of recurring characters much more feasible.

The show is noted for its well-developed characters, its original, complex plots, religious themes and for starring the only black captain in any of the televised incarnations of Star Trek (Paul Winfield had previously portrayed the ill-fated Captain Clark Terrell in the second Star Trek film). The series often showcased darker themes, less physical exploration of space, and (in later seasons) an emphasis on many aspects of war.

Deep Space Nine (space station)

Deep Space Nine (DS9; also known as Terok Nor) is a fictitious space station, and is the eponymous primary setting of the American science fiction television series Star Trek: Deep Space Nine. It serves as a base for the exploration of the Gamma Quadrant via the Bajoran wormhole, and is a hub of trade and travel for the sector's denizens. It is run by a joint crew of Starfleet and Bajoran officers, and it is the home port of a number of Starfleet runabouts, as well as the starship USS Defiant.

Description

Deep Space Nine, over a kilometer in diameter, is composed of a broad outer docking ring; an inner habitat ring containing residential apartments; and a central core containing the promenade, the fusion reactors, and the operations center, known as "Ops". Three sets of docking pylons sweep up and down equidistantly around the docking ring, defining an almost spherical shape. It is of identical design to another Cardassian station, Empok Nor. Originally situated in orbit of Bajor, the station was moved in the series' pilot episode to a position at the mouth of the newly discovered wormhole, where it would remain throughout the remainder of the series. This made the station three hours away from Bajor by shuttle as described in two episodes, though it was mentioned as being five hours away in another episode, (presumably as Bajor was in far orbit of its sun relative to DS9's position). However, it would appear that the journey could be completed in a much shorter length of time if necessary by engaging warp drive within the Bajoran star system.

List of Star Trek: Deep Space Nine episodes

Star Trek: Deep Space Nine is the third live-action television series in the Star Trek franchise and aired in syndication from January 1993 through June 1999. There were a total of 176 episodes over the show's seven seasons, which are listed here in chronological order by original airdate, which match the episode order in each season's DVD and Blu-ray set.

The pilot episode, "Emissary", the episode "The Way of the Warrior", as well as the series finale, "What You Leave Behind", originally aired as two-hour presentations, but were subsequently aired as sets of two one-hour episodes in syndication. This list also includes the stardate on which the events of each episode take place within the fictional Star Trek universe.

Series overview

Episodes

Season 1 (1993)

Season 2 (1993–94)

Season 3 (1994–95)

Season 4 (1995–96)

Season 5 (1996–97)

Season 6 (1997–98)

Season 7 (1998–99)

See also

  • List of Star Trek characters
  • List of Star Trek: The Original Series episodes
  • Podcasts:

    • Max Grodénchik Interview Star Trek Deep Space Nine

      Max Grodénchik Interview Star Trek Deep Space Nine

      published: 29 Jul 2013
    • Max Grodenchik Interview - Star Trek Deep Space Nine

      Max Grodenchik Interview - Star Trek Deep Space Nine Subscribe to Red Carpet News: http://bit.ly/1s3BQ54 Star Trek Deep Space Nine star Max Grodenchick talks to Red Carpet News at the Showmasters Cardiff Comic Con. Max talks about playing Ferengi Rom on the long running and much loved series. Red Carpet News brings you all the latest Film & Entertainment News. Featuring exclusive content and interviews for Game Of Thrones, Sherlock, Hunger Games, Marvel, Star Wars, Harry Potter, Downton Abbey, Doctor Who and so much more. Visit our homepage at http://www.redcarpetnewstv.com or follow us on Twitter @RedCarpetNewsTV for exclusive daily updates, reviews, photo galleries and more. Don't forget to subscribe and thanks for watching

      published: 28 Apr 2015
    • Max Grodenchik & Aron Eisenberg - Destination Star Trek 3 (2014)

      Jonathan Ross meets the stars from Deep Space Nine. Max Grodenchik who played Rom and Aron Eisenberg who played his son Rom.

      published: 05 Oct 2014
    • I Left My Quark And Captain Sisko ] Max Grodénchik ( Star trek Deep space nine

      published: 16 Apr 2022
    • Rom and Nog – Deep Space Nine Star Trek 50th Las Vegas 2016

      Rom and Nog – Deep Space Nine - The Rules of Acquisition Star Trek 50th Las Vegas 2016 Max Grodénchik – Rom Aron Eisenberg – Nog

      published: 18 Jul 2017
    • Star Trek DS9. What We Left Behind

      From the documentary What We Left Behind: Looking Back At Deep Space Nine (2018)

      published: 22 Aug 2020
    • Das Phänomen Star Trek

      Die TV-Stars Chase Masterson aka Bajoranerin „Leeta“ & Max Grodenchik aka Ferengi „Rom“ aus Star Trek: Deep Space Nine waren zu Besuch in der VHS Ottakring, um über die Serie, Science Fiction und Politik zu reden. Moderation: Johannes Grenzfurthner Diese Veranstaltung war Teil der gesellschaftspolitischen Reihe "Digitalisierung - schöne neue Welt?" der Wiener Volkshochschulen.

      published: 20 Nov 2019
    • Boston Legal – Rene Auberjonois and Armin Shimerman

      The one scene Rene Auberjonois and Armin Shimerman shared in Boston Legal – season three, episode four, "Fine Young Cannibal". Auberjonois was a regular for the first three seasons, and Shimerman guest starred in seven episodes of the third season. Although both are playing very different characters to their famous Star Trek: Deep Space Nine roles, their chemistry is still very much apparent.

      published: 15 Feb 2021
    • DS9's 2nd Generation | Andy Robinson, Max Grodenchik, Hana Hatae, Cirroc Lofton, Malissa Longo| VTC1

      WATCH THE NEXT VTC VIDEO HERE: https://www.youtube.com/watch?v=HfiAKbpdvT0&feature=youtu.be Or visit the website to see the schedule of all videos and events here: https://www.virtualtrekcon.com/12-days-of-content These are the characters that grew and changed before our eyes during the epic seven-year journey of Deep Space Nine. After the series ended, these up-and-comers had a new story to tell – their story. Featuring Andy Robinson (Garak), Max Grodenchik (Rom), Hana Hatae, (Molly O’Brien), and Cirroc Lofton (Jake Sisko). Aron Eisenberg’s wife, Malissa Longo, is our special guest, giving us her and Aron’s perspective on Nog. Sign the petition to get Andrew Robinson to do the audio book for the Cardassian book he wrote! https://www.change.org/p/simon-and-schuster-publishing-company...

      published: 23 Dec 2020
    developed with YouTube
    Max Grodénchik Interview  Star Trek Deep Space Nine
    7:41

    Max Grodénchik Interview Star Trek Deep Space Nine

    • Order:
    • Duration: 7:41
    • Uploaded Date: 29 Jul 2013
    • views: 67323
    Max Grodénchik Interview Star Trek Deep Space Nine
    https://wn.com/Max_Grodénchik_Interview_Star_Trek_Deep_Space_Nine
    Max Grodenchik Interview - Star Trek Deep Space Nine
    7:49

    Max Grodenchik Interview - Star Trek Deep Space Nine

    • Order:
    • Duration: 7:49
    • Uploaded Date: 28 Apr 2015
    • views: 12062
    Max Grodenchik Interview - Star Trek Deep Space Nine Subscribe to Red Carpet News: http://bit.ly/1s3BQ54 Star Trek Deep Space Nine star Max Grodenchick talks to Red Carpet News at the Showmasters Cardiff Comic Con. Max talks about playing Ferengi Rom on the long running and much loved series. Red Carpet News brings you all the latest Film & Entertainment News. Featuring exclusive content and interviews for Game Of Thrones, Sherlock, Hunger Games, Marvel, Star Wars, Harry Potter, Downton Abbey, Doctor Who and so much more. Visit our homepage at http://www.redcarpetnewstv.com or follow us on Twitter @RedCarpetNewsTV for exclusive daily updates, reviews, photo galleries and more. Don't forget to subscribe and thanks for watching
    https://wn.com/Max_Grodenchik_Interview_Star_Trek_Deep_Space_Nine
    Max Grodenchik & Aron Eisenberg - Destination Star Trek 3 (2014)
    4:50

    Max Grodenchik & Aron Eisenberg - Destination Star Trek 3 (2014)

    • Order:
    • Duration: 4:50
    • Uploaded Date: 05 Oct 2014
    • views: 9781
    Jonathan Ross meets the stars from Deep Space Nine. Max Grodenchik who played Rom and Aron Eisenberg who played his son Rom.
    https://wn.com/Max_Grodenchik_Aron_Eisenberg_Destination_Star_Trek_3_(2014)
    I Left My Quark And Captain Sisko ] Max Grodénchik ( Star trek Deep space nine
    2:06

    I Left My Quark And Captain Sisko ] Max Grodénchik ( Star trek Deep space nine

    • Order:
    • Duration: 2:06
    • Uploaded Date: 16 Apr 2022
    • views: 146
    https://wn.com/I_Left_My_Quark_And_Captain_Sisko_Max_Grodénchik_(_Star_Trek_Deep_Space_Nine
    Rom and Nog – Deep Space Nine Star Trek 50th  Las Vegas 2016
    6:21

    Rom and Nog – Deep Space Nine Star Trek 50th Las Vegas 2016

    • Order:
    • Duration: 6:21
    • Uploaded Date: 18 Jul 2017
    • views: 162151
    Rom and Nog – Deep Space Nine - The Rules of Acquisition Star Trek 50th Las Vegas 2016 Max Grodénchik – Rom Aron Eisenberg – Nog
    https://wn.com/Rom_And_Nog_–_Deep_Space_Nine_Star_Trek_50Th_Las_Vegas_2016
    Star Trek DS9. What We Left Behind
    2:47

    Star Trek DS9. What We Left Behind

    • Order:
    • Duration: 2:47
    • Uploaded Date: 22 Aug 2020
    • views: 16920
    From the documentary What We Left Behind: Looking Back At Deep Space Nine (2018)
    https://wn.com/Star_Trek_Ds9._What_We_Left_Behind
    Das Phänomen Star Trek
    1:51:57

    Das Phänomen Star Trek

    • Order:
    • Duration: 1:51:57
    • Uploaded Date: 20 Nov 2019
    • views: 231
    Die TV-Stars Chase Masterson aka Bajoranerin „Leeta“ & Max Grodenchik aka Ferengi „Rom“ aus Star Trek: Deep Space Nine waren zu Besuch in der VHS Ottakring, um über die Serie, Science Fiction und Politik zu reden. Moderation: Johannes Grenzfurthner Diese Veranstaltung war Teil der gesellschaftspolitischen Reihe "Digitalisierung - schöne neue Welt?" der Wiener Volkshochschulen.
    https://wn.com/Das_PhäNomen_Star_Trek
    Boston Legal – Rene Auberjonois and Armin Shimerman
    1:52

    Boston Legal – Rene Auberjonois and Armin Shimerman

    • Order:
    • Duration: 1:52
    • Uploaded Date: 15 Feb 2021
    • views: 34207
    The one scene Rene Auberjonois and Armin Shimerman shared in Boston Legal – season three, episode four, "Fine Young Cannibal". Auberjonois was a regular for the first three seasons, and Shimerman guest starred in seven episodes of the third season. Although both are playing very different characters to their famous Star Trek: Deep Space Nine roles, their chemistry is still very much apparent.
    https://wn.com/Boston_Legal_–_Rene_Auberjonois_And_Armin_Shimerman
    DS9's 2nd Generation | Andy Robinson, Max Grodenchik, Hana Hatae, Cirroc Lofton, Malissa Longo| VTC1
    1:07:14

    DS9's 2nd Generation | Andy Robinson, Max Grodenchik, Hana Hatae, Cirroc Lofton, Malissa Longo| VTC1

    • Order:
    • Duration: 1:07:14
    • Uploaded Date: 23 Dec 2020
    • views: 766
    WATCH THE NEXT VTC VIDEO HERE: https://www.youtube.com/watch?v=HfiAKbpdvT0&feature=youtu.be Or visit the website to see the schedule of all videos and events here: https://www.virtualtrekcon.com/12-days-of-content These are the characters that grew and changed before our eyes during the epic seven-year journey of Deep Space Nine. After the series ended, these up-and-comers had a new story to tell – their story. Featuring Andy Robinson (Garak), Max Grodenchik (Rom), Hana Hatae, (Molly O’Brien), and Cirroc Lofton (Jake Sisko). Aron Eisenberg’s wife, Malissa Longo, is our special guest, giving us her and Aron’s perspective on Nog. Sign the petition to get Andrew Robinson to do the audio book for the Cardassian book he wrote! https://www.change.org/p/simon-and-schuster-publishing-company-a-stitch-in-time-audiobook Cirroc's sister makes beautiful designs and puts them on shirts, mugs, etc.. https://www.abyssiniankiosk.com/ Check out Malissa's awesome online store! walkingartmadebymalissa.com To support the show and join the team: https://www.patreon.com/the7thrule Please Like, Follow, Share, SUBSCRIBE, and join the team! https://www.facebook.com/The7thRule/ https://www.facebook.com/groups/The7thrule https://www.instagram.com/the7thrule/ https://twitter.com/7thRule https://teespring.com/stores/the-7th-rule Special thanks to Russ at ODYSY radio for helping to create The 7th Rule . The 7th Rule is a part of the ODYSY radio network - https://odysy1.com/ This channel has permission to upload and stream this video by the owner of the video and of this channel, Ryan T. Husk of Virtual Trek Con.
    https://wn.com/Ds9's_2Nd_Generation_|_Andy_Robinson,_Max_Grodenchik,_Hana_Hatae,_Cirroc_Lofton,_Malissa_Longo|_Vtc1
    • Star Trek: Deep Space Nine (1993-99) - What Happened to This Series?

      I love Star Trek. It's one of the most unique fandoms since it features multiple different properties in the same universe. Don't get me wrong, I love Star Wars, but something about Star Trek raises it to another level. There are so many shows that are unique in their own way. You have Star Trek T.O.S, Star Trek The Animated Series, Star Trek The Next Generation, Star Trek Voyager, Enterprise, Star Trek Discovery, Star Trek Strange New Worlds, Star Trek Prodigy, Star Trek Lower Decks, and Star Trek Picard. There is something for everyone. Fans are a little bit less toxic than other fandoms. My theory is that because there are so many shows, everyone can agree on at least one show that is good. So if someone were to, let’s say, hate Prodigy, they may like Lower Decks, or maybe they think ...

      published: 06 May 2024
    • Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual

      Attempting to emulate my heroes. If you would like to support the channel you can now do so with a Patreon donation from $2 a month, and get access to incremental update videos, wallpapers from my master files without youtube compression, draft animatics, and your name on screen! https://www.patreon.com/neonvisual Your support is greatly appreciated in covering costs of hardware and electricity rendering! Thanks :-) The culmination of a few month’s work in my free time, a recreation of the Star Trek Deep Space Nine series 4-7 title sequence in 4k. Please like and subscribe to follow new content! - Produced and animated by Xander Hugh. - Created in Newtek Lightwave 3D, Adobe After Effects, & Magix Sound Forge. - DS9 Model by Alexander Klemm. - Runabout model by Thomas Slanitz. - USS Def...

      published: 19 Jul 2019
    • Star Trek Deep Space Nine Retrospective/Review - Star Trek Retrospective, Part 10

      Star Trek Retrospective, Part 10: Star Trek The Next Generation had done the impossible, by becoming the new definitive incarnation of the Star Trek franchise. As Paramount were riding high on its success, they commissioned a third spin off series. But surely Trekkies would never accept a show set entirely on a static space station, would they? This is the story of Star Trek Deep Space Nine. Sponsored by Treksphere: https://treksphere.com Patreon: https://www.patreon.com/rowanjcoleman Twitter: https://www.twitter.com/rowanjcoleman​​ Discord: https://discord.gg/KBxKFQr​​ Facebook: https://www.facebook.com/RJCFilms​​ Special thanks to all of my Patrons and Members :) 00:00 Intro 01:04 Development 05:00 Casting 13:17 Fan Backlash 14:28 Production 19:22 Emissary 24:18 Season 1 26:11 Duet/K...

      published: 25 Jul 2021
    • Star Trek: Deep Space Nine ... and their real life partners

      #deepspacenine #ds9 #startrek #startrekdeepspacenine #captainsisko #jadziadax #worf #quark #majorkira

      published: 07 Apr 2024
    • My Thoughts on Star Trek Deep Space Nine

      Support my work on Patreon: http://ow.ly/3ymWFu Support my work on MakerSupport: http://ow.ly/pJjS100RXtS PayPal Donations Welcome. Click here: http://goo.gl/NSdOvK My usage of portions of copyrighted films and imagery falls under fair use policy based on section 107 of the US copyright law. Not withstanding the provisions of sections 106 and 106A, the fair use of a copyrighted work for purposes of criticism, comment, review and news reporting is not an infringement of copyright. SUBSCRIBE TO THIS YOUTUBE CHANNEL: https://www.youtube.com/channel/UCDVb4m_5QHhZElT47E1oODg KEEP UP ON SOCIAL MEDIA: BitChute: https://www.bitchute.com/channel/hybM74uIHJKf/ Gab: https://gab.ai/DaveCullen Minds.com: https://www.minds.com/davecullen

      published: 17 Apr 2018
    • Star Trek: Deep Space Nine theme (HQ)

      Main theme from Star Trek: Deep Space Nine (DS9), as heard in seasons 4-7. Amazon album: http://www.amazon.com/gp/product/B000QZXAD8

      published: 18 Jan 2012
    • The Klingons Attack DS9 (The Way of the Warrior)

      The action scene as the Klingons attack and board the station. From Star Trek Deep Space Nine S4E1: The Way of the Warrior

      published: 17 Jan 2021
    • ST:5 Deep Space Nine - 1950s Super Panavision 70

      SUPER TRAILERS Episode 5 - Star Trek Deep Space Nine - 1950s Super Panavision 70 style Previous Episode: https://youtu.be/IIJrgyT0Zdg Inspired by @AbandonedFilms Created with Midjourney, RunwayML, Davinci Resolve, Udio AI, & Topaz AI Follow me on X: Http://www.Twitter.com/GFMWrites I am available for video commissions and collaborations! Contact: GregoryMandarano@aol.com #superpanavision #trailer #ai #startrek

      published: 04 May 2024
    • Ups & Downs From Star Trek: Deep Space Nine 5.26 - Call To Arms

      The last retro Ups & Downs before Discovery returns! Listen to The TrekCulture Podcast - Tuesdays on; Spotify: https://open.spotify.com/show/1wrqDG8mOTlshuZCYanhUV?si=5d782898e1254754 Apple: https://podcasts.apple.com/ph/podcast/trekculture/id1542785135 Acast: https://play.acast.com/s/trekculture/ For more awesome content: http://whatculture.com/topic/star-trek Follow TrekCulture on Twitter: https://twitter.com/TrekCulture Follow us on Instagram: https://instagram.com/TrekCultureYT #StarTrek #StarTrekDS9 #CallToArms

      published: 31 Mar 2024
    • Star Trek Deep Space Nine Cast: Where Are They Now?

      It's been over 20 years since DS9 wrapped: what have the cast been up to since? Read the article here: https://whatculture.com/tv/star-trek-deep-space-nine-cast-where-are-they-now For more awesome content: http://whatculture.com/topic/star-trek Follow TrekCulture on Twitter: https://twitter.com/TrekCulture #StarTrek #StarTrekDS9 #DeepSpaceNine

      published: 01 May 2022
    developed with YouTube
    Star Trek: Deep Space Nine (1993-99) - What Happened to This Series?
    37:57

    Star Trek: Deep Space Nine (1993-99) - What Happened to This Series?

    • Order:
    • Duration: 37:57
    • Uploaded Date: 06 May 2024
    • views: 19440
    I love Star Trek. It's one of the most unique fandoms since it features multiple different properties in the same universe. Don't get me wrong, I love Star Wars, but something about Star Trek raises it to another level. There are so many shows that are unique in their own way. You have Star Trek T.O.S, Star Trek The Animated Series, Star Trek The Next Generation, Star Trek Voyager, Enterprise, Star Trek Discovery, Star Trek Strange New Worlds, Star Trek Prodigy, Star Trek Lower Decks, and Star Trek Picard. There is something for everyone. Fans are a little bit less toxic than other fandoms. My theory is that because there are so many shows, everyone can agree on at least one show that is good. So if someone were to, let’s say, hate Prodigy, they may like Lower Decks, or maybe they think Next Generation is the only good Star Trek show. But because there are so many series, there is a better chance to link the fan love. I have met many Trekers in my life and have yet to meet someone I have nothing in common with. One Star Trek show that I loved that tended to divide fans was Star Trek: Deep Space Nine. In it, Avery Brooks starred as Commander Benjamin Sisco. Unlike other Trek main characters, he wasn't a captain. Rather, he was a commander struggling with grief (and rage) after his wife was killed in an attack orchestrated by none other than Captain Picard when the Borg assimilated him as Locutus. The show centred partly around him being a single parent to his son, Jake, as well as his adventures commanding Deep Space Nine. It had a tremendous cast of characters, including René Auberjonois as the shape-shifter, Odo, Nana Vistor as Bajoran resistance veteran, Kira, Terry Farrell as Jadzia Dax, Alexander Siddig as Dr. Julian Bashir, Armin Shimerman's Quark, and many more. It even had some TNG holdovers like Colm Meaney as Chief O'Brien, and (later) Michael Dorn's Worf. In this episode, we dig into how the show initially divided fans, but in hindsight is held up by many as one of the best Trek shows of all time. Wanna support us? Get your JoBlo Merch right here! https://joblo-merch.creator-spring.com/ For more MOVIE NEWS, visit: http://www.joblo.com SUBSCRIBE for more of all the LATEST JoBlo Videos here: https://goo.gl/R9U81J #startrekdeepspacenine #AveryBrooks #StarTrekDS9
    https://wn.com/Star_Trek_Deep_Space_Nine_(1993_99)_What_Happened_To_This_Series
    Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual
    2:04

    Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual

    • Order:
    • Duration: 2:04
    • Uploaded Date: 19 Jul 2019
    • views: 709304
    Attempting to emulate my heroes. If you would like to support the channel you can now do so with a Patreon donation from $2 a month, and get access to incremental update videos, wallpapers from my master files without youtube compression, draft animatics, and your name on screen! https://www.patreon.com/neonvisual Your support is greatly appreciated in covering costs of hardware and electricity rendering! Thanks :-) The culmination of a few month’s work in my free time, a recreation of the Star Trek Deep Space Nine series 4-7 title sequence in 4k. Please like and subscribe to follow new content! - Produced and animated by Xander Hugh. - Created in Newtek Lightwave 3D, Adobe After Effects, & Magix Sound Forge. - DS9 Model by Alexander Klemm. - Runabout model by Thomas Slanitz. - USS Defiant model by Sky Dodds (modified). - USS Sutherland by Luca Silingardi (modified) - Workbee by Raul Mamoru (modified) - SoundFX design by Xander Hugh. BTC address: 3DcADE4jjq76zKEq5bwRy6J8B9bzcPec67 - The obligatory.. “Star Trek and all related marks, logos and characters are solely owned by CBS Studios Inc. This fan production is not endorsed by, sponsored by, nor affiliated with CBS, Paramount Pictures, or any other Star Trek franchise, and is a non-commercial fan-made film intended for recreational use. No commercial exhibition or distribution is permitted. No alleged independent rights will be asserted against CBS or Paramount Pictures.” I've upload the crazy high bitrate 4k master to my onedrive for anyone who wants a copy for personal use. It will try to play in the browser window but you can pause it and hit the download button. It's 1.6GB. Please don't re-upload it elsewhere! Cheers :) https://1drv.ms/v/s!AspDyh0o1lW1gfJPlngDny0TSZr13Q
    https://wn.com/Star_Trek_Deep_Space_Nine_4K_Hd_Intro_Neonvisual
    Star Trek Deep Space Nine Retrospective/Review - Star Trek Retrospective, Part 10
    1:58:17

    Star Trek Deep Space Nine Retrospective/Review - Star Trek Retrospective, Part 10

    • Order:
    • Duration: 1:58:17
    • Uploaded Date: 25 Jul 2021
    • views: 2125002
    Star Trek Retrospective, Part 10: Star Trek The Next Generation had done the impossible, by becoming the new definitive incarnation of the Star Trek franchise. As Paramount were riding high on its success, they commissioned a third spin off series. But surely Trekkies would never accept a show set entirely on a static space station, would they? This is the story of Star Trek Deep Space Nine. Sponsored by Treksphere: https://treksphere.com Patreon: https://www.patreon.com/rowanjcoleman Twitter: https://www.twitter.com/rowanjcoleman​​ Discord: https://discord.gg/KBxKFQr​​ Facebook: https://www.facebook.com/RJCFilms​​ Special thanks to all of my Patrons and Members :) 00:00 Intro 01:04 Development 05:00 Casting 13:17 Fan Backlash 14:28 Production 19:22 Emissary 24:18 Season 1 26:11 Duet/Kira Nerys 28:58 In the Hands of the Prophets 31:24 Season 2 32:30 Whispers/Miles O'Brien 34:46 Blood Oath/Jadzia Dax 37:23 The Wire/Garak 40:03 Crossover/The Mirror Universe 41:08 Serialization 43:16 The Jem'Hadar 44:51 Season 3/The Defiant 48:06 The Search/The Dominion 50:04 Past Tense 52:18 Improbable Cause/The Die is Cast 54:31 The Adversary 55:27 Season 4/Worf 58:28 Way of the Warrior 1:00:32 The Visitor 1:03:43 Homefront/Paradise Lost 1:06:28 Broken Link/Odo 1:09:00 Season 5 1:10:24 The Klingon War/Worf & Jadzia 1:13:59 Trials and Tribble-ations 1:15:45 For the Uniform 1:17:36 Gul Dukat & Weyoun 1:22:10 Season 6 1:23:28 The Dominion War 1:28:28 The Magnificent Ferengi 1:30:39 Waltz 1:32:30 Far Beyond the Stars 1:36:42 Inquisition/ Julien Bashir 1:38:49 In the Pale Moonlight 1:40:34 Rick Berman/Terry Farrell's Departure 1:43:23 Season 7 1:44:55 Once More Unto the Breach 1:46:25 It's Only a Paper Moon/Nog 1:48:49 Field of Fire/Ezri Dax 1:50:53 The Final Ten Episodes 1:55:48 Legacy 1:57:20 Outro #StarTrek #StarTrekDeepSpaceNine #StarTrekRetrospective #RowanJColeman
    https://wn.com/Star_Trek_Deep_Space_Nine_Retrospective_Review_Star_Trek_Retrospective,_Part_10
    Star Trek: Deep Space Nine ... and their real life partners
    13:30

    Star Trek: Deep Space Nine ... and their real life partners

    • Order:
    • Duration: 13:30
    • Uploaded Date: 07 Apr 2024
    • views: 47091
    #deepspacenine #ds9 #startrek #startrekdeepspacenine #captainsisko #jadziadax #worf #quark #majorkira
    https://wn.com/Star_Trek_Deep_Space_Nine_..._And_Their_Real_Life_Partners
    My Thoughts on Star Trek Deep Space Nine
    12:05

    My Thoughts on Star Trek Deep Space Nine

    • Order:
    • Duration: 12:05
    • Uploaded Date: 17 Apr 2018
    • views: 163425
    Support my work on Patreon: http://ow.ly/3ymWFu Support my work on MakerSupport: http://ow.ly/pJjS100RXtS PayPal Donations Welcome. Click here: http://goo.gl/NSdOvK My usage of portions of copyrighted films and imagery falls under fair use policy based on section 107 of the US copyright law. Not withstanding the provisions of sections 106 and 106A, the fair use of a copyrighted work for purposes of criticism, comment, review and news reporting is not an infringement of copyright. SUBSCRIBE TO THIS YOUTUBE CHANNEL: https://www.youtube.com/channel/UCDVb4m_5QHhZElT47E1oODg KEEP UP ON SOCIAL MEDIA: BitChute: https://www.bitchute.com/channel/hybM74uIHJKf/ Gab: https://gab.ai/DaveCullen Minds.com: https://www.minds.com/davecullen
    https://wn.com/My_Thoughts_On_Star_Trek_Deep_Space_Nine
    Star Trek: Deep Space Nine theme (HQ)
    1:58

    Star Trek: Deep Space Nine theme (HQ)

    • Order:
    • Duration: 1:58
    • Uploaded Date: 18 Jan 2012
    • views: 949773
    Main theme from Star Trek: Deep Space Nine (DS9), as heard in seasons 4-7. Amazon album: http://www.amazon.com/gp/product/B000QZXAD8
    https://wn.com/Star_Trek_Deep_Space_Nine_Theme_(Hq)
    The Klingons Attack DS9 (The Way of the Warrior)
    4:52

    The Klingons Attack DS9 (The Way of the Warrior)

    • Order:
    • Duration: 4:52
    • Uploaded Date: 17 Jan 2021
    • views: 310619
    The action scene as the Klingons attack and board the station. From Star Trek Deep Space Nine S4E1: The Way of the Warrior
    https://wn.com/The_Klingons_Attack_Ds9_(The_Way_Of_The_Warrior)
    ST:5 Deep Space Nine - 1950s Super Panavision 70
    5:29

    ST:5 Deep Space Nine - 1950s Super Panavision 70

    • Order:
    • Duration: 5:29
    • Uploaded Date: 04 May 2024
    • views: 6897
    SUPER TRAILERS Episode 5 - Star Trek Deep Space Nine - 1950s Super Panavision 70 style Previous Episode: https://youtu.be/IIJrgyT0Zdg Inspired by @AbandonedFilms Created with Midjourney, RunwayML, Davinci Resolve, Udio AI, & Topaz AI Follow me on X: Http://www.Twitter.com/GFMWrites I am available for video commissions and collaborations! Contact: GregoryMandarano@aol.com #superpanavision #trailer #ai #startrek
    https://wn.com/St_5_Deep_Space_Nine_1950S_Super_Panavision_70
    Ups & Downs From Star Trek: Deep Space Nine 5.26 - Call To Arms
    32:37

    Ups & Downs From Star Trek: Deep Space Nine 5.26 - Call To Arms

    • Order:
    • Duration: 32:37
    • Uploaded Date: 31 Mar 2024
    • views: 40381
    The last retro Ups & Downs before Discovery returns! Listen to The TrekCulture Podcast - Tuesdays on; Spotify: https://open.spotify.com/show/1wrqDG8mOTlshuZCYanhUV?si=5d782898e1254754 Apple: https://podcasts.apple.com/ph/podcast/trekculture/id1542785135 Acast: https://play.acast.com/s/trekculture/ For more awesome content: http://whatculture.com/topic/star-trek Follow TrekCulture on Twitter: https://twitter.com/TrekCulture Follow us on Instagram: https://instagram.com/TrekCultureYT #StarTrek #StarTrekDS9 #CallToArms
    https://wn.com/Ups_Downs_From_Star_Trek_Deep_Space_Nine_5.26_Call_To_Arms
    Star Trek Deep Space Nine Cast: Where Are They Now?
    20:03

    Star Trek Deep Space Nine Cast: Where Are They Now?

    • Order:
    • Duration: 20:03
    • Uploaded Date: 01 May 2022
    • views: 135503
    It's been over 20 years since DS9 wrapped: what have the cast been up to since? Read the article here: https://whatculture.com/tv/star-trek-deep-space-nine-cast-where-are-they-now For more awesome content: http://whatculture.com/topic/star-trek Follow TrekCulture on Twitter: https://twitter.com/TrekCulture #StarTrek #StarTrekDS9 #DeepSpaceNine
    https://wn.com/Star_Trek_Deep_Space_Nine_Cast_Where_Are_They_Now
    • Star Trek: Detail Look Inside Deep Space 9!

      This is the 3D animation of Deep Space 9 from Star Trek. Enjoy! #startrek Deep Space 9, originally known as Terok Nor, was one of the most historically, politically, and strategically important space stations in the Alpha Quadrant during the latter half of the 24th century. The space station was constructed by Bajoran slave labor overseen by the Cardassians in orbit of Bajor during their occupation of the planet. Under the Federation administration following the Cardassian withdrawal, the station was relocated into the Denorios belt. There, DS9 became a vital commercial port and defensive outpost due to its location near the mouth of the wormhole. It later became a key strategic location during the Dominion War for both the Dominion and the Federation Alliance. External 3D mode...

      published: 14 Dec 2022
    • The Location of Deep Space Nine and Sci-fi Stars

      This is a scientifically accurate depiction of where a select few sci-fi star systems are in our galaxy including #ds9 This has been an obsession of mine for the past few months to show this visually and get a feel for where these systems are around the solar system. Also, it should be noted, that the relative positions of the stars are accurate, but their size is not. Link to the books I mentioned: Star Trek: Stellar Cartography: https://amzn.to/3RN4SKz Project Hail Mary: https://amzn.to/3RJTzm7 Contact Carl Sagan: https://amzn.to/46oV79W Flight of the Dragonfly (Rocheworld) Robert L Forward: https://amzn.to/3S541oL Links to Movies and TV: Avatar: https://amzn.to/45w3LSq Dune: https://amzn.to/3ZUErV7 Alien: https://amzn.to/3LVVbW8 Event Horizon: https://amzn.to/3Qcg3Lw Babylon 5: http...

      published: 25 Sep 2023
    • Voyager departing Deep Space Nine

      Voyager leaves on it's first mission, departing space station Deep Space Nine. Star Trek: Voyager (1995-2001) https://www.flickr.com/photos/102537907@N03/albums/72157636058592223/page3

      published: 28 Sep 2018
    • The Roddenberry Archive: Deep Space Nine... The World According to Quark

      Join Armin Shimerman (who portrays the beloved bartender 'Quark') on a journey through the Roddenberry Archive's virtual recreation of the Promenade from Star Trek: Deep Space Nine, as we explore the evolution and legacy of the Star Trek's most famous space station. You can step into Quark's bar and explore DS9 today - on the web and on Apple Vision Pro: https://roddenberry.x.io/2369-deep-space-nine-ds9/ https://apps.apple.com/us/app/the-archive/id6472772587

      published: 05 Apr 2024
    • Captain Sisko Star Trek Deep Space Nine DS9 Leaving Space Station Good Speech

      1/19/21

      published: 20 Jan 2021
    • Star Trek: 10 Secrets About Deep Space 9 You Need To Know

      Directions to the Bajoran greengrocers, please. Skip Editor Ad: 1:29 Read the article here: https://whatculture.com/tv/star-trek-10-secrets-of-deep-space-9-you-need-to-know #StarTrek #StarTrekDS9 #TerokNor For more awesome content: http://whatculture.com/topic/star-trek Follow TrekCulture on Twitter: https://twitter.com/TrekCulture

      published: 13 Sep 2020
    • Star Trek: Deep Space Nine - Station Breakdown

      I break down the Cardassian-built Federation Starbase, Deep Space Nine. https://www.youtube.com/watch?v=I7CFTOzxsK4 SUPPORT SPACEDOCK: https://www.patreon.com/officialspacedock?ty=h FACEBOOK: https://www.facebook.com/officialspacedock/?pnref=lhc TWITTER: https://twitter.com/SpacedockHQ TWITCH: https://www.twitch.tv/spacedockhq REDDIT: https://www.reddit.com/r/officialspacedock/ SPACEDOCK MERCHANDISE: http://www.redbubble.com/people/spacedock/shop?asc=u Do not contact regarding network proposals. Battlezone II Music by Carey Chico Sci-Tech Intro Features Animated Elements by SKIBBZ. Spacedock does not hold ownership of the copyrighted materiel (Footage, Stills etc) taken from the various works of fiction covered in this series, and uses them within the boundaries of Fair Use for...

      published: 14 Jul 2018
    • DEEP SPACE NINE DS9 Space Station

      published: 14 Jul 2019
    • A Man Alone Review ST DS9 S1 E3

      In this video I review episode 3 of Season 1 of Star Trek: Deep Space Nine "A Man Alone" Support Enchantment of Eternity on Patreon: https://www.patreon.com/enchantmentofeternity Check out Enchantment of Eternity on Facebook: https://www.facebook.com/enchantmentofeternity/

      published: 15 Aug 2024
    • Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual

      Attempting to emulate my heroes. If you would like to support the channel you can now do so with a Patreon donation from $2 a month, and get access to incremental update videos, wallpapers from my master files without youtube compression, draft animatics, and your name on screen! https://www.patreon.com/neonvisual Your support is greatly appreciated in covering costs of hardware and electricity rendering! Thanks :-) The culmination of a few month’s work in my free time, a recreation of the Star Trek Deep Space Nine series 4-7 title sequence in 4k. Please like and subscribe to follow new content! - Produced and animated by Xander Hugh. - Created in Newtek Lightwave 3D, Adobe After Effects, & Magix Sound Forge. - DS9 Model by Alexander Klemm. - Runabout model by Thomas Slanitz. - USS Def...

      published: 19 Jul 2019
    developed with YouTube
    Star Trek:  Detail Look Inside Deep Space 9!
    18:38

    Star Trek: Detail Look Inside Deep Space 9!

    • Order:
    • Duration: 18:38
    • Uploaded Date: 14 Dec 2022
    • views: 103636
    This is the 3D animation of Deep Space 9 from Star Trek. Enjoy! #startrek Deep Space 9, originally known as Terok Nor, was one of the most historically, politically, and strategically important space stations in the Alpha Quadrant during the latter half of the 24th century. The space station was constructed by Bajoran slave labor overseen by the Cardassians in orbit of Bajor during their occupation of the planet. Under the Federation administration following the Cardassian withdrawal, the station was relocated into the Denorios belt. There, DS9 became a vital commercial port and defensive outpost due to its location near the mouth of the wormhole. It later became a key strategic location during the Dominion War for both the Dominion and the Federation Alliance. External 3D models and Textures of Enterprise-A, D, E, DS9, and Runabout by Alex Kleem. https://www.alex3d.at/ DS9 Blueprint https://www.cygnus-x1.net/links/lcars/deep-space-nine-concept.php Star Trek: Deep Space 9 & The U.S.S Defiant Illustrated https://amzn.to/3iTXT2O U.S.S. Enterprise Haynes Manual (Star Trek) https://amzn.to/3sUXu36 Star Trek: The U.S.S. Enterprise NCC-1701 Illustrated Handbook https://amzn.to/3JDl1vk Star Trek The Next Generation: Technical Manual https://amzn.to/3zkYkaw Logitech MX Master 3 Advanced Wireless Mouse https://amzn.to/3eNcU1m SAMSUNG 970 EVO Plus SSD 500GB - M.2 NVMe https://amzn.to/3mU3SUp 0:00 Introduction 3:25 Size 4:50 Exterior 5:44 Runabout 7:15 Operation Centers 10:00 The Promenade 10:35 Quark's Bar 12:19 Wardroom 14:19 Infirmary 15:24 USS Defiant 17:20 Conclusion
    https://wn.com/Star_Trek_Detail_Look_Inside_Deep_Space_9
    The Location of Deep Space Nine and Sci-fi Stars
    6:41

    The Location of Deep Space Nine and Sci-fi Stars

    • Order:
    • Duration: 6:41
    • Uploaded Date: 25 Sep 2023
    • views: 1663185
    This is a scientifically accurate depiction of where a select few sci-fi star systems are in our galaxy including #ds9 This has been an obsession of mine for the past few months to show this visually and get a feel for where these systems are around the solar system. Also, it should be noted, that the relative positions of the stars are accurate, but their size is not. Link to the books I mentioned: Star Trek: Stellar Cartography: https://amzn.to/3RN4SKz Project Hail Mary: https://amzn.to/3RJTzm7 Contact Carl Sagan: https://amzn.to/46oV79W Flight of the Dragonfly (Rocheworld) Robert L Forward: https://amzn.to/3S541oL Links to Movies and TV: Avatar: https://amzn.to/45w3LSq Dune: https://amzn.to/3ZUErV7 Alien: https://amzn.to/3LVVbW8 Event Horizon: https://amzn.to/3Qcg3Lw Babylon 5: https://amzn.to/46HcEKF Lost in Space: https://amzn.to/45tCdNB Deep Space 9: https://amzn.to/46n3iDs TNG: https://amzn.to/3FjNvcw Voyager: https://amzn.to/3tB5AAd The data used for the star positions is the HYG database, specifically the HYG 3.5. https://github.com/astronexus/HYG-Database SOCIAL: Patreon: https://www.patreon.com/TheOverviewEffects Twitter: https://twitter.com/OverviewEfect Instagram: https://www.instagram.com/overviewefects/ Facebook: https://www.facebook.com/profile.php?id=61552024642764 ATTRIBUTION: "Deep Space Nine - Star Trek" (https://skfb.ly/opOtP) by rossrobotics "Voyager NCC 74656" (https://skfb.ly/Hsvs) by morenostefanuto "Babylon 5 Station (Babylon 5)" (https://skfb.ly/6pFJp) by uperesito Are all licensed under Creative Commons Attribution Some of the links above are affiliate links, which means, at no cost to you, I will earn a small percentage if you make a purchase.
    https://wn.com/The_Location_Of_Deep_Space_Nine_And_Sci_Fi_Stars
    Voyager departing Deep Space Nine
    2:37

    Voyager departing Deep Space Nine

    • Order:
    • Duration: 2:37
    • Uploaded Date: 28 Sep 2018
    • views: 65260
    Voyager leaves on it's first mission, departing space station Deep Space Nine. Star Trek: Voyager (1995-2001) https://www.flickr.com/photos/102537907@N03/albums/72157636058592223/page3
    https://wn.com/Voyager_Departing_Deep_Space_Nine
    The Roddenberry Archive: Deep Space Nine... The World According to Quark
    12:56

    The Roddenberry Archive: Deep Space Nine... The World According to Quark

    • Order:
    • Duration: 12:56
    • Uploaded Date: 05 Apr 2024
    • views: 409923
    Join Armin Shimerman (who portrays the beloved bartender 'Quark') on a journey through the Roddenberry Archive's virtual recreation of the Promenade from Star Trek: Deep Space Nine, as we explore the evolution and legacy of the Star Trek's most famous space station. You can step into Quark's bar and explore DS9 today - on the web and on Apple Vision Pro: https://roddenberry.x.io/2369-deep-space-nine-ds9/ https://apps.apple.com/us/app/the-archive/id6472772587
    https://wn.com/The_Roddenberry_Archive_Deep_Space_Nine..._The_World_According_To_Quark
    Captain Sisko Star Trek Deep Space Nine DS9 Leaving Space Station Good Speech
    0:58

    Captain Sisko Star Trek Deep Space Nine DS9 Leaving Space Station Good Speech

    • Order:
    • Duration: 0:58
    • Uploaded Date: 20 Jan 2021
    • views: 202
    1/19/21
    https://wn.com/Captain_Sisko_Star_Trek_Deep_Space_Nine_Ds9_Leaving_Space_Station_Good_Speech
    Star Trek: 10 Secrets About Deep Space 9 You Need To Know
    17:24

    Star Trek: 10 Secrets About Deep Space 9 You Need To Know

    • Order:
    • Duration: 17:24
    • Uploaded Date: 13 Sep 2020
    • views: 453844
    Directions to the Bajoran greengrocers, please. Skip Editor Ad: 1:29 Read the article here: https://whatculture.com/tv/star-trek-10-secrets-of-deep-space-9-you-need-to-know #StarTrek #StarTrekDS9 #TerokNor For more awesome content: http://whatculture.com/topic/star-trek Follow TrekCulture on Twitter: https://twitter.com/TrekCulture
    https://wn.com/Star_Trek_10_Secrets_About_Deep_Space_9_You_Need_To_Know
    Star Trek: Deep Space Nine - Station Breakdown
    4:05

    Star Trek: Deep Space Nine - Station Breakdown

    • Order:
    • Duration: 4:05
    • Uploaded Date: 14 Jul 2018
    • views: 168668
    I break down the Cardassian-built Federation Starbase, Deep Space Nine. https://www.youtube.com/watch?v=I7CFTOzxsK4 SUPPORT SPACEDOCK: https://www.patreon.com/officialspacedock?ty=h FACEBOOK: https://www.facebook.com/officialspacedock/?pnref=lhc TWITTER: https://twitter.com/SpacedockHQ TWITCH: https://www.twitch.tv/spacedockhq REDDIT: https://www.reddit.com/r/officialspacedock/ SPACEDOCK MERCHANDISE: http://www.redbubble.com/people/spacedock/shop?asc=u Do not contact regarding network proposals. Battlezone II Music by Carey Chico Sci-Tech Intro Features Animated Elements by SKIBBZ. Spacedock does not hold ownership of the copyrighted materiel (Footage, Stills etc) taken from the various works of fiction covered in this series, and uses them within the boundaries of Fair Use for the purpose of Analysis, Discussion and Review. Produced by Daniel Orrett. Owner/Executive Producer at Spacedock.
    https://wn.com/Star_Trek_Deep_Space_Nine_Station_Breakdown
    DEEP SPACE NINE  DS9 Space Station
    0:24

    DEEP SPACE NINE DS9 Space Station

    • Order:
    • Duration: 0:24
    • Uploaded Date: 14 Jul 2019
    • views: 40
    https://wn.com/Deep_Space_Nine_Ds9_Space_Station
    A Man Alone Review ST DS9 S1 E3
    48:18

    A Man Alone Review ST DS9 S1 E3

    • Order:
    • Duration: 48:18
    • Uploaded Date: 15 Aug 2024
    • views: 68
    In this video I review episode 3 of Season 1 of Star Trek: Deep Space Nine "A Man Alone" Support Enchantment of Eternity on Patreon: https://www.patreon.com/enchantmentofeternity Check out Enchantment of Eternity on Facebook: https://www.facebook.com/enchantmentofeternity/
    https://wn.com/A_Man_Alone_Review_St_Ds9_S1_E3
    Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual
    2:04

    Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual

    • Order:
    • Duration: 2:04
    • Uploaded Date: 19 Jul 2019
    • views: 709304
    Attempting to emulate my heroes. If you would like to support the channel you can now do so with a Patreon donation from $2 a month, and get access to incremental update videos, wallpapers from my master files without youtube compression, draft animatics, and your name on screen! https://www.patreon.com/neonvisual Your support is greatly appreciated in covering costs of hardware and electricity rendering! Thanks :-) The culmination of a few month’s work in my free time, a recreation of the Star Trek Deep Space Nine series 4-7 title sequence in 4k. Please like and subscribe to follow new content! - Produced and animated by Xander Hugh. - Created in Newtek Lightwave 3D, Adobe After Effects, & Magix Sound Forge. - DS9 Model by Alexander Klemm. - Runabout model by Thomas Slanitz. - USS Defiant model by Sky Dodds (modified). - USS Sutherland by Luca Silingardi (modified) - Workbee by Raul Mamoru (modified) - SoundFX design by Xander Hugh. BTC address: 3DcADE4jjq76zKEq5bwRy6J8B9bzcPec67 - The obligatory.. “Star Trek and all related marks, logos and characters are solely owned by CBS Studios Inc. This fan production is not endorsed by, sponsored by, nor affiliated with CBS, Paramount Pictures, or any other Star Trek franchise, and is a non-commercial fan-made film intended for recreational use. No commercial exhibition or distribution is permitted. No alleged independent rights will be asserted against CBS or Paramount Pictures.” I've upload the crazy high bitrate 4k master to my onedrive for anyone who wants a copy for personal use. It will try to play in the browser window but you can pause it and hit the download button. It's 1.6GB. Please don't re-upload it elsewhere! Cheers :) https://1drv.ms/v/s!AspDyh0o1lW1gfJPlngDny0TSZr13Q
    https://wn.com/Star_Trek_Deep_Space_Nine_4K_Hd_Intro_Neonvisual
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Max Grodénchik Interview Star Trek Deep Space Nine

    Max Grodénchik Interview Star Trek Deep Space Nine
    7:41
    Max Grodénchik Interview Star Trek Deep Space Nine
    Max Grodénchik Interview Star Trek Deep Space Nine
    published: 29 Jul 2013
    Play in Full Screen
    7:49
    Max Grodenchik Interview - Star Trek Deep Space Nine
    Max Grodenchik Interview - Star Trek Deep Space Nine Subscribe to Red Carpet News: http://...
    published: 28 Apr 2015
    Play in Full Screen
    4:50
    Max Grodenchik & Aron Eisenberg - Destination Star Trek 3 (2014)
    Jonathan Ross meets the stars from Deep Space Nine. Max Grodenchik who played Rom and Aro...
    published: 05 Oct 2014
    Play in Full Screen
    2:06
    I Left My Quark And Captain Sisko ] Max Grodénchik ( Star trek Deep space nine
    published: 16 Apr 2022
    Play in Full Screen
    6:21
    Rom and Nog – Deep Space Nine Star Trek 50th Las Vegas 2016
    Rom and Nog – Deep Space Nine - The Rules of Acquisition Star Trek 50th Las Vegas 2016 Ma...
    published: 18 Jul 2017
    Play in Full Screen
    2:47
    Star Trek DS9. What We Left Behind
    From the documentary What We Left Behind: Looking Back At Deep Space Nine (2018)
    published: 22 Aug 2020
    Play in Full Screen
    1:51:57
    Das Phänomen Star Trek
    Die TV-Stars Chase Masterson aka Bajoranerin „Leeta“ & Max Grodenchik aka Ferengi „Rom“ au...
    published: 20 Nov 2019
    Play in Full Screen
    1:52
    Boston Legal – Rene Auberjonois and Armin Shimerman
    The one scene Rene Auberjonois and Armin Shimerman shared in Boston Legal – season three, ...
    published: 15 Feb 2021
    Play in Full Screen
    1:07:14
    DS9's 2nd Generation | Andy Robinson, Max Grodenchik, Hana Hatae, Cirroc Lofton, Malissa Longo| VTC1
    WATCH THE NEXT VTC VIDEO HERE: https://www.youtube.com/watch?v=HfiAKbpdvT0&feature=youtu.b...
    published: 23 Dec 2020
    Play in Full Screen

    Max Grodénchik

    Max Grodénchik (born November 12, 1952), also known as Michael Grodénchik, is an American stage, film, and television actor, best known for his role as Rom, a recurring character on the television series Star Trek: Deep Space Nine.

    Career

    Theater

    Grodénchik worked in theater during the 1980s as Michael Grodénchik, where his performances received notice. Of his 1980 performance in John O'Keefe's All Night Long, Sarasota Herald-Tribune art reviewer Marcia Corbino wrote that Grodénchik was an intriguing actor who had "an enchanting, mobile comic face on which aberrant emotions flicker, spread, retreat, retrench and explode with a single instant."

    Television

    Grodénchik is better known for his portrayal of the fictional character Rom on Star Trek: Deep Space Nine. He had previously auditioned for the role of Rom's brother Quark, but the role was given to Armin Shimerman. The two both guest-appeared on opposite teams in the short lived British Sci-Fi Quiz show Space Cadets, in 1997.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Star Trek: Deep Space Nine (1993-99) - What Happened to This Series?
      37:57
      Star Trek: Deep Space Nine (1993-99) - What Happened to This Series?remove from playlist
    • Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual
      2:04
      Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisualremove from playlist
    • Star Trek Deep Space Nine Retrospective/Review - Star Trek Retrospective, Part 10
      1:58:17
      Star Trek Deep Space Nine Retrospective/Review - Star Trek Retrospective, Part 10remove from playlist
    • Star Trek: Deep Space Nine ... and their real life partners
      13:30
      Star Trek: Deep Space Nine ... and their real life partnersremove from playlist
    • My Thoughts on Star Trek Deep Space Nine
      12:05
      My Thoughts on Star Trek Deep Space Nineremove from playlist
    • Star Trek: Deep Space Nine theme (HQ)
      1:58
      Star Trek: Deep Space Nine theme (HQ)remove from playlist
    • The Klingons Attack DS9 (The Way of the Warrior)
      4:52
      The Klingons Attack DS9 (The Way of the Warrior)remove from playlist
    • ST:5 Deep Space Nine - 1950s Super Panavision 70
      5:29
      ST:5 Deep Space Nine - 1950s Super Panavision 70remove from playlist
    • Ups & Downs From Star Trek: Deep Space Nine 5.26 - Call To Arms
      32:37
      Ups & Downs From Star Trek: Deep Space Nine 5.26 - Call To Armsremove from playlist
    • Star Trek Deep Space Nine Cast: Where Are They Now?
      20:03
      Star Trek Deep Space Nine Cast: Where Are They Now?remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Star Trek: Deep Space Nine (1993-99) - What Happened to This Series?

    I love Star Trek. It's one of the most unique fandoms since it features multiple different properties in the same universe. Don't get me wrong, I love Star Wars, but something about Star Trek raises it to another level. There are so many shows that are unique in their own way. You have Star Trek T.O.S, Star Trek The Animated Series, Star Trek The Next Generation, Star Trek Voyager, Enterprise, Star Trek Discovery, Star Trek Strange New Worlds, Star Trek Prodigy, Star Trek Lower Decks, and Star Trek Picard. There is something for everyone. Fans are a little bit less toxic than other fandoms. My theory is that because there are so many shows, everyone can agree on at least one show that is good. So if someone were to, let’s say, hate Prodigy, they may like Lower Decks, or maybe they think Next Generation is the only good Star Trek show. But because there are so many series, there is a better chance to link the fan love. I have met many Trekers in my life and have yet to meet someone I have nothing in common with. One Star Trek show that I loved that tended to divide fans was Star Trek: Deep Space Nine. In it, Avery Brooks starred as Commander Benjamin Sisco. Unlike other Trek main characters, he wasn't a captain. Rather, he was a commander struggling with grief (and rage) after his wife was killed in an attack orchestrated by none other than Captain Picard when the Borg assimilated him as Locutus. The show centred partly around him being a single parent to his son, Jake, as well as his adventures commanding Deep Space Nine. It had a tremendous cast of characters, including René Auberjonois as the shape-shifter, Odo, Nana Vistor as Bajoran resistance veteran, Kira, Terry Farrell as Jadzia Dax, Alexander Siddig as Dr. Julian Bashir, Armin Shimerman's Quark, and many more. It even had some TNG holdovers like Colm Meaney as Chief O'Brien, and (later) Michael Dorn's Worf. In this episode, we dig into how the show initially divided fans, but in hindsight is held up by many as one of the best Trek shows of all time. Wanna support us? Get your JoBlo Merch right here! https://joblo-merch.creator-spring.com/ For more MOVIE NEWS, visit: http://www.joblo.com SUBSCRIBE for more of all the LATEST JoBlo Videos here: https://goo.gl/R9U81J #startrekdeepspacenine #AveryBrooks #StarTrekDS9
    37:57
    Star Trek: Deep Space Nine (1993-99) - What Happened to This Series?
    I love Star Trek. It's one of the most unique fandoms since it features multiple different...
    published: 06 May 2024
    Play in Full Screen
    2:04
    Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual
    Attempting to emulate my heroes. If you would like to support the channel you can now do s...
    published: 19 Jul 2019
    Play in Full Screen
    1:58:17
    Star Trek Deep Space Nine Retrospective/Review - Star Trek Retrospective, Part 10
    Star Trek Retrospective, Part 10: Star Trek The Next Generation had done the impossible, b...
    published: 25 Jul 2021
    Play in Full Screen
    13:30
    Star Trek: Deep Space Nine ... and their real life partners
    #deepspacenine #ds9 #startrek #startrekdeepspacenine #captainsisko #jadziadax #worf #quark...
    published: 07 Apr 2024
    Play in Full Screen
    12:05
    My Thoughts on Star Trek Deep Space Nine
    Support my work on Patreon: http://ow.ly/3ymWFu Support my work on MakerSupport: http://ow...
    published: 17 Apr 2018
    Play in Full Screen
    1:58
    Star Trek: Deep Space Nine theme (HQ)
    Main theme from Star Trek: Deep Space Nine (DS9), as heard in seasons 4-7. Amazon album: ...
    published: 18 Jan 2012
    Play in Full Screen
    4:52
    The Klingons Attack DS9 (The Way of the Warrior)
    The action scene as the Klingons attack and board the station. From Star Trek Deep Space N...
    published: 17 Jan 2021
    Play in Full Screen
    5:29
    ST:5 Deep Space Nine - 1950s Super Panavision 70
    SUPER TRAILERS Episode 5 - Star Trek Deep Space Nine - 1950s Super Panavision 70 style Pr...
    published: 04 May 2024
    Play in Full Screen
    32:37
    Ups & Downs From Star Trek: Deep Space Nine 5.26 - Call To Arms
    The last retro Ups & Downs before Discovery returns! Listen to The TrekCulture Podcast -...
    published: 31 Mar 2024
    Play in Full Screen
    20:03
    Star Trek Deep Space Nine Cast: Where Are They Now?
    It's been over 20 years since DS9 wrapped: what have the cast been up to since? Read the ...
    published: 01 May 2022
    Play in Full Screen
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Star Trek:  Detail Look Inside Deep Space 9!
      18:38
      Star Trek: Detail Look Inside Deep Space 9!remove from playlist
    • The Location of Deep Space Nine and Sci-fi Stars
      6:41
      The Location of Deep Space Nine and Sci-fi Starsremove from playlist
    • Voyager departing Deep Space Nine
      2:37
      Voyager departing Deep Space Nineremove from playlist
    • The Roddenberry Archive: Deep Space Nine... The World According to Quark
      12:56
      The Roddenberry Archive: Deep Space Nine... The World According to Quarkremove from playlist
    • Star Trek: 10 Secrets About Deep Space 9 You Need To Know
      17:24
      Star Trek: 10 Secrets About Deep Space 9 You Need To Knowremove from playlist
    • Star Trek: Deep Space Nine - Station Breakdown
      4:05
      Star Trek: Deep Space Nine - Station Breakdownremove from playlist
    • A Man Alone Review ST DS9 S1 E3
      48:18
      A Man Alone Review ST DS9 S1 E3remove from playlist
    • Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual
      2:04
      Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisualremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Star Trek: Detail Look Inside Deep Space 9!

    This is the 3D animation of Deep Space 9 from Star Trek. Enjoy! #startrek Deep Space 9, originally known as Terok Nor, was one of the most historically, politically, and strategically important space stations in the Alpha Quadrant during the latter half of the 24th century. The space station was constructed by Bajoran slave labor overseen by the Cardassians in orbit of Bajor during their occupation of the planet. Under the Federation administration following the Cardassian withdrawal, the station was relocated into the Denorios belt. There, DS9 became a vital commercial port and defensive outpost due to its location near the mouth of the wormhole. It later became a key strategic location during the Dominion War for both the Dominion and the Federation Alliance. External 3D models and Textures of Enterprise-A, D, E, DS9, and Runabout by Alex Kleem. https://www.alex3d.at/ DS9 Blueprint https://www.cygnus-x1.net/links/lcars/deep-space-nine-concept.php Star Trek: Deep Space 9 & The U.S.S Defiant Illustrated https://amzn.to/3iTXT2O U.S.S. Enterprise Haynes Manual (Star Trek) https://amzn.to/3sUXu36 Star Trek: The U.S.S. Enterprise NCC-1701 Illustrated Handbook https://amzn.to/3JDl1vk Star Trek The Next Generation: Technical Manual https://amzn.to/3zkYkaw Logitech MX Master 3 Advanced Wireless Mouse https://amzn.to/3eNcU1m SAMSUNG 970 EVO Plus SSD 500GB - M.2 NVMe https://amzn.to/3mU3SUp 0:00 Introduction 3:25 Size 4:50 Exterior 5:44 Runabout 7:15 Operation Centers 10:00 The Promenade 10:35 Quark's Bar 12:19 Wardroom 14:19 Infirmary 15:24 USS Defiant 17:20 Conclusion
    18:38
    Star Trek: Detail Look Inside Deep Space 9!
    This is the 3D animation of Deep Space 9 from Star Trek. Enjoy! #startrek Deep Space 9,...
    published: 14 Dec 2022
    Play in Full Screen
    6:41
    The Location of Deep Space Nine and Sci-fi Stars
    This is a scientifically accurate depiction of where a select few sci-fi star systems are ...
    published: 25 Sep 2023
    Play in Full Screen
    2:37
    Voyager departing Deep Space Nine
    Voyager leaves on it's first mission, departing space station Deep Space Nine. Star Trek: ...
    published: 28 Sep 2018
    Play in Full Screen
    12:56
    The Roddenberry Archive: Deep Space Nine... The World According to Quark
    Join Armin Shimerman (who portrays the beloved bartender 'Quark') on a journey through the...
    published: 05 Apr 2024
    Play in Full Screen
    0:58
    Captain Sisko Star Trek Deep Space Nine DS9 Leaving Space Station Good Speech
    1/19/21
    published: 20 Jan 2021
    Play in Full Screen
    17:24
    Star Trek: 10 Secrets About Deep Space 9 You Need To Know
    Directions to the Bajoran greengrocers, please. Skip Editor Ad: 1:29 Read the article her...
    published: 13 Sep 2020
    Play in Full Screen
    4:05
    Star Trek: Deep Space Nine - Station Breakdown
    I break down the Cardassian-built Federation Starbase, Deep Space Nine. https://www.yout...
    published: 14 Jul 2018
    Play in Full Screen
    0:24
    DEEP SPACE NINE DS9 Space Station
    published: 14 Jul 2019
    Play in Full Screen
    48:18
    A Man Alone Review ST DS9 S1 E3
    In this video I review episode 3 of Season 1 of Star Trek: Deep Space Nine "A Man Alone" ...
    published: 15 Aug 2024
    Play in Full Screen
    2:04
    Star Trek: Deep Space Nine - 4K / HD Intro - NeonVisual
    Attempting to emulate my heroes. If you would like to support the channel you can now do s...
    published: 19 Jul 2019
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×