'+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
- Rialto
RADIO STATION
GENRE
LOCATION
WATR-AM 1320 Waterbury, CT
Oldies
USA
FSN Feature Story News World News
News ,News Updates
USA
High Plains Public Radio
Classical ,Public
USA
KBYU-FM 89.1 (Great Music ... Sound Ideas) Provo, UT
Classical ,Public ,College
USA
Western Intertie Network (WIN System)
Talk
USA
WPDH-FM 101.5 (Home Of Rock N Roll) Poughkeepsie, NY
Classic Rock
USA
WQQB-FM 96.1 Rantoul, IL
Top 40
USA
AccuRadio: Power Ballads
Adult Contemporary ,Classic Rock
USA
KKLA-FM 99.5 Los Angeles, CA
Christian ,Talk
USA
KTAR-FM 92.3 Phoenix, AZ
News Talk ,Talk ,Discussion
USA
WBPT-FM 106.9 (The Eagle) Birmingham, AL
Classic Rock
USA
KFMJ-FM 99.9 Ketchikan, AK
Oldies ,Classic Rock
USA
WXL61-SW 162.475 (NOAA Weather) Cedar Rapids, IA
News Updates ,Short Wave Radio
USA
WDQX-FM 102.3 (Max FM) Morton, IL
Classic Rock
USA
BoomerRadio: Sweet Soul Music
Oldies ,Pop
USA
WOLX-FM 94.9 Baraboo, WI
Oldies
USA
WICR-FM 88.7 (Univ of Indianapolis) Indianapolis, IN
College
USA
IRSO-FL Roots of Soul
R&B
USA
WJTW-LP 100.3 Jupiter, FL
Oldies ,Public
USA
WVHF-AM 1140 (Holy Family Radio) Kentwood, MI
Religious
USA
WONE-FM 97.5 Akron, OH
Rock ,Classic Rock
USA
WGLE-FM 90.7 (WGTE) Lima, OH
News
USA
Today's Christian Music
Christian Contemporary ,Religious ,Christian
USA
Shepherd's Chapel
Religious ,Christian
USA
KRLD-AM 1080 (NewsRadio 1080) Dallas, TX
News Talk ,News ,Talk
USA
KDIX-IR 1230 (Herb 1 Radio) Dickinson, ND
Jazz ,Talk ,Reggae
USA
Mistletoe @ iradiophilly.com
Christian
USA
ORS - Christmas Music For Kids
Christian ,Kids
USA
WBOG-AM 1460 (Kool Gold) Tomah, WI
Oldies
USA
KELS-LP 104.7 FM (Pirate Radio) Greeley, CO
Oldies ,60s
USA
Smooth Beats, Hip Hop
Hip Hop
USA
WPSO-AM 1500 (Greek Voice Radio) New Port Richey, FL
Greek
USA
KCMQ-FM 96.7 (Real Classic Rock) Columbia, MO
Classic Rock
USA
NuBreaks Radio
Dance ,Electronica ,Jungle
USA
KCME-FM 88.7 Manitou Springs, CO
Classical ,Public
USA
South Carolina ETV Radio, Classical
Varied ,Classical ,Public
USA
WBJC-FM 91.5 Baltimore, MD
Classical ,Public ,College
USA
WNWC-FM 102.5 (Life 102.5) Madison, WI
Christian Contemporary ,Gospel ,Christian
USA
KLFE-AM 1590 (Freedom 1590) Seattle, WA
Talk
USA
K-Lite Online
Soft Rock
USA
WFCJ-FM 93.7 (Inspiration) Dayton, OH
Religious
USA
Scanner: Denver Police
Talk
USA
WRSU-FM 88.7 (Rutgers Univ) New Brunswick, NJ
College
USA
SomaFM: Tag's Trip
Electronica
USA
WEKZ-FM 93.7 (Big Oldies) Monroe, WI
Oldies
USA
WZAB-AM 880 (The Biz) Sweetwater, FL
Talk ,Discussion
USA
KBGL-FM 106.9 (Hits 106.9) Larned, KS
Contemporary
USA
WARL-AM 1320 Attleboro, MA
Talk
USA
KIH35-SW 162.550 (NOAA Weather) Pittsburgh, PA
News Updates ,Short Wave Radio
USA
WRUR-FM 88.5 (WXXI Public Broadcasting) Rochester, NY
College
USA
WDEF-FM 92.3 (Sunny 92.3) Chatanooga, TN
Contemporary
USA
SEARCH FOR RADIOS
George Gershwin
ALBUMS
Coleção Folha Mestres da música clássica, volume 18: George Gershwin
released: 2014
Great Piano Concertos
released: 2012
Rhapsody in Blue
released: 2012
Brain Rubbish
released: 2012
Gershwin & Me
released: 2012
Copland: Quiet City, Eight Poems of Emily Dickinson / Barber: Knoxville: Summer of 1915, Capricorn Concerto / Gershwin: Summertime
released: 2012
Rhapsody in Blue / I Got Rhythm / Piano Concerto in F / Second Rhapsody
released: 2012
George Gershwin: Rhapsody in Blue / Leonard Bernstein: West Side Story
released: 2011
Rhapsody in Blue / Piano Concert in F / Second Rhapsody / "I Got Rhytm" Variations
released: 2010
Songs from the Shows, Overtures (New Princess Theater Orchestra feat. conductor: John McGlinn, soprano: Kiri Te Kanawa)
released: 2010
BBC Music, Volume 18, Number 7: American Classics: Bernstein, Gershwin, Grofé & Ellington
released: 2010
Rhapsody in Blue (Gewandhausorchester Leipzig feat. conductor: Riccardo Chailly, piano: Stefano Bollani)
released: 2010
New York Connections
released: 2009
Porgy and Bess (feat. conductor: Nikolaus Harnoncourt)
released: 2009
Rhapsody in Blue, Concerto en Fa, Porgy and Bess (Aalborg Symphony feat. piano: Wayne Marshall)
released: 2008
BBC Music, Volume 16, Number 13: Gershwin: Piano Concerto in F / Ravel: Piano Concerto in G
released: 2008
An American in Paris (Saint Louis Symphony feat. conductor: Leonard Slatkin) / Rhapsody in Blue (London Sinfonietta feat. conductor: Simon Rattle) / Catfish Row (Leonard Slatkin) / Cuban Overture (London Symphony Orchestra feat. conductor: André Previn)
released: 2008
The Gershwin Collection
released: 2006
Coleção Folha de música clássica, volume 24: Gershwin, Ravel, Debussy
released: 2006
Piano Concerto in F
released: 2006
Porgy and Bess (Nashville Symphony Orchestra feat. conductor: John Mauceri)
released: 2006
Orchesterwerke (Gewandhausorchester Leipzig feat. conductor: Kurt Masur, piano: Siegfried Stökigt, clarinet: Kurt Hiltawsky)
released: 2006
An American in Paris / Catfish Row (Suite from "Porgy and Bess") / Promenade / Rhapsody in Blue / Cuban Overture
released: 2005
Tchaikovsky: 1812 / Gershwin: Rhapsody in Blue / Gershwin: An American in Paris
released: 2004
The Greatest Hits
released: 2002
Classics Collection
released: 2001
"I Got Rhythm": Musik für 2 Klaviere (feat. pianos: Katia & Marielle Labèque)
released: 2001
Kickin’ the Clouds Away: Gershwin at the Piano
released: 2000
Raapsodia in blu - Un americano a Parigi
released: 1999
Gershwin Centennial Edition (Royal Scottish National Orchestra feat. conductor: José Serebrier, piano: Leopold Godowsky III)
released: 1999
Fascinating Rhythm: The Complete Music for Solo Piano
released: 1999
Rhapsody in Blue
released: 1998
Greatest Hits
released: 1998
The 100th Birthday Celebration (San Francisco Symphony feat. conductor: Michael Tilson Thomas)
released: 1998
Oh, Kay! (1955 studio cast)
released: 1998
Girl Crazy
released: 1998
Rhapsody in Blue
released: 1998
Porgy and Bess (Bulgarian radio Symphony Orchestra & Chorus)
released: 1998
George & Ira Gershwin: Standards & Gems
released: 1998
Porgy & Bess: 1951 Studio Recording
released: 1998
I Got Rhythm: Wayne Marshall Plays George Gershwin
released: 1997
Gershwin Concert
released: 1996
America
released: 1996
Gershwin - The Platinum Collection
released: 1996
Major Orchestral Works
released: 1995
Oh, Kay! (1994 studio recording)
released: 1995
Erich Kunzel's Gershwin
released: 1995
By George
released: 1994
An American in Paris / Suite: Catfish Row / Variations on "I Got Rhythm" / Girl Crazy / Strike Up the Band
released: 1994
The Best of George Gershwin, Volume 1
released: 1994
The Best of George Gershwin, Volume 2
released: 1994
The Best of George Gershwin, Volume 3
released: 1994
Rhapsody in Blue
released: 1993
Rhapsody in Blue / An American in Paris / Concerto in F (Boston Pops Orchestra feat. conductor: Arthur Fiedler) (RCA Victor Basic 100: Volume 30)
released: 1993
Die Klassiksammlung 23: Gershwin: Meisterwerke der Moderne
released: 1993
Copland: Clarinet Concerto / Bernstein: Sonata for Clarinet / Gershwin: Three Preludes
released: 1993
Gershwin Overtures (The New Princess Theater Orchestra feat. conductor John McGlinn)
released: 1992
The George Gershwin Gold Collection
released: 1992
Gershwin Bernstein
released: 1991
Rhapsody in Blue
released: 1991
Rhapsody in Blue / Piano Concerto / Song-Book
released: 1991
Rhapsody in Blue / Second Rhapsody for Orchestra with Piano / Preludes / Unpublished Piano Works
released: 1990
Arias and Barcarolles / School for Scandal / An American in Paris
released: 1990
The Complete Gershwin: Works for Orchestra, Piano & Orchestra
released: 1990
Piano Concerto / La Création du monde
released: 1989
Virtuoso Piano Music (Piano: Mario-Ratko Delorko)
released: 1989
Gigi & An American in Paris: Original MGM Soundtrack Recordings
released: 1989
My One and Only (1983 original Broadway cast)
released: 1989
An American in Paris (The Philadelphia Orchestra)
released: 1988
Second Rhapsody: Music for Two Pianos by George Gershwin (feat. Katia & Marielle Labèque)
released: 1988
Gershwin (Dallas Symphony Orchestra feat. Eduardo Mata, conductor)
released: 1988
George Gershwin plays Rhapsody In Blue using the original Piano Rolls (Denver Symphony Pops, Newton Wayland)
released: 1987
Francois-Joel Thiollier joue Gershwin
released: 1987
Rhapsody in Blue / The Gershwin Songbook / Who Cares? (The Royal Philharmonic Orchestra feat. Conductor Andrew Litton)
released: 1987
Fascinatin' Rampal
released: 1985
The Gershwin Album (The Philadelphia Orchestra feat. conductor: Eugene Ormany, piano: Philippe Entremont)
released: 1983
Porgy and Bess (Houston Grand Opera Cast & Orchestra feat. conductor: John DeMain, bass-baritone: Donnie Ray Albert, soprano: Clamma Dale)
released: 1983
Grand Canyon Suite / Porgy and Bess
released: 1983
Gershwin: Rhapsody in Blue, An American in Paris, Concerto in F / Bernstein: West Side Story Dances / Russo: Three Pieces for Blues Band and Orchestra
released: 1981
Rhapsody in Blue / Piano Concerto in F, versions for two pianos (feat. piano: Katia & Maria Labèque)
released: 1981
Previn Conducts Gershwin (London Symphony Orchestra feat. conductor: André Previn)
released: 1981
Porgy and Bess in Concert / Girl Crazy Overture
released: 1981
Porgy and Bess - Performances From the Soundtrack
released: 1974
An American in Paris / Cuban Overture / Porgy and Bess: A Symphonic Picture
released:
Fascinating Rhythms
released:
Rhapsody in Blue
released:
Gershwin: Rhapsody in Blue / Gershwin: Concerto in F for Piano and Orchestra / Ravel: Bolero / Ravel: Concerto for Piano and Orchestra in G Major / Rodrigo: Concierto de Aranjuez for Guitar and Orchestra
released:
The Great Composers: 52 - Gershwin Concert Works
released:
Peter Pechersky Plays
released:
Concert 1993
released:
Great Composers - Disc B
released:
Gershwin
released:
Two Sides of George Gershwin
released:
Porgy and Bess (Cleveland Orchestra & Chorus feat. conductor: Lorin Maazel)
released:
Gershwin Favourites (Mineria Symphony Orchestra feat. conductor: Herrera de la Fuente, piano: David Syme)
released:
Rhapsody in Blue / Cuban Overture / Catfish Row / An American in Paris (Chicago Symphony Orchestra feat. conductor: James Levine)
released:
'S Wonderful (Piano Duets by Ralph Grierson & Artie Kane)
released:
West Side Story / An American in Paris
released:
Porgy and Bess (Excerpts) (Rundfunk-Sinfonieorchester Berlin feat. conductor: Leonard Slatkin, bass-baritone: Simon Estes, soprano: Roberta Alexander, mezzo-soprano: Diane Curry)
released:
The Music of George Gershwin (feat. piano: Joanna Macgreggor)
released:
Released 2009
Porgy and Bess: Act II, Scene I: 'Lo, Bess, goin' to de picnic?
Porgy and Bess: Act II, Scene I: Honey, we sure goin' strut our stuff today!
Porgy and Bess: Act II, Scene I: Bess, you is my woman now
Porgy and Bess: Act II, Scene I: Oh, I can't sit down
Porgy and Bess: Act II, Scene II: I ain't got no shame doin' what I like to do!
Porgy and Bess: Act II, Scene II: It ain't necessarily so
Porgy and Bess: Act II, Scene II: Shame on all you sinners
Porgy and Bess: Act II, Scene II: Crown! / You know very well dis Crown!
Porgy and Bess: Act II, Scene II: Oh, what you want wid Bess?
Porgy and Bess: Act II, Scene III: Honey, dat's all de breakfast I got time for
Porgy and Bess: Act II, Scene III: Well, if it ain' ole Peter!
Porgy and Bess: Act II, Scene III: Oh, Doctor Jesus
Porgy and Bess: Act II, Scene III: Oh dey's so fresh an' fine
Porgy and Bess: Act II, Scene III: I'm talkin' about devil crabs
Porgy and Bess: Act II, Scene III: Porgy, Porgy, dat you there, ain' it?
Porgy and Bess: Act II, Scene III: If dere war'nt no Crown
Porgy and Bess: Act II, Scene III: Why you been out on that wharf so long, Clara?
Porgy and Bess: Act II, Scene IV: Oh, de Lawd shake de Heavens an' de Lawd rock de groun'
Porgy and Bess: Act II, Scene IV: One of dese mornin's you goin' to rise up singin'
Porgy and Bess: Act II, Scene IV: Oh, dere's somebody knockin' at de do'
Porgy and Bess: Act II, Scene IV: You is a nice parcel of Christians
Porgy and Bess: Act II, Scene IV: A read-headed woman make a choo-choo jump its track
Porgy and Bess: Act II, Scene IV: Oh! Jake's boat in de river upside down!
Porgy and Bess: Act II, Scene IV: All right, I'm goin' out to get Clara...Oh, Doctor Jesus
Released 2006
Porgy and Bess: Act I, Scene I. Introduction
Porgy and Bess: Act I, Scene I. “Summertime” (Clara)
Porgy and Bess: Act I, Scene I. “Seems like these bones don’t give me nothin’ but boxcars tonight” (Jake)
Porgy and Bess: Act I, Scene I. “Summertime” (Clara)
Porgy and Bess: Act I, Scene I. “What, that chile ain’t asleep yet?… A woman is a sometime thing (Lissen to yo’ daddy warn you…)” (Jake)
Porgy and Bess: Act I, Scene I. “Honey man! Honey man! Here come de honey man” (Peter)
Porgy and Bess: Act I, Scene I. “They pass by singin’ (No, no, brudder, Porgy ain’ sof’ on no woman” (Porgy)
Porgy and Bess: Act I, Scene I. “Here comes Big Boy!” (Mingo)
Porgy and Bess: Act I, Scene I. “Crown cock-eyed drunk… Oh, little stars” (Men, Porgy)
Porgy and Bess: Act I, Scene I. “Oh, stop them! Don’t let them fight!” (Serena)
Porgy and Bess: Act I, Scene I. “Wake up an’ hit it out. You ain’t got no time to lose” (Bess)
Porgy and Bess: Act I, Scene II. “Gone, Gone, Gone (Where is brudder Robinns?)… Overflow” (All)
Porgy and Bess: Act I, Scene II. “Um! A saucer-buryin’ setup, I see” (Detective, Serena, Lily, Peter, Porgy, Jake)
Porgy and Bess: Act I, Scene II. “My man’s gone now” (Serena, All)
Porgy and Bess: Act I, Scene II. “How de saucer stan’ now, my sister?” (Undertaker)
Porgy and Bess: Act I, Scene II. “Leavin’ for the Promise’ Lan’ (Oh, the train is at the station)” (Bess)
Porgy and Bess: Act I, Scene III. “It take a long pull to get there (Oh, I’m a-goin’ out to the Blackfish banks)” (Jake)
Porgy and Bess: Act I, Scene III. “Oh, I got plenty o’ nuttin’” (Porgy)
Porgy and Bess: Act I, Scene III. “Mornin’, lawyer, lookin’ for somebody?” (Maria)
Porgy and Bess: Act I, Scene III. “Dey’s a Buckra comin’” (Scipio)
Porgy and Bess: Act I, Scene III. “’Lo Bess, goin’ to de picnic?” (Sporting Life)
Porgy and Bess: Act I, Scene III. “Bess, you is my woman now” (Porgy)
Porgy and Bess: Act I, Scene III. “Oh, I can’t sit down” (All)
Released 1998
Introduction
Summertime
Seems Like These Bones
What, That Chile Ain't Asleep Yet?... (A Woman Is a Sometime Thing)
Here Comes De Honey Man
Here Comes Big Boy!
Oh, Little Stars, Little Stars
Wake Up an' Hit It Out
Where Is Brudder Robbins?... (Gone, Gone, Gone)
Come on, Sister, Come on, Brother... (Overflow)
Um! A Saucer-Burying Setup
My Man's Gone Now
How De Saucer Stan' Now, My Sister?
Oh, the Train Is at the Station... (Leavin' for the Promise' Lan')
Oh, I'm Agoin' Out to the Blackfish Banks...
Mus' Be You Mens Forgot About De Picnic
I Got Plenty O' Nuttin'
Mornin', Lawyer
Dey's a Buckra Comin'
Look Out, Dat's a Buzzard! (The Buzzard Song)
'Lo, Bess. Goin' to the Picnic?
Bess, You Is My Woman Now
Oh, I Can't Sit Down
What's De Matter Wid You, Sister?
Porgy and Bess: Act I, Scene I. "Introduction: Jasbo Brown Blues"
Porgy and Bess: Act I, Scene I. "Summertime" - "Oh, nobody knows when the Lawd is goin' to call..." - "I been sweatin' all day"
Porgy and Bess: Act I, Scene I. "A woman is a sometime thing (Lissen to yo' daddy warn you)"
Porgy and Bess: Act I, Scene I. "Here come de honey man" - "Here's the ol' crap shark"
Porgy and Bess: Act I, Scene I. "They pass by singin'" - "Here comes Big Boy!" - "Don't you ever let a woman grieve you"
Porgy and Bess: Act I, Scene I. "Oh, little stars" - "Touch that money an' meet yo' Gawd!"
Porgy and Bess: Act I, Scene I. "Wake up an' hit it out" - "That you, Sportin' Life?"
Porgy and Bess: Act I, Scene II. "Gone, gone, gone (Where is brudder Robbins?)"
Porgy and Bess: Act I, Scene II. "Overflow, overflow" - "Gawd got plenty of money for de saucer"
Porgy and Bess: Act I, Scene II. "Um! A saucer-burial setup, I see"
Porgy and Bess: Act I, Scene II. "My man's gone now" - "How de saucer stan' now, my sister?"
Porgy and Bess: Act I, Scene II. "Headin' for the Promis' Lan'"
Porgy and Bess, opera: Introduction / Jazzbo Brown Blues / Summertime
Porgy and Bess, opera: My Man's Gone Now
Porgy and Bess, opera: I got plenty o' nuttin'
Porgy and Bess, opera: Buzzard keep on flyin'
Porgy and Bess, opera: Bess, you is my woman now
Porgy and Bess, opera: Oh, I can't sit down
Porgy and Bess, opera: I ain't got no shame / It ain't necessarily so
Porgy and Bess, opera: Now de time, oh Gawd
Porgy and Bess, opera: Tell me quick where's Bess / Oh Lawd, I'm on my way
Born: 1898-09-26
Died: 1937-07-11
Richard Dowling plays Rialto Ripples Rag by George Gershwin
Richard Dowling plays Rialto Ripples Rag by George Gershwin
published: 04 Sep 2009
G. Gershwin, W. Donaldson - Rialto Ripples (piano)
Rialto Ripples is a very nice piece of rag written both by George Gershwin and Will Donaldson. It should not be played too fast. Perhaps some of you will find it too slow but rags can be played at any speed. Anyway, I hope you enjoy it.
published: 21 Dec 2009
2:59
G. Gershwin, W. Donaldson - Rialto Ripples (piano)
Rialto Ripples is a very nice piece of rag written both by George Gershwin and Will Donaldson. It should not be played too fast. Perhaps some of you will find i...
Rialto Ripples is a very nice piece of rag written both by George Gershwin and Will Donaldson. It should not be played too fast. Perhaps some of you will find it too slow but rags can be played at any speed. Anyway, I hope you enjoy it.
https://wn.com/G._Gershwin,_W._Donaldson_Rialto_Ripples_(Piano)
Rialto Ripples is a very nice piece of rag written both by George Gershwin and Will Donaldson. It should not be played too fast. Perhaps some of you will find it too slow but rags can be played at any speed. Anyway, I hope you enjoy it.
published: 21 Dec 2009
views: 2191
2:26
Richard Dowling plays Rialto Ripples Rag by George Gershwin
Richard Dowling plays Rialto Ripples Rag by George Gershwin
Play in Full Screen
Richard Dowling plays Rialto Ripples Rag by George Gershwin
Richard Dowling plays Rialto Ripples Rag by George Gershwin
Richard Dowling plays Rialto Ripples Rag by George Gershwin
2:59
G. Gershwin, W. Donaldson - Rialto Ripples (piano)
Rialto Ripples is a very nice piece of rag written both by George Gershwin and Will Donald...
Play in Full Screen
G. Gershwin, W. Donaldson - Rialto Ripples (piano)
G. Gershwin, W. Donaldson - Rialto Ripples (piano)
Rialto Ripples is a very nice piece of rag written both by George Gershwin and Will Donaldson. It should not be played too fast. Perhaps some of you will find it too slow but rags can be played at any speed. Anyway, I hope you enjoy it.
');
} 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));
}
});
});
});
// -->
Richard Dowling plays Rialto Ripples Rag by George...
G. Gershwin, W. Donaldson - Rialto Ripples (piano)...
The Very Best Of
by:
George Gershwin
The man who only live for making money Lives a life that isn't necessarily sunny; Likewise the man who works for fame -- There's no guarantee that time won't erase his name The fact is The only work that really brings enjoyment Is the kind that is for girl and boy meant. Fall in love -- you won't regret it. That's the best work of all -- if you can get it. Holding hands at midnight 'Neath a starry sky... Oh that is nice work if you can get it. And you can get it -- if you try. Strolling with the one girl Sighing sigh after sigh... Oh nice work if you can get it. And you can get it -- if you try. Just imagine someone Waiting at the cottage door. Where two hearts become one... Who could ask for anything more? Loving one who loves you, And then taking that vow... Nice work if you can get it, And if you get it -- Won't you tell me how? And you can get it -- if you try. And you can get it -- if you try. And you can get it -- if you try. And you can get it -- if you try Holding hands at midnight 'Neath a starry sky... Nice work if you can get it And you can get it -- if you try. Strolling with the one girl Sighing sigh after sigh... Nice work if you can get it And you can get it -- if you try Who could ask for anything more?