'+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;
}));
});
-->
Please tell us which country and city you'd like to see the weather in.
'
}else{
weather_info += '
'+tempC+' °C
'
}
weather_info += '
Pressure: '+weather_data.main.pressure+' hPa '
if (weather_data.main.humidity) { weather_info += 'Humidity: '+weather_data.main.humidity+' % '; }
if (clouds) {
weather_info += 'Clounds: '+clouds.all+'% '
}
if (weather) {
weather_info += ''+weather.description+' '
}
weather_info += ' '
}
}
global_geo_obj.html(weather_info);
var global_geo = jQuery('#forecast');
get_forecast_details(city, 4, global_geo, country);
})
});
});
function forecast_status(msg) {
jQuery('#forecast-header').html(msg);
}
function get_forecast_details(city, days_count, global_geo, country) {
global_geo.html('Loading forecast ...');
jQuery.ajax({
data: {
city: city,
report: 'daily'
},
dataType: 'jsonp',
url: 'https://upge.wn.com/api/upge/cheetah-photo-search/weather_forecast_4days',
success: function(data) {
if(!data) { text = ('weater data temporarily not available'); }
// loop through the list of weather info
weather_info = '';
var weather_day_loop = 0;
jQuery.each(data.list, function(idx, value) {
if (idx < 1) {
return;
}
if (weather_day_loop >= days_count) {
return false;
}
weather = value.weather.shift()
clouds = value.clouds
d = new Date(value.dt*1000)
t = d.getMonth()+1 + '-' + d.getDate() + '-' + d.getFullYear()
moment.lang('en', {
calendar : {
lastDay : '[Yesterday]',
sameDay : '[Today]',
nextDay : '[Tomorrow]',
lastWeek : '[last] dddd',
nextWeek : 'dddd',
sameElse : 'L'
}
});
mobj = moment(value.dt*1000)
// skip today
if (t == today) {
return;
}
tempC = parseInt(parseFloat(value.temp.day)-273.15)
tempF = parseInt(tempC*1.8+32)
today = t;
weather_day_loop += 1;
weather_info += '
'+mobj.calendar()+'
';
weather_info += '
'
weather_info += '
'
if (country == 'United States'){
weather_info += '
'+tempF+' °F
'
}else{
weather_info += '
'+tempC+' °C
'
}
weather_info += '
'+value.pressure+' hPa '
if (value.humidity) { weather_info += 'Humidity: '+value.humidity+' % '; }
if (clouds) {
weather_info += 'Clouds: '+clouds+'% '
}
if (weather) {
weather_info += '' +weather.description+' '
}
weather_info += ''
});
global_geo.html(weather_info);
}
});
}
//-->
Julian Bream
ALBUMS
Italian and Spanish Guitar Music
released: 2013
Concierto de Aranjuez / Tres piezas españolas / Fantasía para un gentilhombre
released: 2011
Julian Bream Plays Dowland and Bach
released: 2008
Music of Spain
released: 2005
Trésors guitare classique
released: 2003
Julian Bream Plays Spanish Guitar Music
released: 2001
Popular Classics for Spanish Guitar
released: 1997
The Classical Guitar Collection
released: 1996
The Ultimate Guitar Collection
released: 1996
Spanish Guitar Recital
released: 1994
Guitar Greatest Hits
released: 1994
Together: The Ultimate Collection
released: 1994
Prelude, Fugue, and Allegro / Lute Suite No. 1 / Chaconne / Lute Suite No. 4
released: 1994
Julian Bream Edition, Volume 23: Music of Spain, Milán / Narváez
released: 1993
Julian Bream Edition, Volume 27: Music of Spain, Guitarra
released: 1993
Julian Bream Edition, Volume 21: Guitar Concerto / Preludes / Études
released: 1993
Julian Bream Edition, Volume 28: Concierto de Aranjuez / Fantasía para un gentilhombre / Tres piezas españolas / Invocation et Danse
released: 1993
Julian Bream Edition
released: 1993
Julian Bream Edition, Volume 3: Dances of Dowland
released: 1993
Music of Spain, Volume 7: A Celebration of Andrés Segovia
released: 1993
Julian Bream Edition, Volume 25: Music of Spain, Granados / Albéniz
released: 1993
Highlights from the Julian Bream Edition
released: 1993
Nocturnal
released: 1993
Together Again
released: 1993
Together
released: 1993
La guitarra romántica
released: 1991
Baroque Guitar
released: 1990
Romantic Guitar
released: 1988
Rodrigo: Concierto de Aranjuez / Villa-Lobos: Guitar Concerto / 5 Preludes
released: 1987
Concierto de Aranjuez
released: 1986
Music of Spain, Volume 4
released: 1985
Julian Bream Plays Granados & Albéniz
released: 1982
Concertos for Lute and Orchestra; The Monteverdi Orchestra, John Eliot Gardiner, Conductor
released: 1975
The Art of Julian Bream
released: 1960
Together Again
released:
Guitarra: The Guitar in Spain
released:
Adagios: Guitar Favorites for Romantic Daydreams
released:
Brouwer, Rodrigo
released:
Sonata
released:
The Ultimate Guitar Collection, Volume 2
released:
Released 2005
El maestro: Pavana I
El maestro: Pavana V
El maestro: Pavana VI
El maestro: Fantasía XII
El maestro: Fantasía VIII
El maestro: Fantasía IX
El maestro: Tento I
El maestro: Pavana IV
El maestro: Fantasía XVI
Los seys libros del Delphín de Música, Book 1: Fantasía V
Los seys libros del Delphín de Música, Book 2: Fantasía V
Los seys libros del Delphín de Música, Book 3: La canción del emperador
Los seys libros del Delphín de Música, Book 2: Fantasía VI
Los seys libros del Delphín de Música, Book 5: Arde coraçon arde
Los seys libros del Delphín de Música, Book 5: Ya se asiente el Rey Ramiro
Los seys libros del Delphín de Música, Book 4: O gloriosa Domina (seys diferencias)
Los seys libros del Delphín de Música, Book 6: Conde Claros
Los seys libros del Delphín de Música, Book 6: Guárdame las vacas
Los seys libros del Delphín de Música, Book 6: Tres diferencias por otra parte
Los seys libros del Delphín de Música, Book 6: Baxa de contrapunto
Fantasía
Released 2001
Sonata in C major, Op. 22: III. Minuetto: Allegro
Six Little Pieces, Op. 5 No. 5 in D major: Andante Largo
Etudes, Op. 31 No. 20 in A minor
Etude No. 5 in B minor
Etude No. 12 in A major
Fantasia in C minor, Op. 7: Largo
Sonata in C major, Op. 22: IV. Rondo: Allegretto
Homenaje a Tárrega, Op. 69: I. Garrotin
Homenaje a Tárrega, Op. 69: II. Soleares
Fandanguillo, Op. 36
Ráfaga, Op. 53
Homenaje "Le Tombeau de Claude Debussy"
Five Preludes, No. 1 in E minor: Andantino espressivo - Più mosso - primo tempo
Five Preludes, No. 2 in E major: Andantino - Più mosso - Tempo I
Five Preludes, No. 3 in A minor: Andante - Molto adagio e dolorido
Five Preludes, No. 4 in E minor: Lento - Animato - Moderato - Lento
Five Preludes, No. 5 in D major: Poco animato - Meno - Più mosso - A tempo
Preludio in E major
Sonatina in A major: I. Andante
Sonatina in A major: II. Allegro
Burgalesa in F-sharp major
Released 1994
Suite for Two Guitars: I. Corant I
Suite for Two Guitars: II. Alman
Suite for Two Guitars: III. Corant II
Duo in G Major, Op. 34: I. Largo
Duo in G Major, Op. 34: II. Rondo
L'encouragement, Op. 34: I. Cantabile
L'encouragement, Op. 34: II. Theme and Variations
L'encouragement, Op. 34: III. Waltz
Cantos de España, Op. 232, No. 4: Córdoba: Nocturne
Goyescas: Intermezzo
Spanish Dance No. 1: La vida breve
Pavane pour une infante défunte
Dolly, Op. 56: I. Berceuse
Dolly, Op. 56: II. Mi-a-ou
Dolly, Op. 56: III. Le jardin de Dolly
Dolly, Op. 56: IV. Kitty-Valse
Dolly, Op. 56: V. Tendresse
Dolly, Op. 56: VI. Le pas espagnol
Danzas españolas, Op. 37 No. 2: Oriental
Castilla: Seguidillas
Released 1994
Prelude, Fugue, and Allegro in E-flat major, BWV 998: I. Prelude
Prelude, Fugue, and Allegro in E-flat major, BWV 998: II. Fugue
Prelude, Fugue, and Allegro in E-flat major, BWV 998: III. Allegro
Lute Suite No. 1 in E minor, BWV 996: I. Prelude: Passagio - Presto
Lute Suite No. 1 in E minor, BWV 996: II. Allemande
Lute Suite No. 1 in E minor, BWV 996: III. Courante
Lute Suite No. 1 in E minor, BWV 996: IV. Sarabande
Lute Suite No. 1 in E minor, BWV 996: V. Bourrée
Lute Suite No. 1 in E minor, BWV 996: VI. Gigue
Partita No. 2 in D Minor, BWV 1004: V. Chaconne
Lute Suite No. 4 in E major, BWV 1006a: I. Prelude
Lute Suite No. 4 in E major, BWV 1006a: II. Loure
Lute Suite No. 4 in E major, BWV 1006a: III. Gavotte en Rondeau
Lute Suite No. 4 in E major, BWV 1006a: IV. Menuett
Lute Suite No. 4 in E major, BWV 1006a: V. Bourrée
Lute Suite No. 4 in E major, BWV 1006a: VI. Gigue
Released 1993
El maestro: Pavana I
El maestro: Pavana V
El maestro: Pavana VI
El maestro: Fantasía XII
El maestro: Fantasía VIII
El maestro: Fantasía IX
El maestro: Tento I
El maestro: Pavana IV
El maestro: Fantasía XVI
Los seys libros del Delphín de Música, Book 1: Fantasía V
Los seys libros del Delphín de Música, Book 2: Fantasía V
Los seys libros del Delphín de Música, Book 3: La canción del emperador
Los seys libros del Delphín de Música, Book 2: Fantasía VI
Los seys libros del Delphín de Música, Book 5: Arde coraçon arde
Los seys libros del Delphín de Música, Book 5: Ya se asiente el Rey Ramiro
Los seys libros del Delphín de Música, Book 4: O gloriosa Domina (seys diferencias)
Los seys libros del Delphín de Música, Book 6: Conde Claros
Los seys libros del Delphín de Música, Book 6: Guárdame las vacas
Los seys libros del Delphín de Música, Book 6: Tres diferencias por otra parte
Los seys libros del Delphín de Música, Book 6: Baxa de contrapunto
Fantasía
Released 1993
Chôros for Guitar No. 1 "Tipico brasileiro", A. 161
Estudios for Guitar, A. 235: No. 11 in E minor
Estudios for Guitar, A. 235: No. 8 in C-sharp minor
Prelúdios for Guitar, A. 419: No. 1 in E minor
Suite popular brasileira for Guitar, A. 20: Schottisch-Chôro
Madroños for Guitar
Homenaje pour "Le tombeau de Claude Debussy" for guitar, G. 56
Suite No. 2 for Orchestra "El sombrero de tres picos", G. 59: The Miller's Dance
Fandanguillo for Guitar, Op. 36
El testament d'Amelia
Instrucción de música sobre la guitarra española: Canarios
Sonata for Piano in D major, Op. 13
Por los campos de España No. 1: En los trigales
Divertimento No. 2 for Two Clarinets and Basset Horn, K. 439b/2 / KV Anh 229/2: III. Larghetto
Divertimento No. 2 for Two Clarinets and Basset Horn, K. 439b/2 / KV Anh 229/2: I. Allegro
Sonata for Guitar in C major, Op. 15: III. Allegro Vivace
Rossiniana No. 1 for Guitar, Op. 119
Released 1993
Quatre pieces breves, I: Prelude: Lent - Vite
Quatre pieces breves, II: Air: Lent et bien rythme
Quatre pieces breves, III: Plainte: Sans lenteur
Quatre pieces breves, IV: Comme une Gigue: Con moto
Nocturnal after John Dowland, op. 70, I: Musingly (Meditativo)
Nocturnal after John Dowland, op. 70, II: Agitated (Molto agitativo)
Nocturnal after John Dowland, op. 70, III: Restless (Inquieto)
Nocturnal after John Dowland, op. 70, IV: Uneasy (Ansioso)
Nocturnal after John Dowland, op. 70, V: March-like (Quasi una marcia)
Nocturnal after John Dowland, op. 70, VI: Dreaming (Sognanti)
Nocturnal after John Dowland, op. 70, VII: Gently rocking (Cullante)
Nocturnal after John Dowland, op. 70, VIII: Passacaglia (Misurato)
Nocturnal after John Dowland, op. 70, IX: Slow and quiet (Molto tranqquillo)
Sonata for Guitar I - Fandangos y Boleros, Preambulo: Lento & Danza: Allegretto - Coda: Beethoven visita al Padre Soler
Sonata for Guitar II - Sarabanda de Scriabin (Omaggio a Scriabin)
Sonata for Guitar III - La Toccata de Pasquini (Alla Toccata)
All In Twilight, I: 1/8=80
All In Twilight, II: 1/8=68 (Dark)
All In Twilight, III: 3/32=46
All In Twilight, IV: 3/8=100 (Slightly fast)
Melodie ludowe, I: Ach, moj Jasienko (Sostenuto)
Melodie ludowe, II: Hej, od Krakowa (Allegretto)
Melodie ludowe, III: Jest drozyna (Andantino)
Melodie ludowe, IV: Patereczka (Allegretto)
Melodie ludowe, V: Na jabloni jablka (Moderato)
Melodie ludowe, VI: Od Sieradza (Allegretto)
Melodie ludowe, VII: Panie Michale (Poco sostenuto - Allegro moderato)
Melodie ludowe, VIII: W polu lipenka (Sostenuto - Precipitando)
Melodie ludowe, IX: Zalotny (Allegretto)
Melodie ludowe, X: Gaik (Allegro vivace)
Melodie ludowe, XI: Gasior (Andantino)
Melodie ludowe, XII: Rektor (Allegro)
Released 1993
Suite for Two Guitars: I. Corant I
Suite for Two Guitars: II. Alman
Suite for Two Guitars: III. Corant II
Duo in G major, Op. 34: I. Largo
Duo in G major, Op. 34: II. Rondo
L'encouragement, Op. 34: I. Cantabile
L'encouragement, Op. 34: II. Theme and Variations
L'encouragement, Op. 34: III. Waltz
Cantos de España, Op. 232, No. 4: Córdoba: Nocturne
Goyescas: Intermezzo
Spanish Dance No. 1: La vida breve
Pavane pour une infante défunte
Dolly, Op. 56: I. Berceuse
Dolly, Op. 56: II. Mi-a-ou
Dolly, Op. 56: III. Le jardin de Dolly
Dolly, Op. 56: IV. Kitty-Valse
Dolly, Op. 56: V. Tendresse
Dolly, Op. 56: VI. Le pas espagnol
Danzas españolas, Op. 37 No. 2: Oriental
Released 1985
Fantasie for guitar, no 2, op. 30
Fantasie for guitar, no 1 in C, op. 7
Introduction, Theme & Variations on a Theme from Mozart's "The Magic Flute," for Guitar, op. 9
Rondo Brillant for guitar no. 1 in E major, op. 2 no. 1
Rondo Brillant for guitar no. 2 in A minor, op. 2 no. 2
Rondo Brillant for guitar no. 3 in D major, op. 2 no. 3
Julian Bream Concert 1978
First transmitted at BBC 2 on 01 Feb 1978, Julian Bream performs works by Bach, Villa-Lobos, Albeniz and Britten at Old Wardour Castle.
published: 24 Dec 2013
Julian Bream / The Earl of Essex's Galliard by John Dowland
You can hear the voice of a famous English lutenist (JB). He is also a famous guitarist.
published: 16 Oct 2011
Julian Bream | Recuerdos de la Alhambra | Francisco Tárrega
"The famous Recuerdos de la Alhambra is a piece disigned primarily to develop technical proficincy according to Tarrega's new-found principles, but musically it is undoubtedly a fine repetoire piece." (J. Bream 1983)
published: 14 Oct 2011
Julian Bream - Rondo in A minor (Dionisio Aguado)
Julian Bream performing Rondo in A minor (Dionisio Aguado)
published: 08 Jan 2012
Julian Bream plays J.S.Bach BWV999 in 1962
From BBC:
http://www.bbc.co.uk/iplayer/episode/b03qlqqy/Chamber_Music_at_the_BBC_Julian_Bream_at_the_BBC/
published: 02 Feb 2014
Julian Bream | Study in B minor | Fernando Sor
Julian Bream - Study in B minor - Fernando Sor.
published: 14 Mar 2012
Julian Bream & John Williams, Enrique Granados, Danza Espanola No11 (Part 4)
Part 4
published: 28 Feb 2013
Julian Bream | Sevilla | Isaac Albéniz
"It is, however, his earlier pieces and in particular the Suite Española Opus 47 which initially brought Albeniz such fame and succes in his lifetime. This Suite was published 1886. It consists of four highly impressionistic tone poems. The evocation of Granada -surely one of his most Idyllic pieces, the exhilarating portrait of Sevilla and the gay and busling Saeta Cadiz." (J. Bream 1982)
published: 16 Aug 2011
Duet with Julian Bream & John Williams from the album Together Again. Ferdinando Carulli op. 96.
published: 01 Oct 2024
Julian Bream - J.S Bach-Violin Sonata fugue
Julian Bream - J.S Bach-Violin Sonata fugue BWV 1001
published: 11 Oct 2006
49:36
Julian Bream Concert 1978
First transmitted at BBC 2 on 01 Feb 1978, Julian Bream performs works by Bach, Villa-Lobos, Albeniz and Britten at Old Wardour Castle.
First transmitted at BBC 2 on 01 Feb 1978, Julian Bream performs works by Bach, Villa-Lobos, Albeniz and Britten at Old Wardour Castle.
https://wn.com/Julian_Bream_Concert_1978
First transmitted at BBC 2 on 01 Feb 1978, Julian Bream performs works by Bach, Villa-Lobos, Albeniz and Britten at Old Wardour Castle.
published: 24 Dec 2013
views: 1176100
5:30
Julian Bream / The Earl of Essex's Galliard by John Dowland
You can hear the voice of a famous English lutenist (JB). He is also a famous guitarist.
You can hear the voice of a famous English lutenist (JB). He is also a famous guitarist.
https://wn.com/Julian_Bream_The_Earl_Of_Essex's_Galliard_By_John_Dowland
You can hear the voice of a famous English lutenist (JB). He is also a famous guitarist.
published: 16 Oct 2011
views: 303840
3:54
Julian Bream | Recuerdos de la Alhambra | Francisco Tárrega
"The famous Recuerdos de la Alhambra is a piece disigned primarily to develop technical proficincy according to Tarrega's new-found principles, but musically it...
"The famous Recuerdos de la Alhambra is a piece disigned primarily to develop technical proficincy according to Tarrega's new-found principles, but musically it is undoubtedly a fine repetoire piece." (J. Bream 1983)
https://wn.com/Julian_Bream_|_Recuerdos_De_La_Alhambra_|_Francisco_Tárrega
"The famous Recuerdos de la Alhambra is a piece disigned primarily to develop technical proficincy according to Tarrega's new-found principles, but musically it is undoubtedly a fine repetoire piece." (J. Bream 1983)
published: 14 Oct 2011
views: 653611
6:13
Julian Bream - Rondo in A minor (Dionisio Aguado)
Julian Bream performing Rondo in A minor (Dionisio Aguado)
Julian Bream performing Rondo in A minor (Dionisio Aguado)
https://wn.com/Julian_Bream_Rondo_In_A_Minor_(Dionisio_Aguado)
Julian Bream performing Rondo in A minor (Dionisio Aguado)
published: 08 Jan 2012
views: 238424
1:30
Julian Bream plays J.S.Bach BWV999 in 1962
From BBC:
http://www.bbc.co.uk/iplayer/episode/b03qlqqy/Chamber_Music_at_the_BBC_Julian_Bream_at_the_BBC/
From BBC:
http://www.bbc.co.uk/iplayer/episode/b03qlqqy/Chamber_Music_at_the_BBC_Julian_Bream_at_the_BBC/
https://wn.com/Julian_Bream_Plays_J.S.Bach_Bwv999_In_1962
From BBC:
http://www.bbc.co.uk/iplayer/episode/b03qlqqy/Chamber_Music_at_the_BBC_Julian_Bream_at_the_BBC/
published: 02 Feb 2014
views: 524111
4:41
Julian Bream | Sevilla | Isaac Albéniz
"It is, however, his earlier pieces and in particular the Suite Española Opus 47 which initially brought Albeniz such fame and succes in his lifetime. This Suit...
"It is, however, his earlier pieces and in particular the Suite Española Opus 47 which initially brought Albeniz such fame and succes in his lifetime. This Suite was published 1886. It consists of four highly impressionistic tone poems. The evocation of Granada -surely one of his most Idyllic pieces, the exhilarating portrait of Sevilla and the gay and busling Saeta Cadiz." (J. Bream 1982)
https://wn.com/Julian_Bream_|_Sevilla_|_Isaac_Albéniz
"It is, however, his earlier pieces and in particular the Suite Española Opus 47 which initially brought Albeniz such fame and succes in his lifetime. This Suite was published 1886. It consists of four highly impressionistic tone poems. The evocation of Granada -surely one of his most Idyllic pieces, the exhilarating portrait of Sevilla and the gay and busling Saeta Cadiz." (J. Bream 1982)
published: 16 Aug 2011
views: 758423
5:24
Julian Bream - J.S Bach-Violin Sonata fugue
Julian Bream - J.S Bach-Violin Sonata fugue BWV 1001
Julian Bream - J.S Bach-Violin Sonata fugue BWV 1001
https://wn.com/Julian_Bream_J.S_Bach_Violin_Sonata_Fugue
Julian Bream - J.S Bach-Violin Sonata fugue BWV 1001
published: 11 Oct 2006
views: 1506980
Julian Bream Concert 1978
First transmitted at BBC 2 on 01 Feb 1978, Julian Bream performs works by Bach, Villa-Lobos, Albeniz and Britten at Old Wardour Castle.
49:36
Julian Bream Concert 1978
First transmitted at BBC 2 on 01 Feb 1978, Julian Bream performs works by Bach, Villa-Lobo...
Play in Full Screen
Julian Bream Concert 1978
Julian Bream Concert 1978
First transmitted at BBC 2 on 01 Feb 1978, Julian Bream performs works by Bach, Villa-Lobos, Albeniz and Britten at Old Wardour Castle.
5:30
Julian Bream / The Earl of Essex's Galliard by John Dowland
You can hear the voice of a famous English lutenist (JB). He is also a famous guitarist.
Play in Full Screen
Julian Bream / The Earl of Essex's Galliard by John Dowland
Julian Bream / The Earl of Essex's Galliard by John Dowland
You can hear the voice of a famous English lutenist (JB). He is also a famous guitarist.
3:54
Julian Bream | Recuerdos de la Alhambra | Francisco Tárrega
"The famous Recuerdos de la Alhambra is a piece disigned primarily to develop technical pr...
Play in Full Screen
Julian Bream | Recuerdos de la Alhambra | Francisco Tárrega
Julian Bream | Recuerdos de la Alhambra | Francisco Tárrega
"The famous Recuerdos de la Alhambra is a piece disigned primarily to develop technical proficincy according to Tarrega's new-found principles, but musically it is undoubtedly a fine repetoire piece." (J. Bream 1983)
6:13
Julian Bream - Rondo in A minor (Dionisio Aguado)
Julian Bream performing Rondo in A minor (Dionisio Aguado)
Play in Full Screen
Julian Bream - Rondo in A minor (Dionisio Aguado)
Julian Bream - Rondo in A minor (Dionisio Aguado)
Julian Bream performing Rondo in A minor (Dionisio Aguado)
1:30
Julian Bream plays J.S.Bach BWV999 in 1962
From BBC:
http://www.bbc.co.uk/iplayer/episode/b03qlqqy/Chamber_Music_at_the_BBC_Julian_B...
Play in Full Screen
Julian Bream plays J.S.Bach BWV999 in 1962
Julian Bream plays J.S.Bach BWV999 in 1962
From BBC:
http://www.bbc.co.uk/iplayer/episode/b03qlqqy/Chamber_Music_at_the_BBC_Julian_Bream_at_the_BBC/
1:38
Julian Bream | Study in B minor | Fernando Sor
Julian Bream - Study in B minor - Fernando Sor.
Play in Full Screen
Julian Bream | Study in B minor | Fernando Sor
Julian Bream | Study in B minor | Fernando Sor
Julian Bream - Study in B minor - Fernando Sor.
7:34
Julian Bream & John Williams, Enrique Granados, Danza Espanola No11 (Part 4)
Part 4
Play in Full Screen
Julian Bream & John Williams, Enrique Granados, Danza Espanola No11 (Part 4)
Julian Bream & John Williams, Enrique Granados, Danza Espanola No11 (Part 4)
Part 4
4:41
Julian Bream | Sevilla | Isaac Albéniz
"It is, however, his earlier pieces and in particular the Suite Española Opus 47 which ini...
Play in Full Screen
Julian Bream | Sevilla | Isaac Albéniz
Julian Bream | Sevilla | Isaac Albéniz
"It is, however, his earlier pieces and in particular the Suite Española Opus 47 which initially brought Albeniz such fame and succes in his lifetime. This Suite was published 1886. It consists of four highly impressionistic tone poems. The evocation of Granada -surely one of his most Idyllic pieces, the exhilarating portrait of Sevilla and the gay and busling Saeta Cadiz." (J. Bream 1982)
1:01
Duet with Julian Bream & John Williams from the album Together Again. Ferdinando Carulli op. 96.
Play in Full Screen
Duet with Julian Bream & John Williams from the album Together Again. Ferdinando Carulli op. 96.
Duet with Julian Bream & John Williams from the album Together Again. Ferdinando Carulli op. 96.
5:24
Julian Bream - J.S Bach-Violin Sonata fugue
Julian Bream - J.S Bach-Violin Sonata fugue BWV 1001
Play in Full Screen
Julian Bream - J.S Bach-Violin Sonata fugue
Julian Bream - J.S Bach-Violin Sonata fugue
Julian Bream - J.S Bach-Violin Sonata fugue BWV 1001
');
} 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('
VIDEO
');
}
}
});
}
}
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));
}
});
});
});
// -->