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

Free Trade Hall

The Free Trade Hall in Peter Street, Manchester, England, was a public hall constructed in 1853–56 on St Peter's Fields, the site of the Peterloo Massacre and is now a Radisson hotel. The hall was built to commemorate the repeal of the Corn Laws in 1846. The architect was Edward Walters. The hall was owned by the Manchester Corporation. It was bombed in the Manchester Blitz and its interior rebuilt. It was Manchester's premier concert venue until the construction of the Bridgewater Hall in 1996. The hall was designated a Grade II* listed building on 18 December 1963.

History

The Free Trade Hall was built as a public hall between 1853 and 1856 by Edward Walters on land given by Richard Cobden in St Peter's Fields, the site of the Peterloo Massacre. Two earlier halls had been constructed on the site, the first, a large timber pavilion was built in 1840, and its brick replacement built in 1842. The halls were "vital to Manchester's considerable role in the long campaign for the repeal of the Corn Laws. The hall was funded by public subscription and became a concert hall and home of the Hallé Orchestra in 1858. A red plaque records that it was built on the site of the Peterloo Massacre in 1819.

Free trade

Free trade is a policy followed by some international markets in which countries' governments do not restrict imports from, or exports to, other countries. Free trade is exemplified by the European Economic Area and the North American Free Trade Agreement, which have established open markets. Most nations are today members of the World Trade Organization (WTO) multilateral trade agreements. However, most governments still impose some protectionist policies that are intended to support local employment, such as applying tariffs to imports or subsidies to exports. Governments may also restrict free trade to limit exports of natural resources. Other barriers that may hinder trade include import quotas, taxes, and non-tariff barriers, such as regulatory legislation.

Features of free trade

