'+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);
}
});
}
//-->
Radio Stations
- Fatsa
RADIO STATION
GENRE
LOCATION
Show Radyo
Pop
Turkey
Dini Radyo
Religious
Turkey
TürkRap
Rap
Turkey
Semerkand Radyo
Religious
Turkey
Cemre FM
Religious
Turkey
Power XL Extra Lounge
Varied ,Dance
Turkey
Radyo Illaç
Pop
Turkey
Baba Radyo
Varied
Turkey
Park FM
Folk ,World ,World Europe
Turkey
Gurbetci FM
Pop
Turkey
Super FM Bergama
Pop
Turkey
Lokum FM
Pop
Turkey
Voice Quran Abdussamed Quran Reading ,Kuran
Religious
Turkey
Dünya Radyo
Easy ,Pop ,Dance
Turkey
TRT Avrupa
Varied
Turkey
Irsad FM
Religious
Turkey
TRT Radyo 1
Easy ,Talk
Turkey
Hikmet FM
Religious
Turkey
Cafe 80s
80s
Turkey
Radyo Ilef Ankara 91
College
Turkey
Gün Radyo
Pop
Turkey
TRT Nağme
Folk
Turkey
TRT Radyo 6
Unknown
Turkey
Dost Radyo Erzican
Varied
Turkey
Joy Türk 89.0
Pop
Turkey
Gözyaşi FM Konya
Religious
Turkey
Güney Radyo
Folk
Turkey
Cilek FM
Folk
Turkey
TRT Erzurum
Unknown
Turkey
Radyo TSR
Varied
Turkey
Power Türk
Pop
Turkey
Atlantis FM Ankara
Pop
Turkey
Radyo Mega
Folk
Turkey
TRT Türkü
Folk
Turkey
Radyo Iz
Folk ,World ,World Europe
Turkey
Radyo Bilkent
Pop ,Classical ,World Europe
Turkey
TRT VOT World
Varied
Turkey
Baskent Radyo
Folk ,World Europe ,World Mediterranean
Turkey
TRT FM
Folk
Turkey
Özel FM
Religious
Turkey
TRT Radyo 3
Easy ,Talk
Turkey
Seymen FM Istanbul
World Middle East
Turkey
Çağri FM
Religious
Turkey
Yön Radyo
Folk
Turkey
Konya FM
World Europe
Turkey
Nor Radyo
Varied
Turkey
POWER FM Turkey
Pop
Turkey
AKRA FM
Religious
Turkey
Dost FM Ankara
Religious
Turkey
ART FM
Religious
Turkey
Istanbul FM
Pop
Turkey
SEARCH FOR RADIOS
Itzhak Perlman
ALBUMS
Piano Trio, opp. 49 & 66
released: 2010
Scott Joplin: The Easy Winners & Other Rag-Time Music / André Previn: A Different Kind of Blues
released: 2009
Violin Concertos 1 & 2 / Sonata for Two Violins
released: 2008
Sonatas and Partitas
released: 2005
Violin Concertos
released: 2004
The Perlman Edition: Violin Concerto / Sonatensatz / Hungarian Dances
released: 2003
The Perlman Edition
released: 2003
Virtuoso Violin
released: 2003
Classic Perlman: Rhapsody
released: 2002
Airs Bohemiens
released: 2002
The Four Seasons / Violin Concertos
released: 2002
The Violin Sonatas
released: 2002
Le Carnaval des animaux / Organ Symphony
released: 2001
Violin Concertos
released: 2001
Beethoven: "Kreutzer" Sonata / Franck: Sonata
released: 1999
Concertos From My Childhood
released: 1999
Cinema Serenade 2: The Golden Age
released: 1999
The Violin Sonatas: "Kreutzer" / "Spring"
released: 1999
Itzhak Perlman's Greatest Hits
released: 1998
Violin Concertos
released: 1997
Piano Trios 1 & 2
released: 1997
Classical Zoo
released: 1997
Cinema Serenade
released: 1997
Violin Concertos
released: 1996
Live in the Fiddler's House
released: 1996
À la carte
released: 1996
Violin concertos BWV 1041 / 1042 / 1043 / 1060
released: 1995
Violin Sonatas Nos. 1, 2 & 3
released: 1994
Violin Sonatas nos. 9 "Kreutzer" & 10
released: 1994
Piano Trios Opp. 8, 87, & 101
released: 1994
Great Romantic Concertos
released: 1994
Side by Side
released: 1994
The 5 Violin Concertos
released: 1994
Brahms: Double Concerto / Mendelssohn: Violin Concerto
released: 1993
Greatest Hits
released: 1993
The Art of Itzhak Perlman
released: 1993
Violin Concerto
released: 1992
A Different Kind of Blues
released: 1992
The Kreisler Album
released: 1991
Four Violin Concertos
released: 1991
Gala in Leningrad
released: 1991
Mozart: Duos for Violin & Viola / Leclair: Sonata for 2 Violins
released: 1991
Tchaikovsky Violin Concerto: Live in Russia
released: 1991
24 Caprices
released: 1991
The Two Violin Concertos
released: 1990
Sarasate: Carmen Fantasy, Op. 25 / Chausson: Poème, Op. 25 / Saint-Saëns: Havanaise, Op. 83; Introduction et Rondo Capriccioso, Op. 28 / Ravel: Tzigane
released: 1990
Kunstler unserer Generation
released: 1989
Tradition: Itzhak Perlman Plays Familiar Jewish Melodies
released: 1987
My Favourite Kreisler
released: 1987
Duos
released: 1987
Lalo: Symphonie espagnole / Sibelius: Violin Concerto / Ravel: Tzigane
released: 1987
Violin Concerto / Sérénade mélancolique
released: 1985
The Four Seasons
released: 1985
Sinfonia Concertante KV 364 / Concertone KV 190
released: 1985
Concert for Violin, Piano and String Quartet
released: 1984
Paganini: Violin Concerto no. 1 / Sarasate: Carmen Fantasy
released: 1984
Mendelssohn: Violin Concerto in E minor / Bruch: Violin Concerto No. 1 in G minor
released: 1984
Double Concerto / Violin Concertos
released: 1983
Konzert für Violine und Orchester No. 3 in G major, KV 216 / Konzert für Violine und Orchester No. 5 in A major, KV. 219
released: 1983
It's a Breeze
released: 1981
Sibelius: Violin Concerto / Sinding: Suite for Violin and Orchestra, op. 10
released: 1980
Encores, Volume 2
released: 1979
Sonatas for Violin and Piano, Volume 2
released: 1978
Duets for Two Violins
released: 1978
Sonatas for Violin and Piano Nos. 1 & 10
released: 1977
Sonatas for Violin and Piano Nos. 6 & 7
released: 1977
Sonatas for Violin and Piano, Volume 4
released: 1977
Itzhak Perlman Plays French Music with Jean Martinon and Orchestre de Paris
released: 1975
Violin Concertos, Album 2
released: 1975
Encores
released: 1974
The Perlman Edition
released: 1971
Itzhak Perlman Plays Favourite Violin Concertos
released:
J.S. Bach: Sonatas & Partitas
released:
Violin Sonatas Nos. 7 & 10
released:
Lalo: Symphonie espagnole / Berlioz: Rêverie et caprice
released:
Selections From Cinema Serenade
released:
Piano Trios, Volume 2
released:
Piano Trios, Volume 1
released:
Saint-Saëns: Violin Concerto No. 3 / Wieniawski: Violin Concerto No. 2
released:
Violin Concerto in D major, Op. 61
released:
"Archduke" Trio / Trio no. 7
released:
Virtuoso Violin
released:
Violin Duos, etc.
released:
Klezmer: In the Fiddler's House
released:
Franck: Violin Sonata / Brahms: Horn Trio
released:
Brahms: Double Concerto / Mendelssohn: Violin Concerto
released:
The Virtuoso Violin
released:
Violin Concertos
released:
Together
released:
Sonatas for Piano and Violin
released:
The Four Seasons
released:
Bits and Pieces
released:
Released 2008
Violin Concerto No. 1 in D, Op. 19: I. Andantino
Violin Concerto No. 1 in D, Op. 19: II. Scherzo (Vivacissimo)
Violin Concerto No. 1 in D, Op. 19: III. Moderato
Violin Concerto No. 2 in G minor, Op. 63: I. Allegro moderato
Violin Concerto No. 2 in G minor, Op. 63: II. Andante assai
Violin Concerto No. 2 in G minor, Op. 63: III. Allegro ben marcato
Sonata for Two Violins, Op. 56: I. Andante cantabile
Sonata for Two Violins, Op. 56: II. Allegro
Sonata for Two Violins, Op. 56: III. Comodo (quasi allegretto)
Sonata for Two Violins, Op. 56: IV. Allegro con brio
Released 2005
Sonata No. 1 in G minor, BWV 1001: I. Adagio
Sonata No. 1 in G minor, BWV 1001: II. Fuga (Allegro)
Sonata No. 1 in G minor, BWV 1001: III. Siciliana
Sonata No. 1 in G minor, BWV 1001: IV. Presto
Partita No. 1 in B minor, BWV 1002: I. Allemande
Partita No. 1 in B minor, BWV 1002: I.a. - Double
Partita No. 1 in B minor, BWV 1002: II. Corrente
Partita No. 1 in B minor, BWV 1002: II.a. - Double (Presto)
Partita No. 1 in B minor, BWV 1002: III. Sarabande
Partita No. 1 in B minor, BWV 1002: III.a. - Double
Partita No. 1 in B minor, BWV 1002: IV. Bourrée
Partita No. 1 in B minor, BWV 1002: IV.a. - Double
Sonata No. 2 in A minor, BWV 1003: I. Grave
Sonata No. 2 in A minor, BWV 1003: II. Fuga
Sonata No. 2 in A minor, BWV 1003: III. Andante
Sonata No. 2 in A minor, BWV 1003: IV. Allegro
Released 2003
Carmen Fantasy, Op. 25
Suite populaire espagnole: I. El pano moruno
Suite populaire espagnole: II. Nana
Suite populaire espagnole: III. Cancion
Suite populaire espagnole: IV. Polo
Suite populaire espagnole: V. Asturiana
Suite populaire espagnole: VI. Jota
Spanish Dance No. 5
2 Danzas: La gitana
Habanera, Op. 21 No. 2
Playera, Op. 23 No. 1 (from Danzas españolas)
Spanish Dance, Op. 26 No. 8: Dance in C
Malagueña, Op. 21 No. 1
Caprice basque, Op. 24
Romanza andaluza, Op. 22 No. 1 (from Danzas españolas)
Zapateado, Op. 23 No. 2
Malagueña, Op. 165 No. 3
Zigeunerweisen, Op. 20
Released 2002
Violin Concerto in E, op. 8/1, RV 269, "The Four Seasons (Spring)": I. Allegro
Violin Concerto in E, op. 8/1, RV 269, "The Four Seasons (Spring)": II. Largo
Violin Concerto in E, op. 8/1, RV 269, "The Four Seasons (Spring)": III. Danza Pastorale
Violin Concerto in G minor, op. 8/2, RV 315, "The Four Seasons (Summer)": I. Allegro non molto
Violin Concerto in G minor, op. 8/2, RV 315, "The Four Seasons (Summer)": II. Adagio
Violin Concerto in G minor, op. 8/2, RV 315, "The Four Seasons (Summer)": III. Presto
Violin Concerto in F, op. 8/3, RV 293, "The Four Seasons (Autumn)": I. Allegro
Violin Concerto in F, op. 8/3, RV 293, "The Four Seasons (Autumn)": II. Adagio molto
Violin Concerto in F, op. 8/3, RV 293, "The Four Seasons (Autumn)": III. Allegro
Violin Concerto in F minor, op. 8/4, RV 297, "The Four Seasons (Winter)": I. Allegro non molto
Violin Concerto in F minor, op. 8/4, RV 297, "The Four Seasons (Winter)": II. Largo
Violin Concerto in F minor, op. 8/4, RV 297, "The Four Seasons (Winter)": III. Allegro
Violin Concerto in C minor, RV 199, "Il Sospetto": I. Allegro
Violin Concerto in C minor, RV 199, "Il Sospetto": II. Andante
Violin Concerto in C minor, RV 199, "Il Sospetto": III. Allegro
Violin Concerto in A minor, op. 3/6, RV 356, "L’Estro Armonico no. 6": I. Allegro
Violin Concerto in A minor, op. 3/6, RV 356, "L’Estro Armonico no. 6": II. Largo
Violin Concerto in A minor, op. 3/6, RV 356, "L’Estro Armonico no. 6": III. Allegro
Violin Concerto in A, RV 347: I. Allegro
Violin Concerto in A, RV 347: II. Largo
Violin Concerto in A, RV 347: III. Allegro
Released 2001
Symphony No. 3 in C minor, Op. 78 "Organ Symphony": I. Adagio, allegro moderato, poco adagio
Symphony No. 3 in C minor, Op. 78 "Organ Symphony": IIa. Allegro moderato, presto, allegro moderato
Symphony No. 3 in C minor, Op. 78 "Organ Symphony": III. Maestoso, allegro
Piano Concerto No. 2 in G minor, Op. 22: I. Andante sostenuto
Piano Concerto No. 2 in G minor, Op. 22: II. Allegro scherzando
Piano Concerto No. 2 in G minor, Op. 22: III. Presto
Danse macabre, Op. 40
Released 2001
Concerto in E, BWV 1042: I. Allegro
Concerto in E, BWV 1042: II. Adagio
Concerto in E, BWV 1042: III. Allegro assai
Concerto in G minor, BWV 1056: I. (Allegro)
Concerto in G minor, BWV 1056: II. Largo
Concerto in G minor, BWV 1056: III. Presto
Concerto in A minor, BWV 1041: I. (Allegro)
Concerto in A minor, BWV 1041: II. Andante
Concerto in A minor, BWV 1041: III. Allegro assai
Concerto (2 Violins) in D minor, BWV 1043: I. Vivace
Concerto (2 Violins) in D minor, BWV 1043: II. Largo ma non tanto
Concerto (2 Violins) in D minor, BWV 1043: III. Allegro
Released 1998
Salut d'amour, for Violin & Piano, Op. 12
Songs without words, volume 1, Op. 19b: Andante con moto in E major
Humoresque
Berceuse for Violin and Piano in D major, Op. 16
Tale of Tsar Saltan Suite, Op. 57: Flight of the bumblebee
Préludes, Book 1, No. 8: La fille aux cheveux de lin
Carnival of the animals, No 13: The swan
Morceaux for Violin and Piano, Op. 85, No 3: Cavatina in D major
Old Folks at Home, for Voice & Piano
Liebesfreud "Love's Joy" for Violin & Piano
Moto perpetuo for Violin and Orchestra in C major, Op. 11: Allegro vivace
Songs Op. 34, No 14: Vocalise
String Quartet No. 1 in D major, Op. 11: II. Andante cantabile
Zigeunermelodien Op. 55, No 4: Als die alte Mutter
Pieces for Piano, Op. 45, No 2: Guitarre
Romances for Oboe and Piano, Op. 94, No 2 in A major: Einfach, innig
Nocturne No. 16 in E-flat major, Op. 55 No. 2
Spanish Dances for Violin and Piano, Op. 23, No. 2: Zapateado
Released 1995
Concerto for Violin and Orchestra in A minor, BWV 1041: I. (Allegro)
Concerto for Violin and Orchestra in A minor, BWV 1041: II. Andante
Concerto for Violin and Orchestra in A minor, BWV 1041: III. Allegro assai
Concerto for Violin and Orchestra in E major, BWV 1042: I. Allegro
Concerto for Violin and Orchestra in E major, BWV 1042: II. Adagio
Concerto for Violin and Orchestra in E major, BWV 1042: III. Allegro assai
Concerto for Two Violins and Orchestra in D minor, BWV 1043: I. Vivace
Concerto for Two Violins and Orchestra in D minor, BWV 1043: II. Largo, ma non tanto
Concerto for Two Violins and Orchestra in D minor, BWV 1043: III. Allegro
Concerto for Oboe, Violin and Orchestra in C minor, BWV 1060: I. Allegro
Concerto for Two Violins and Orchestra in C minor, BWV 1060: II. Adagio
Concerto for Two Violins and Orchestra in C minor, BWV 1060: III. Allegro
Released 1991
Concerto in C minor, RV 199 "II sospetto": I. Allegro
Concerto in C minor, RV 199 "II sospetto": II. Andante
Concerto in C minor, RV 199 "II sospetto": III. Allegro
Concerto in G minor, RV 317: I. Allegro
Concerto in G minor, RV 317: II. Largo
Concerto in G minor, RV 317: III. Allegro
Concerto in A minor, RV 356: I. Allegro
Concerto in A minor, RV 356: II. Largo
Concerto in A minor, RV 356: III. Presto
Concerto in A major, RV 347: I. Allegro
Concerto in A major, RV 347: II. Largo
Concerto in A major, RV 347: III. Allegro
Released 1991
Caprice for Solo Violin, op. 1 no. 1 in E major
Caprice for Solo Violin, op. 1 no. 2 in B minor
Caprice for Solo Violin, op. 1 no. 3 in E minor
Caprice for Solo Violin, op. 1 no. 4 in C minor
Caprice for Solo Violin, op. 1 no. 5 in A minor
Caprice for Solo Violin, op. 1 no. 6 in G minor
Caprice for Solo Violin, op. 1 no. 7 in A minor
Caprice for Solo Violin, op. 1 no. 8 in E-flat major
Caprice for Solo Violin, op. 1 no. 9 in E major
Caprice for Solo Violin, op. 1 no. 10 in G minor
Caprice for Solo Violin, op. 1 no. 11 in C major
Caprice for Solo Violin, op. 1 no. 12 in A-flat major
Caprice for Solo Violin, op. 1 no. 13 in B-flat major
Caprice for Solo Violin, op. 1 no. 14 in E-flat major
Caprice for Solo Violin, op. 1 no. 15 in E minor
Caprice for Solo Violin, op. 1 no. 16 in G minor
Caprice for Solo Violin, op. 1 no. 17 in E-flat major
Caprice for Solo Violin, op. 1 no. 18 in C major
Caprice for Solo Violin, op. 1 no. 19 in E-flat major
Caprice for Solo Violin, op. 1 no. 20 in D major
Caprice for Solo Violin, op. 1 no. 21 in A major
Caprice for Solo Violin, op. 1 no. 22 in F major
Caprice for Solo Violin, op. 1 no. 23 in E-flat major
Caprice for Solo Violin, op. 1 no. 24 in A minor
Released 1985
Concerto in E major, Op. 8 No. 1, RV 269 "Spring": I. Allegro
Concerto in E major, Op. 8 No. 1, RV 269 "Spring": II. Largo
Concerto in E major, Op. 8 No. 1, RV 269 "Spring": III. Allegro
Concerto in G minor, Op. 8 No. 2, RV 315 "Summer": I. Allegro non molto
Concerto in G minor, Op. 8 No. 2, RV 315 "Summer": II. Adagio
Concerto in G minor, Op. 8 No. 2, RV 315 "Summer": III. Presto
Concerto in F major, Op. 8 No. 3, RV 293 "Autumn": I. Allegro
Concerto in F major, Op. 8 No. 3, RV 293 "Autumn": II. Adagio molto
Concerto in F major, Op. 8 No. 3, RV 293 "Autumn": III. Allegro
Concerto in F minor, Op. 8 No. 4, RV 297 "Winter": I. Allegro non molto
Concerto in F minor, Op. 8 No. 4, RV 297 "Winter": II. Largo
Concerto in F minor, Op. 8 No. 4, RV 297 "Winter": III. Allegro
Released 1985
Sinfonia Concertante in E major for Violin, Viola & Orchestra, K. 320d/364: I. Allegro maestoso
Sinfonia Concertante in E major for Violin, Viola & Orchestra, K. 320d/364: II. Andante
Sinfonia Concertante in E major for Violin, Viola & Orchestra, K. 320d/364: III. Presto
Concertone for 2 Violins, Oboe, Cello & Orchestra in C major, K. 186E/190: I. Allegro spiritoso
Concertone for 2 Violins, Oboe, Cello & Orchestra in C major, K. 186E/190: II. Andantino grazioso
Concertone for 2 Violins, Oboe, Cello & Orchestra in C major, K. 186E/190: III. Tempo di menuetto
Sonata No. 1 in G minor, BWV 1001: I. Adagio
Sonata No. 1 in G minor, BWV 1001: II. Fuga (Allegro)
Sonata No. 1 in G minor, BWV 1001: III. Siciliana
Sonata No. 1 in G minor, BWV 1001: IV. Presto
Partita No. 1 in B minor, BWV 1002: I. Allemande
Partita No. 1 in B minor, BWV 1002: I.a. - Double
Partita No. 1 in B minor, BWV 1002: II. Corrente
Partita No. 1 in B minor, BWV 1002: II.a. - Double (Presto)
Partita No. 1 in B minor, BWV 1002: III. Sarabande
Partita No. 1 in B minor, BWV 1002: III.a. - Double
Partita No. 1 in B minor, BWV 1002: IV. Bourrée
Partita No. 1 in B minor, BWV 1002: IV.a. - Double
Sonata No. 2 in A minor, BWV 1003: I. Grave
Sonata No. 2 in A minor, BWV 1003: II. Fuga
Sonata No. 2 in A minor, BWV 1003: III. Andante
Sonata No. 2 in A minor, BWV 1003: IV. Allegro
Trio for Piano, Violin, and Cello No. 5 in D major, Op. 70 No. 1 "Ghost": I. Allegro vivace e con brio
Trio for Piano, Violin, and Cello No. 5 in D major, Op. 70 No. 1 "Ghost": II. Largo assai e espressivo
Trio for Piano, Violin, and Cello No. 5 in D major, Op. 70 No. 1 "Ghost": III. Presto
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: I. Thema. Andante (Dittersdorf: 'Ja, ich muss mich von ihr scheiden')
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: II. Variation I
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: III. Variation II
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: IV. Variation III
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: V. Variation IV
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: VI. Variation V
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: VII. Variation VI
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: VIII. Variation VII
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: IX. Variation VIII
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: X. Variation IX
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: XI. Variation X
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: XII. Variation XI
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: XIII. Variation XII
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: XIV. Variation XIII
14 Variations for Piano, Violin, and Cello in E-flat major, Op. 44: XV. Variation XIV
Trio for Piano, Violin, and Cello No. 6 in E-flat major, Op. 70 No. 2: I. Poco sostenuto - Allegro ma non troppo
Trio for Piano, Violin, and Cello No. 6 in E-flat major, Op. 70 No. 2: II. Allegretto
Trio for Piano, Violin, and Cello No. 6 in E-flat major, Op. 70 No. 2: III. Allegretto ma non troppo
Trio for Piano, Violin, and Cello No. 6 in E-flat major, Op. 70 No. 2: IV. Finale. Allegro
Allegretto for Piano, Violin, and Cello in E-flat major, Hess 48
Trio for Piano, Violin, and Cello No. 1 in E-flat major, Op. 1 No. 1: I. Allegro
Trio for Piano, Violin, and Cello No. 1 in E-flat major, Op. 1 No. 1: II. Adagio cantabile
Trio for Piano, Violin, and Cello No. 1 in E-flat major, Op. 1 No. 1: III. Scherzo
Trio for Piano, Violin, and Cello No. 1 in E-flat major, Op. 1 No. 1: IV. Finale. Presto
Trio for Piano, Violin, and Cello No. 2 in G major, Op. 1 No. 2: I. Adagio - Allegro vivace
Trio for Piano, Violin, and Cello No. 2 in G major, Op. 1 No. 2: II. Largo con espressione
Trio for Piano, Violin, and Cello No. 2 in G major, Op. 1 No. 2: III. Scherzo. Allegro
Trio for Piano, Violin, and Cello No. 2 in G major, Op. 1 No. 2: IV. Finale. Presto
44 Duos, No. 1: Teasing Song
44 Duos, No. 2: Dance
44 Duos, No. 3: Menuetto
44 Duos, No. 4: Midsummer Night Song
44 Duos, No. 5: Slovak Song No. 1
44 Duos, No. 6: Hungarian Song
44 Duos, No. 7: Rumanian Song
44 Duos, No. 8: Slovak Song No. 2
44 Duos, No. 9: Play
44 Duos, No. 10: Ruthenian Song
44 Duos, No. 11: Lullaby
44 Duos, No. 12: Hay-Harvesting Song
44 Duos, No. 13: Wedding Song
44 Duos, No. 14: Cushion Dance
44 Duos, No. 15: Soldier's Song
44 Duos, No. 16: Burlesque
44 Duos, No. 17: Marching Song No. 1
44 Duos, No. 18: Marching Song No. 2
44 Duos, No. 19: Fairy Tale
44 Duos, No. 20: Song
44 Duos, No. 21: New Year's Greeting No. 1
44 Duos, No. 22: Mosquito Dance
44 Duos, No. 23: Wedding Song
44 Duos, No. 24: Gay Song
44 Duos, No. 25: Hungarian Song No. 2
44 Duos, No. 26: Teasing Song No. 2
44 Duos, No. 27: Limping Dance
44 Duos, No. 28: Sorrow
44 Duos, No. 29: New Year's Greeting No. 2
44 Duos, No. 30: New Year's Greeting No. 3
44 Duos, No. 31: New Year's Greeting No. 4
44 Duos, No. 32: Dance from Maramaros
44 Duos, No. 33: Harvest Song
44 Duos, No. 34: Counting Song
44 Duos, No. 35: Ruthenian Kolomejka
44 Duos, No. 36: Bagpipes
44 Duos, No. 36a: Variant to 36
44 Duos, No. 37: Prelude and Canon
44 Duos, No. 38: Rumanian Whirling Dance
44 Duos, No. 39: Serbian Dance
44 Duos, No. 40: Rumanian Dance
44 Duos, No. 41: Scherzo
44 Duos, No. 42: Arabian Song
44 Duos, No. 43: Pizzicato
44 Duos, No. 44: Transylvanian Dance
3 Violin Duets: I. Praeludium (Molto moderato)
3 Violin Duets: II. Gavotte
3 Violin Duets: III. Waltzes
Sonata for 2 Violins: I. Andante cantabile
Sonata for 2 Violins: II. Allegro
Sonata for 2 Violins: III. Comodo (quasi allegretto)
Sonata for 2 Violins: IV. Allegro con brio
Sonata for Violin and Piano in A major: I. Allegretto ben moderato
Sonata for Violin and Piano in A major: II. Allegro - Quasi lento - Tempo 1 (Allegro)
Sonata for Violin and Piano in A major: III. Recitativo - Fantasia (Ben moderato - Largamente
Sonata for Violin and Piano in A major: IV. Allegretto poco mosso
Trio for Horn, Violin, and Piano in E-flat major, Op. 40: I. Andante
Trio for Horn, Violin, and Piano in E-flat major, Op. 40: II. Scherzo. Allegro
Trio for Horn, Violin, and Piano in E-flat major, Op. 40: III. Adagio mesto
Trio for Horn, Violin, and Piano in E-flat major, Op. 40: IV. Finale. Allegro con brio
Concerto No. 1 "Spring", R. 269: I. Allegro
Concerto No. 1 "Spring", R. 269: II. Largo
Concerto No. 1 "Spring", R. 269: III. Allegro
Concerto No. 2 "Summer", R. 315: I. Allegro non molto
Concerto No. 2 "Summer", R. 315: II. Adagio
Concerto No. 2 "Summer", R. 315: III. Presto
Concerto No. 3 "Autumn", R. 293: I. Allegro
Concerto No. 3 "Autumn", R. 293: II. Adagio molto
Concerto No. 3 "Autumn", R. 293: III. Allegro
Concerto No. 4 "Winter", R. 297: I. Allegro non molto
Concerto No. 4 "Winter", R. 297: II. Largo
Concerto No. 4 "Winter", R. 297: III. Allegro
La Folia
Salut d'Amour
4 Pieces for Violin and Piano, Op. 17: no 3, Un Poco Triste
4 Pieces for Violin and Piano, Op. 17: no 3, Burlesca
Humoresque
Spanish Dance
Prelude No. 5
Songs without words, vol 1, Op. 19b: no 1, Andante con moto in E major
Pièces de clavecin, Op. 1: Suite no 1 - Allegro
La Plus Que Lente
Spanish Dances (2) for Violin and Piano, Op. 22: no 2, Jota Navarra
Berceuse for Violin and Piano in D major, Op. 16
Porgy and Bess: It ain't necessarily so
Serenade for Violin and Piano, Op. 30 no 2
Waves at Play
12 Songs, Op. 21: no 9, Melody
Tale of Tsar Saltan: Suite, Op. 57 - Flight of the bumblebee
Petite suite for Piano 4 hands: no 3, Menuet
');
} 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));
}
});
});
});
// -->
Loading...');
var query = jQuery('.radio_query').val();
jQuery.ajax({
data: { query: query },
url: '/api/upge/cheetah-photo-search/radio',
success: function(text) {
jQuery('.radio-search-results').html(jQuery(text));
updateHeight();
$('#RadioSearchTable').tablesorter();
$('#RadioSearchTable').trigger("update");
}
});
return false; // do not submit the form
});
$(".search-tools-btn").click(function () {
header = $(this);
content = $(".search-tools-content");
if(content.is(':visible')) {
content.hide('slow');
header.html('Tools ');
}else{
content.show('slow');
header.html('Hide ');
}
});
});