- published: 29 May 2013
- views: 849009
'+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; })); }); -->
Colosseum Live is a live album by Colosseum, released in 1971. It was one of the band's most commercially successful albums, remaining in the UK Albums Chart for six weeks and peaking at number 17.
This album was recorded at Manchester University (March 18, 1971) and the Big Apple, Brighton (March 27, 1971), on the "Daughter of Time" tour. After "Colosseum Live", the band broke up for 23 years and reunited in 1994.
Allmusic wrote that "With good material, some towering performances, and a powerful atmosphere, this is everything you could hope for from a live album." They made note of the performances of all the players except Dave Greenslade, and commented that the band arrangements, duets during the fills, and the way solos flow from one to the other are all interesting and effective.
The Colosseum or Coliseum (/kɒləˈsiːəm/ kol-ə-SEE-əm), also known as the Flavian Amphitheatre (Latin: Amphitheatrum Flavium; Italian: Anfiteatro Flavio [amfiteˈaːtro ˈflaːvjo] or Colosseo [kolosˈsɛːo]), is an oval amphitheatre in the centre of the city of Rome, Italy. Built of concrete and sand, it is the largest amphitheatre ever built. The Colosseum is situated just east of the Roman Forum. Construction began under the emperor Vespasian in 72 AD, and was completed in 80 AD under his successor and heir Titus. Further modifications were made during the reign of Domitian (81–96). These three emperors are known as the Flavian dynasty, and the amphitheatre was named in Latin for its association with their family name (Flavius).
The Colosseum could hold, it is estimated, between 50,000 and 80,000 spectators, having an average audience of some 65,000; it was used for gladiatorial contests and public spectacles such as mock sea battles, animal hunts, executions, re-enactments of famous battles, and dramas based on Classical mythology. The building ceased to be used for entertainment in the early medieval era. It was later reused for such purposes as housing, workshops, quarters for a religious order, a fortress, a quarry, and a Christian shrine.
Colosseum is the second studio album by Shockabilly, released in 1984 by Rough Trade Records. It released on CD as The Ghost of Shockabilly in 1989.
Adapted from the Colosseum liner notes.
Colosseum were a pioneering English progressive jazz-rock band, mixing progressive rock and jazz-based improvisation.
The band was formed in September 1968 by drummer Jon Hiseman, tenor sax player Dick Heckstall-Smith and bass player Tony Reeves, who had previously worked together in John Mayall's Bluesbreakers on the Bare Wires album. Dave Greenslade, on organ, was immediately recruited, and the line-up was completed by Jim Roche on guitar, although Roche only recorded one track before being replaced by James Litherland, (guitar and vocals). Hiseman and Heckstall-Smith had also previously played in Graham Bond's band, and Colosseum utilised several of the songs from that period.
The band made their live debut in Newcastle and were promptly recorded by influential BBC Radio 1 DJ John Peel for his Top Gear Radio program. This appearance gained them valuable exposure and critical acclaim.
Their first album, Those Who Are About to Die Salute You, which opened with the Bond composition "Walkin' in the Park", was released by the Fontana label in 1969, and in March the same year they played at the Supershow, a recorded two-day jam session, along with Modern Jazz Quartet, Led Zeppelin, Jack Bruce, Roland Kirk Quartet, Eric Clapton, Stephen Stills, and Juicy Lucy. Colosseum's second album, also in 1969, was Valentyne Suite, notable as the first release from Vertigo Records, a branch of Philips Records established to sign and develop artists that did not fit the main Philips brand, and the first label to sign heavy metal pioneers Black Sabbath.
Built in the 1st c AD when the Roman Empire peaked, the Colosseum represents Rome at its grandest. This colossal structure is a massive marvel of engineering. Ancient Romans, whose taste for violence exceeded even modern America's, came here to unwind. Gladiators, criminals, and wild animals fought to the death providing 50,000 roaring fans with a festival of gore. #ricksteveseurope #ricksteves #colosseum Visit http://www.ricksteves.com for more information about this destination and other destinations in Europe. Check out more Rick Steves’ Europe travel resources: • “Rick Steves’ Europe” public television series: https://www.ricksteves.com/watch-read-listen/video/tv-show • “Travel with Rick Steves” public radio program: https://www.ricksteves.com/watch-read-listen/audio/radio • Europe...
The construction of the largest amphitheater in Rome has taken place and now history's most iconic duels commence, in this clip from "The Gladiators." #Colosseum Subscribe for more HISTORY: http://histv.co/SubscribeHistoryYT Check out exclusive HISTORY content: History Newsletter - https://histv.co/newsletter Website - https://histv.co/History Facebook - https://histv.co/Facebook Twitter - https://histv.co/Twitter HISTORY® is the leading destination for award-winning original series and specials that connect viewers with history in an informative, immersive, and entertaining manner across all platforms. The network’s all-original programming slate features a roster of hit series, premium documentaries, and scripted event programming.
Please consider supporting the show on Patreon https://www.patreon.com/simplehistory The Colosseum is located in Rome, Italy. Also known as the Flavian Amphitheatre,it is an oval amphitheatre, and the largest ever built. The arena hosted a variety of blood sports as entertainment. with ceremonies and shows that lasted for 100 days. The schedule for the day consisted of men hunting dangerous animals and executions of criminals, but the main event would be the gladiatorial combat. Ancient writers wrote about mock sea battles or naumachiae before the Hypogeum was developed . It is speculated that hydraulic mechanisms were used to flood the arena rapidly for such naval battles. Please consider supporting our videos on Patreon https://www.patreon.com/simplehistory SIMPLE HISTORY MERC...
This is an ultimate guide on How To Visit the Colosseum. The Colosseum is a symbol of Rome and one of the most recognizable structures in the world. It's an incredible edifice still standing after almost 2000 years of construction. We give you the formula on How to See the Colosseum in Rome as an independent traveler or by joining a tour. #rome #italyvideos #colosseum Join The Tour Guy's Newsletter and be the First to Know When a New Video Drops: https://thetourguy.lpages.co/newsletter-opt-in/ Subscribe for more! https://bit.ly/3iicLnG How to Visit the Colosseum Blog: https://bit.ly/3ICmqSR Check out our ALL our Colosseum Tours: https://bit.ly/3zcG5pD Rome in a day tour: https://bit.ly/3i27Jfy Privileged Entrance Arena Floor Colosseum Tour with Roman Forum: https://thetourguy.com/t...
#colosseum #architecture #history #rome #ancientrome In this episode, we explore the history of the Colosseum in Rome and what happened to the missing half of this iconic structure. From devastating fires to repurposing as a cemetery and castle, learn about the challenges this ancient amphitheater faced over the centuries. Join us as we uncover the fascinating story behind one of the world's most famous landmarks. Thanks for watching! ----------------------------------------------------------------------------------------------------------------------------------------------------------------- Subscribe for more History: https://bit.ly/3JDZTYt ------------------------------------------------------------------------------------------------------------------------------------------------...
Rome’s emperor orders a major renovation to prove himself, in this clip from "The Builder." #Colosseum Subscribe for more from Colosseum and other great The HISTORY Channel shows: http://histv.co/SubscribeHistoryYT Check out exclusive HISTORY content: History Newsletter - https://histv.co/newsletter Website - https://histv.co/History Facebook - https://histv.co/Facebook Twitter - https://histv.co/Twitter Watch all new episodes of Colosseum, Sundays at 9/8c, and stay up to date on all of your favorite The HISTORY Channel shows at http://history.com/schedule. The eight-part series vividly brings to life the rise and fall of the Roman Empire through the lens of one of the most exhilarating and brutal arenas in the history of humanity–the Colosseum. From the savage truth of a gladiator’s ...
The construction of the largest amphitheater in Rome has taken place and now history's most iconic duels commence, in this clip from "The Gladiators." Watch all new episodes of Colosseum, Sundays at 9/8c, and stay up to date on all of your favorite The HISTORY Channel shows at http://history.com/schedule. #Colosseum Subscribe for more from Colosseum and other great The HISTORY Channel shows: http://histv.co/SubscribeHistoryYT Check out exclusive The HISTORY Channel content: History Newsletter - https://histv.co/newsletter Website - https://histv.co/History Facebook - https://histv.co/Facebook Twitter - https://histv.co/Twitter The eight-part series vividly brings to life the rise and fall of the Roman Empire through the lens of one of the most exhilarating and brutal arenas in the his...
Discover two of history's most intriguing narratives in this captivating video! First, learn about the *Anglo-Zanzibar War*, the shortest war ever fought, lasting just 38 minutes. What triggered this swift conflict? You’ll find out! Then, journey back to ancient Rome to explore the *Colosseum's versatility*, where it served as a venue for not only gladiatorial battles but also mock naval fights and grand public events. This ultimate multipurpose arena redefines entertainment in the ancient world! Join us as we uncover these incredible historical facts. Don’t forget to like and share this video! What’s your favorite piece of history? Let us know in the comments below! #historyfacts #anglozanzibarwar #colosseum #ancientrome #shortwars #fyp #fypviral #fypシ゚ #fypage #shorts #shortsyou...
One of the world's most notable feats of architecture is the Colosseum in Rome. Opened in 80 CE by Emperor Titus, this massive structure existed solely to entertain the masses with gladiator fights, animal skirmishes, and, at some point, miniature naval conflicts. While it only took the Romans less than a decade to construct the Colosseum, careful calculation and planning were required. Architects and workers put extensive thought into every detail, from the amphitheater's architectural symmetry to its complex underground maze of corridors and capstans. For centuries, we have tried to imagine what occurred in the Colosseum, fleshing out a gory fantasy in film and media. For instance, the movie Gladiator, for all its inaccuracies, attempts to create an image of how Romans lived and fought....
side one: Rope Ladder to the Moon 0:00 Walking in the Park 9:46 side two: Skelington 18:12 side three: Tanglewood '63 33:09 Encore... "Stormy Monday Blues" 43:25 side four: Lost Angeles 51:01 All rights belong to Castle Communications and Colosseum. Enjoy.
All Rights To Their Respective Owners. I DO NOT OWN THIS MUSIC THIS IS ONLY FOR PROMOTION ! 1. Numquam 2. Towards the Infinite 3. Demons Swarm by My Side 4. The River 5. Narcosis 6. Prosperity 7. Outro
Colosseum II Strange New Flesh 1976, groupe britannique formé en 1968, un des fondateurs du rock progressif, mêlant jazz, blues, rock. Les trois membres fondateurs opéraient dans le John Mayal Bluesbreaker !!!!
Theme One: January's Search Theme Two: February's Valentyne Theme Three: The Grass is Always Greener All rights belong to their respective owners.
Perfil Colosseum, one of the first bands to fuse jazz, rock and blues, were formed in early 1968 by drummer Jon Hiseman with tenor sax player Dick Heckstall-Smith, who had previously worked together in the New Jazz Orchestra and in The Graham Bond Organisation, where Hiseman had replaced Ginger Baker in 1966. They met up again early in 1968 when they both played in John Mayall's Bluesbreakers, during which time they played on the Bare Wires album. Childhood friend Dave Greenslade was quickly recruited on organ, as was bass player Tony Reeves who had also known both Hiseman and Greenslade since being teenage musicians in South East London. The band's line-up was completed, after lengthy auditions, by Jim Roche on guitar and James Litherland (guitar and vocals), although Roche only recorded...
Colosseum were a pioneering English progressive jazz-rock band, mixing blues, rock and jazz-based improvisation.
All Rights To Their Respective Owners. I DO NOT OWN THIS MUSIC THIS IS ONLY FOR PROMOTION ! 1. The Gate of Adar 2. Corridors of Desolation 3. Weathered 4. Saturnine Vastness 5. Aesthetics of the Grotesque 6. Delirium
"Lost Angeles" (Dave Greenslade/Dick Heckstall-Smith/Chris Farlowe) -- 15:43
Colosseum Live is a live album by Colosseum, released in 1971. It was one of the band's most commercially successful albums, remaining in the UK Albums Chart for six weeks and peaking at number 17.
This album was recorded at Manchester University (March 18, 1971) and the Big Apple, Brighton (March 27, 1971), on the "Daughter of Time" tour. After "Colosseum Live", the band broke up for 23 years and reunited in 1994.
Allmusic wrote that "With good material, some towering performances, and a powerful atmosphere, this is everything you could hope for from a live album." They made note of the performances of all the players except Dave Greenslade, and commented that the band arrangements, duets during the fills, and the way solos flow from one to the other are all interesting and effective.