Free trade policies generally promote the following features:

  • Trade of goods without taxes (including tariffs) or other trade barriers (e.g., quotas on imports or subsidies for producers)
  • Trade in services without taxes or other trade barriers
  • Podcasts:

    • The Smiths Live | The Free Trade Hall | March 1984 [FULL SHOW]

      The Smiths live at the Free Trade Hall, Manchester, England. 13th of March 1984. For those wondering, the song playing before the setlist starts is Love of The Loved by Cilla Black. Full Show. Timestamps: 1:56 - Hand In Glove 4:57 - Heaven Knows I'm Miserable Now 8:25 - Girl Afraid 11:17 - This Charming Man 14:10 - Pretty Girls Make Graves 17:49 - Still Ill 21:25 - This Night Has Opened My Eyes 24:45 - Barbarism Begins At Home 31:33 - Back To The Old House 34:50 - What Difference Does It Make? Encore #1: 38:15 - I Don't Owe You Anything (with Sandie Shaw) Encore #2: 42:20 - Reel Around The Fountain 47:58 - You've Got Everything Now Encore #3: 51:50 - Handsome Devil 54:47 - These Things Take Time Interesting details about this show: - This show saw the last of the 2 times that Sandie...

      published: 27 Aug 2021
    • Miles Davis- September 27, 1960 Free Trade Hall, Manchester [SPEED CORRECTED!!!]

      September 27, 1960 Free Trade Hall, Manchester, United Kingdom Miles Davis Quintet Miles Davis- trumpet (out on **); Sonny Stitt- tenor saxophone, except alto saxophone on */ **; Wynton Kelly- piano; Paul Chambers- bass; Jimmy Cobb- drums First concert Four (M. Davis) 0:00 All of You (C. Porter) * 10:47 Walkin' (incomplete) (R. Carpenter) 25:08 Second concert Four (M. Davis) 29:35 All Blues (M. Davis) 37:33 Well, You Needn't (T. Monk) * 52:04 Autumn Leaves (J. Prevert-J. Mercer-J. Kosma) * 1:05:05 So What (M. Davis) 1:22:13 Stardust (H. Carmichael-M. Parish) ** 1:32:49 / The Theme (M. Davis) * 1:36:51 audience recording This concert has been issued on CD (on Magnetic MRCD 102/3, and Lone Hill Jazz LHJ-10212) and has been previously uploaded to Youtube, although these versions have ...

      published: 22 Sep 2020
    • The Smiths Live | The Free Trade Hall | October 1986 [FULL SHOW]

      The Smiths live at the Free Trade Hall, Manchester, England. 30th of October 1986. Full Show. Timestamps: 0:07 - Ask 3:08 - The Queen Is Dead 7:34 - Panic 10:50 - How Soon Is Now? 16:11 - Vicar In A Tutu 18:55 - Rusholme Ruffians 22:52 - Frankly, Mr. Shankly 25:32 - The Boy With The Thorn In His Side 29:18 - There Is A Light That Never Goes Out 33:34 - Cemetry Gates 36:31 - Is It Really So Strange? 39:57 - What She Said w/Rubber Ring 43:35 - That Joke Isn't Funny Anymore 48:22 - London 50:57 - Meat Is Murder 57:45 - Still Ill Encore #1: 1:01:48 - The Draize Train 1:06:16 - I Know It's Over Encore #2: 1:13:54 - Bigmouth Strikes Again Interesting details about this show: - This show was the final show with Craig Gannon as rhythm guitarist, he would leave the band soon after - This show ...

      published: 01 Apr 2023
    • SEX PISTOLS: The Gig That Changed Manchester Forever

      On June 4th, 1976, the Sex Pistols played a small, badly attended gig in an inaccessible venue in Manchester, England, the Lesser Free Trade Hall to approximately 40 people. Nobody, least of all the band themselves, could have know how far reaching the impact of that gig would be on the city, the country, and the wider world.

      published: 22 Feb 2023
    • Sex Pistols - 1976 06 04 Lesser Free Trade Hall, The gig that changed the world (recreation).

      The Sex Pistols play the Lesser Free Trade Hall in Manchester 1976. It seems millions of people claim to have been at Woodstock when only 500,000 or so were really there, but the biggest pop-culture event of the 1960s has nothing on one of the most pivotal of the 1970s: The Sex Pistols' appearance at the Lesser Free Trade Hall in Manchester, England, on June 4, 1976. Proportional to the actual crowd in attendance, perhaps no event in the history of pop music has enjoyed greater retroactive audience growth than the one that's been called "The gig that changed the world." By June 1976, the Sex Pistols had been playing together under that name for only seven months, and though their look, their sound and their nihilistic attitude were already in place, they and the entire British punk scen...

      published: 25 Apr 2013
    • Bob Dylan, live at the Free Trade Hall, Manchester, 1965

      Bob Dylan, live at the Free Trade Hall, Manchester, 1965 1."The Times They Are a-Changin'" 2."To Ramona" 3."If You Gotta Go, Go Now (or Else You Got to Stay All Night)" 4."It's Alright, Ma (I'm Only Bleeding)" 5."Love Minus Zero/No Limit" 6."Mr. Tambourine Man" 7."Talkin' World War III Blues" 8."Don't Think Twice, It's All Right" 9."With God on Our Side" 10."She Belongs to Me" 11."It Ain't Me Babe"si 12."The Lonesome Death of Hattie Carroll" 13."All I Really Want to Do" 14."It's All Over Now, Baby Blue" Bob Dylan (vocal, acoustic guitar & harmonica). Recorded live at the Free Trade Hall, Manchester, United Kingdom, may 7th 1965

      published: 02 Jul 2018
    • Miles Davis At The Free Trade Hall - Four

      Recorded 9/27/60 Personnel: Miles Davis - Trumpet Sonny Stitt - Alto Sax Wynton Kelly - Piano Paul Chambers - Bass Jimmy Cobb - Drums (Note: This is an incomplete take missing one exchange between trumpet and drums as well as the out chorus. Posted for historical significance.)

      published: 02 May 2010
    • Mark Radcliffe's N.W.A - Sex Pistols - Lesser Free Trade Hall 1976

      Hosted by Mark Radcliffe a feature on the infamous Sex Pistols gig at Manchester's Lesser Free Trade Hall of 1976,as part of Granada TV's N.W.A .( North West Arts ) first shown in 1996. Featuring Clint Boon from the Inspiral Carpets.

      published: 11 May 2015
    • The Blue Nile - Free Trade Hall, Manchester - 21/09/1990 (As broadcast by The BBC)

      I used to really enjoy listening and indeed recording the BBC Radio 1 In Concert series on a Saturday evening during the 1970s, 1980s and 1990s. I still have the cassette tapes and as the BBC has no immediate plan to make these available to the public I have decided to release close to 250 of these historical recordings on my YouTube channel. --- DISCLAIMER! ---- Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

      published: 25 Jul 2018
    • SEX PISTOLS - LIVE IN MANCHESTER 1976

      Rare footage of the SEX PISTOLS gig at the Lesser Free Trade Hall in Manchester 1976.

      published: 13 Jan 2009
    developed with YouTube
    The Smiths Live | The Free Trade Hall | March 1984 [FULL SHOW]
    57:22

    The Smiths Live | The Free Trade Hall | March 1984 [FULL SHOW]

    • Order:
    • Duration: 57:22
    • Uploaded Date: 27 Aug 2021
    • views: 4815
    The Smiths live at the Free Trade Hall, Manchester, England. 13th of March 1984. For those wondering, the song playing before the setlist starts is Love of The Loved by Cilla Black. Full Show. Timestamps: 1:56 - Hand In Glove 4:57 - Heaven Knows I'm Miserable Now 8:25 - Girl Afraid 11:17 - This Charming Man 14:10 - Pretty Girls Make Graves 17:49 - Still Ill 21:25 - This Night Has Opened My Eyes 24:45 - Barbarism Begins At Home 31:33 - Back To The Old House 34:50 - What Difference Does It Make? Encore #1: 38:15 - I Don't Owe You Anything (with Sandie Shaw) Encore #2: 42:20 - Reel Around The Fountain 47:58 - You've Got Everything Now Encore #3: 51:50 - Handsome Devil 54:47 - These Things Take Time Interesting details about this show: - This show saw the last of the 2 times that Sandie Shaw stood in for Morrissey as singer during I Don't Owe You Anything as a result of her and the band's collaborations. Further Info: http://www.passionsjustlikemine.com/live/smiths-g840313.htm Thank you for watching and please subscribe, like, and share for more live content and to help this channel grow and reach more people! Disclaimer: I do not own any of the audio/video content published here, I make the thumbnails and process the audio/video so it can be uploaded, and that's it. All original audio and video content is the property of their respective producers.
    https://wn.com/The_Smiths_Live_|_The_Free_Trade_Hall_|_March_1984_Full_Show
    Miles Davis- September 27, 1960 Free Trade Hall, Manchester [SPEED CORRECTED!!!]
    1:37:42

    Miles Davis- September 27, 1960 Free Trade Hall, Manchester [SPEED CORRECTED!!!]

    • Order:
    • Duration: 1:37:42
    • Uploaded Date: 22 Sep 2020
    • views: 86930
    September 27, 1960 Free Trade Hall, Manchester, United Kingdom Miles Davis Quintet Miles Davis- trumpet (out on **); Sonny Stitt- tenor saxophone, except alto saxophone on */ **; Wynton Kelly- piano; Paul Chambers- bass; Jimmy Cobb- drums First concert Four (M. Davis) 0:00 All of You (C. Porter) * 10:47 Walkin' (incomplete) (R. Carpenter) 25:08 Second concert Four (M. Davis) 29:35 All Blues (M. Davis) 37:33 Well, You Needn't (T. Monk) * 52:04 Autumn Leaves (J. Prevert-J. Mercer-J. Kosma) * 1:05:05 So What (M. Davis) 1:22:13 Stardust (H. Carmichael-M. Parish) ** 1:32:49 / The Theme (M. Davis) * 1:36:51 audience recording This concert has been issued on CD (on Magnetic MRCD 102/3, and Lone Hill Jazz LHJ-10212) and has been previously uploaded to Youtube, although these versions have all been running at slightly the wrong speed. This issue has been corrected here. THE AUTUMN 1960 EUROPEAN TOUR September 27, 1960 Free Trade Hall, Manchester [SPEED CORRECTED!!!] https://youtu.be/fl4TfRYP03s October 11, 1960 Olympia Theatre, Paris [1st concert] https://youtu.be/zCSG0qV5aGI October 11, 1960 Olympia Theatre, Paris [2nd concert] https://youtu.be/vuALn6ZQrTk October 13, 1960 Konserthuset, Stockholm [1st concert] https://youtu.be/vwZF6BcFBes October 13, 1960 Konserthuset, Stockholm [2nd concert] https://youtu.be/7BHfg77AcBs October 15, 1960 Concertgebouw, Amsterdam https://youtu.be/BaPXVAs2unU If you enjoy these posts and would like to thank us for our efforts you can buy us a coffee: https://ko-fi.com/milestonesarchive Thank you!
    https://wn.com/Miles_Davis_September_27,_1960_Free_Trade_Hall,_Manchester_Speed_Corrected
    The Smiths Live | The Free Trade Hall | October 1986 [FULL SHOW]
    1:18:36

    The Smiths Live | The Free Trade Hall | October 1986 [FULL SHOW]

    • Order:
    • Duration: 1:18:36
    • Uploaded Date: 01 Apr 2023
    • views: 500
    The Smiths live at the Free Trade Hall, Manchester, England. 30th of October 1986. Full Show. Timestamps: 0:07 - Ask 3:08 - The Queen Is Dead 7:34 - Panic 10:50 - How Soon Is Now? 16:11 - Vicar In A Tutu 18:55 - Rusholme Ruffians 22:52 - Frankly, Mr. Shankly 25:32 - The Boy With The Thorn In His Side 29:18 - There Is A Light That Never Goes Out 33:34 - Cemetry Gates 36:31 - Is It Really So Strange? 39:57 - What She Said w/Rubber Ring 43:35 - That Joke Isn't Funny Anymore 48:22 - London 50:57 - Meat Is Murder 57:45 - Still Ill Encore #1: 1:01:48 - The Draize Train 1:06:16 - I Know It's Over Encore #2: 1:13:54 - Bigmouth Strikes Again Interesting details about this show: - This show was the final show with Craig Gannon as rhythm guitarist, he would leave the band soon after - This show saw the final live performance of How Soon Is Now?, Vicar In A Tutu, What She Said w/Rubber, That Joke Isn't Funny Anymore, Meat Is Murder, The Draize Train and I Know It's Over. Further Info: http://www.passionsjustlikemine.com/live/smiths-g861030.htm Recording Lineage: This recording is a master audience recording credited to Soundsville Steve. Processed and exported through Lightworks Video Editor in MP4 format. Thank you for watching and please subscribe, like, and share for more live content and to help this channel grow and reach more people! While you are listening/watching, if you notice any audio or video issues whatsoever, please comment or otherwise contact the channel so I can resolve the issue as soon as possible and maintain this archive's quality. Thank you. Disclaimer: I do not own any of the audio/video content published here, I make the thumbnails and process the audio/video so it can be uploaded, and that's it. All original audio and video content is the property of their respective producers.
    https://wn.com/The_Smiths_Live_|_The_Free_Trade_Hall_|_October_1986_Full_Show
    SEX PISTOLS: The Gig That Changed Manchester Forever
    20:22

    SEX PISTOLS: The Gig That Changed Manchester Forever

    • Order:
    • Duration: 20:22
    • Uploaded Date: 22 Feb 2023
    • views: 56152
    On June 4th, 1976, the Sex Pistols played a small, badly attended gig in an inaccessible venue in Manchester, England, the Lesser Free Trade Hall to approximately 40 people. Nobody, least of all the band themselves, could have know how far reaching the impact of that gig would be on the city, the country, and the wider world.
    https://wn.com/Sex_Pistols_The_Gig_That_Changed_Manchester_Forever
    Sex Pistols - 1976 06 04 Lesser Free Trade Hall, The gig that changed the world (recreation).
    3:04

    Sex Pistols - 1976 06 04 Lesser Free Trade Hall, The gig that changed the world (recreation).

    • Order:
    • Duration: 3:04
    • Uploaded Date: 25 Apr 2013
    • views: 45064
    The Sex Pistols play the Lesser Free Trade Hall in Manchester 1976. It seems millions of people claim to have been at Woodstock when only 500,000 or so were really there, but the biggest pop-culture event of the 1960s has nothing on one of the most pivotal of the 1970s: The Sex Pistols' appearance at the Lesser Free Trade Hall in Manchester, England, on June 4, 1976. Proportional to the actual crowd in attendance, perhaps no event in the history of pop music has enjoyed greater retroactive audience growth than the one that's been called "The gig that changed the world." By June 1976, the Sex Pistols had been playing together under that name for only seven months, and though their look, their sound and their nihilistic attitude were already in place, they and the entire British punk scene were still a few months away from truly breaking out. They had drawn just enough attention in the British music press, though, to inspire two young men from Manchester named Howard DeVoto and Pete Shelley to go down and see them play in London in February. From this experience, two things happened: DeVoto and Shelley arranged for the Sex Pistols to come up north and play the Lesser Free Trade Hall; and then they formed their own new band, called the Buzzcocks. News of the June 4 gig in Manchester spread mostly by word of mouth, such that on the night of the show, perhaps as few as 40 people showed up in a room that could hold hundreds. In that small crowd, however, were some names that would help shape the course of pop music over the next decade: Howard DeVoto and Pete Shelley: Their band, the Buzzcocks, would go on to enjoy enormous popularity and influence in the UK both during and after the punk era. Ian Curtis, Bernard Sumner and Peter Hook: The very next day, Hook would buy his first guitar, and the three young Mancunians would become a band. That band—originally called the Stiff Kittens and later Warsaw—was Joy Division, one of the best-known and most influential of all the early New Wave bands. Mark E. Smith: Following the Sex Pistols gig, he started The Fall, a post-punk band that never had a true hit record but influenced generations of followers from Nirvana to Franz Ferdinand. Steven Patrick Morrissey: The last of these notables to make a name for himself, but one of the most successful, both as leader of The Smiths in the mid-1980s and as a solo artist thereafter. Tony Wilson: Manchester TV news presenter who would be inspired to start the record label Factory Records, which would help create the thriving Manchester scene of the 1980s and early-90s. Just a few days after the Sex Pistols stormed Manchester on this day in 1976, they returned to London for gigs on July 4 and 6 that featured two brand-new bands as opening acts: The Clash and The Damned. Three weeks after that, their return gig at the Lesser Free Trade Hall (featuring opening act the Buzzcocks) drew hundreds, as the punk era unofficially opened.
    https://wn.com/Sex_Pistols_1976_06_04_Lesser_Free_Trade_Hall,_The_Gig_That_Changed_The_World_(Recreation).
    Bob Dylan, live at the Free Trade Hall, Manchester, 1965
    1:06:24

    Bob Dylan, live at the Free Trade Hall, Manchester, 1965

    • Order:
    • Duration: 1:06:24
    • Uploaded Date: 02 Jul 2018
    • views: 43472
    Bob Dylan, live at the Free Trade Hall, Manchester, 1965 1."The Times They Are a-Changin'" 2."To Ramona" 3."If You Gotta Go, Go Now (or Else You Got to Stay All Night)" 4."It's Alright, Ma (I'm Only Bleeding)" 5."Love Minus Zero/No Limit" 6."Mr. Tambourine Man" 7."Talkin' World War III Blues" 8."Don't Think Twice, It's All Right" 9."With God on Our Side" 10."She Belongs to Me" 11."It Ain't Me Babe"si 12."The Lonesome Death of Hattie Carroll" 13."All I Really Want to Do" 14."It's All Over Now, Baby Blue" Bob Dylan (vocal, acoustic guitar & harmonica). Recorded live at the Free Trade Hall, Manchester, United Kingdom, may 7th 1965
    https://wn.com/Bob_Dylan,_Live_At_The_Free_Trade_Hall,_Manchester,_1965
    Miles Davis At The Free Trade Hall - Four
    10:57

    Miles Davis At The Free Trade Hall - Four

    • Order:
    • Duration: 10:57
    • Uploaded Date: 02 May 2010
    • views: 1793
    Recorded 9/27/60 Personnel: Miles Davis - Trumpet Sonny Stitt - Alto Sax Wynton Kelly - Piano Paul Chambers - Bass Jimmy Cobb - Drums (Note: This is an incomplete take missing one exchange between trumpet and drums as well as the out chorus. Posted for historical significance.)
    https://wn.com/Miles_Davis_At_The_Free_Trade_Hall_Four
    Mark Radcliffe's N.W.A - Sex Pistols - Lesser Free Trade Hall 1976
    12:33

    Mark Radcliffe's N.W.A - Sex Pistols - Lesser Free Trade Hall 1976

    • Order:
    • Duration: 12:33
    • Uploaded Date: 11 May 2015
    • views: 10394
    Hosted by Mark Radcliffe a feature on the infamous Sex Pistols gig at Manchester's Lesser Free Trade Hall of 1976,as part of Granada TV's N.W.A .( North West Arts ) first shown in 1996. Featuring Clint Boon from the Inspiral Carpets.
    https://wn.com/Mark_Radcliffe's_N.W.A_Sex_Pistols_Lesser_Free_Trade_Hall_1976
    The Blue Nile - Free Trade Hall, Manchester - 21/09/1990 (As broadcast by The BBC)
    55:15

    The Blue Nile - Free Trade Hall, Manchester - 21/09/1990 (As broadcast by The BBC)

    • Order:
    • Duration: 55:15
    • Uploaded Date: 25 Jul 2018
    • views: 43949
    I used to really enjoy listening and indeed recording the BBC Radio 1 In Concert series on a Saturday evening during the 1970s, 1980s and 1990s. I still have the cassette tapes and as the BBC has no immediate plan to make these available to the public I have decided to release close to 250 of these historical recordings on my YouTube channel. --- DISCLAIMER! ---- Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
    https://wn.com/The_Blue_Nile_Free_Trade_Hall,_Manchester_21_09_1990_(As_Broadcast_By_The_Bbc)
    SEX PISTOLS - LIVE IN MANCHESTER 1976
    4:53

    SEX PISTOLS - LIVE IN MANCHESTER 1976

    • Order:
    • Duration: 4:53
    • Uploaded Date: 13 Jan 2009
    • views: 149990
    Rare footage of the SEX PISTOLS gig at the Lesser Free Trade Hall in Manchester 1976.
    https://wn.com/Sex_Pistols_Live_In_Manchester_1976
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Smiths Live | The Free Trade Hall | March 1984 [FULL SHOW]
      57:22
      The Smiths Live | The Free Trade Hall | March 1984 [FULL SHOW]remove from playlist
    • Miles Davis- September 27, 1960 Free Trade Hall, Manchester [SPEED CORRECTED!!!]
      1:37:42
      Miles Davis- September 27, 1960 Free Trade Hall, Manchester [SPEED CORRECTED!!!]remove from playlist
    • The Smiths Live | The Free Trade Hall | October 1986 [FULL SHOW]
      1:18:36
      The Smiths Live | The Free Trade Hall | October 1986 [FULL SHOW]remove from playlist
    • SEX PISTOLS: The Gig That Changed Manchester Forever
      20:22
      SEX PISTOLS: The Gig That Changed Manchester Foreverremove from playlist
    • Sex Pistols - 1976 06 04 Lesser Free Trade Hall, The gig that changed the world (recreation).
      3:04
      Sex Pistols - 1976 06 04 Lesser Free Trade Hall, The gig that changed the world (recreation).remove from playlist
    • Bob Dylan, live at the Free Trade Hall, Manchester, 1965
      1:06:24
      Bob Dylan, live at the Free Trade Hall, Manchester, 1965remove from playlist
    • Miles Davis At The Free Trade Hall - Four
      10:57
      Miles Davis At The Free Trade Hall - Fourremove from playlist
    • Mark Radcliffe's N.W.A - Sex Pistols - Lesser Free Trade Hall 1976
      12:33
      Mark Radcliffe's N.W.A - Sex Pistols - Lesser Free Trade Hall 1976remove from playlist
    • The Blue Nile - Free Trade Hall, Manchester - 21/09/1990 (As broadcast by The BBC)
      55:15
      The Blue Nile - Free Trade Hall, Manchester - 21/09/1990 (As broadcast by The BBC)remove from playlist
    • SEX PISTOLS - LIVE IN MANCHESTER 1976
      4:53
      SEX PISTOLS - LIVE IN MANCHESTER 1976remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    The Smiths Live | The Free Trade Hall | March 1984 [FULL SHOW]

    The Smiths live at the Free Trade Hall, Manchester, England. 13th of March 1984. For those wondering, the song playing before the setlist starts is Love of The Loved by Cilla Black. Full Show. Timestamps: 1:56 - Hand In Glove 4:57 - Heaven Knows I'm Miserable Now 8:25 - Girl Afraid 11:17 - This Charming Man 14:10 - Pretty Girls Make Graves 17:49 - Still Ill 21:25 - This Night Has Opened My Eyes 24:45 - Barbarism Begins At Home 31:33 - Back To The Old House 34:50 - What Difference Does It Make? Encore #1: 38:15 - I Don't Owe You Anything (with Sandie Shaw) Encore #2: 42:20 - Reel Around The Fountain 47:58 - You've Got Everything Now Encore #3: 51:50 - Handsome Devil 54:47 - These Things Take Time Interesting details about this show: - This show saw the last of the 2 times that Sandie Shaw stood in for Morrissey as singer during I Don't Owe You Anything as a result of her and the band's collaborations. Further Info: http://www.passionsjustlikemine.com/live/smiths-g840313.htm Thank you for watching and please subscribe, like, and share for more live content and to help this channel grow and reach more people! Disclaimer: I do not own any of the audio/video content published here, I make the thumbnails and process the audio/video so it can be uploaded, and that's it. All original audio and video content is the property of their respective producers.
    57:22
    The Smiths Live | The Free Trade Hall | March 1984 [FULL SHOW]
    The Smiths live at the Free Trade Hall, Manchester, England. 13th of March 1984. For thos...
    published: 27 Aug 2021
    Play in Full Screen
    1:37:42
    Miles Davis- September 27, 1960 Free Trade Hall, Manchester [SPEED CORRECTED!!!]
    September 27, 1960 Free Trade Hall, Manchester, United Kingdom Miles Davis Quintet Miles ...
    published: 22 Sep 2020
    Play in Full Screen
    1:18:36
    The Smiths Live | The Free Trade Hall | October 1986 [FULL SHOW]
    The Smiths live at the Free Trade Hall, Manchester, England. 30th of October 1986. Full S...
    published: 01 Apr 2023
    Play in Full Screen
    20:22
    SEX PISTOLS: The Gig That Changed Manchester Forever
    On June 4th, 1976, the Sex Pistols played a small, badly attended gig in an inaccessible v...
    published: 22 Feb 2023
    Play in Full Screen
    3:04
    Sex Pistols - 1976 06 04 Lesser Free Trade Hall, The gig that changed the world (recreation).
    The Sex Pistols play the Lesser Free Trade Hall in Manchester 1976. It seems millions of ...
    published: 25 Apr 2013
    Play in Full Screen
    1:06:24
    Bob Dylan, live at the Free Trade Hall, Manchester, 1965
    Bob Dylan, live at the Free Trade Hall, Manchester, 1965 1."The Times They Are a-Changin'...
    published: 02 Jul 2018
    Play in Full Screen
    10:57
    Miles Davis At The Free Trade Hall - Four
    Recorded 9/27/60 Personnel: Miles Davis - Trumpet Sonny Stitt - Alto Sax Wynton Kell...
    published: 02 May 2010
    Play in Full Screen
    12:33
    Mark Radcliffe's N.W.A - Sex Pistols - Lesser Free Trade Hall 1976
    Hosted by Mark Radcliffe a feature on the infamous Sex Pistols gig at Manchester's Lesser ...
    published: 11 May 2015
    Play in Full Screen
    55:15
    The Blue Nile - Free Trade Hall, Manchester - 21/09/1990 (As broadcast by The BBC)
    I used to really enjoy listening and indeed recording the BBC Radio 1 In Concert series on...
    published: 25 Jul 2018
    Play in Full Screen
    4:53
    SEX PISTOLS - LIVE IN MANCHESTER 1976
    Rare footage of the SEX PISTOLS gig at the Lesser Free Trade Hall in Manchester 1976.
    published: 13 Jan 2009
    Play in Full Screen

    Free Trade Hall

    The Free Trade Hall in Peter Street, Manchester, England, was a public hall constructed in 1853–56 on St Peter's Fields, the site of the Peterloo Massacre and is now a Radisson hotel. The hall was built to commemorate the repeal of the Corn Laws in 1846. The architect was Edward Walters. The hall was owned by the Manchester Corporation. It was bombed in the Manchester Blitz and its interior rebuilt. It was Manchester's premier concert venue until the construction of the Bridgewater Hall in 1996. The hall was designated a Grade II* listed building on 18 December 1963.

    History

    The Free Trade Hall was built as a public hall between 1853 and 1856 by Edward Walters on land given by Richard Cobden in St Peter's Fields, the site of the Peterloo Massacre. Two earlier halls had been constructed on the site, the first, a large timber pavilion was built in 1840, and its brick replacement built in 1842. The halls were "vital to Manchester's considerable role in the long campaign for the repeal of the Corn Laws. The hall was funded by public subscription and became a concert hall and home of the Hallé Orchestra in 1858. A red plaque records that it was built on the site of the Peterloo Massacre in 1819.

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