- published: 22 Jun 2017
- views: 221422
'+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; })); }); -->
Paul Hindemith (16 November 1895 – 28 December 1963) was a German composer, violist, violinist, teacher and conductor. Notable compositions include his song cycle Das Marienleben (1923) and opera Mathis der Maler (1938). Hindemith's most popular work, both on record and in the concert hall, is probably the Symphonic Metamorphosis of Themes by Carl Maria von Weber, written in 1943.
Born in Hanau, near Frankfurt am Main, Hindemith was taught the violin as a child. He entered Frankfurt's Hoch’sche Konservatorium, where he studied violin with Adolf Rebner, as well as conducting and composition with Arnold Mendelssohn and Bernhard Sekles. At first he supported himself by playing in dance bands and musical-comedy groups. He became deputy leader of the Frankfurt Opera Orchestra in 1914, and was promoted to leader in 1917. He played second violin in the Rebner String Quartet from 1914.
Hindemith was conscripted into the German army in September, 1917 and sent to join his regiment in Alsace in January, 1918. There he was assigned to play bass drum in the regiment band, and also formed a string quartet. In May 1918 he was deployed to the front in Flanders, where he served as a sentry; his diary shows him "surviving grenade attacks only by good luck," according to New Grove Dictionary. After the armistice he returned to Frankfurt and the Rebner Quartet.
String Quartet No. 1 may refer to:
The String Quartet No. 1 in D major, Opus 11, was Pyotr Ilyich Tchaikovsky's first completed string quartet of three string quartets, published during his lifetime. (An earlier attempt had been abandoned after the first movement had been completed.) Composed in February 1871, it was premiered in Moscow on 16/28 March 1871 by four members of the Russian Musical Society: Ferdinand Laub and Ludvig Minkus, violins; Pryanishnikov, viola; and Wilhelm Fitzenhagen, cello.
The quartet has four movements:
The melancholic Andante cantabile movement, which has become famous in its own right, was based on a folk song the composer heard at his sister's house at Kamenka whistled by a house painter. When the quartet was performed at a tribute concert for Leo Tolstoy, the author was said to have been brought to tears by this movement. “…Tolstoy, sitting next to me and listening to the Andante of my First Quartet, burst into tears"
The String Quartet No. 1 in A minor by Béla Bartók was completed in 1909. The score is dated January 27 of that year. It is one of six string quartets by Bartok.
The work is in three movements, played without breaks between each:
The work was at least in part inspired by Bartók's unrequited love for the violinist Stefi Geyer - in a letter to her, he called the first movement a "funeral dirge" and its opening notes trace a motif which first appeared in his Violin Concerto No. 1, a work dedicated to Geyer and suppressed by Bartók for many years. The intense contrapuntal writing of this movement is often compared to Ludwig van Beethoven's String Quartet No. 14, the opening movement of which is a slow fugue.
The following two movements are progressively faster, and the mood of the work lightens considerably, ending quite happily. The third movement is generally considered to be the most typical of Bartók's mature style, including early evidence of his interest in Hungarian folk music.
Sergei Rachmaninoff - String Quartet No. 1 (1889-90) Ruysdael Quartet ----------------------------------------------------- Support this YouTube Channel: https://www.patreon.com/georgengianopoulos
String Quartet No. 1 in E minor ("From My Life") by Bedřich Smetana - I. Allegro vivo appassionato. Performed live by the Dover String Quartet in Brooklyn Classical's studio. EXPAND this box for more info! Please "like" this video and subscribe to Brooklyn Classical for more great classical music! http://bit.ly/1M1oCye Thank you so much to the incredible Dover Quartet for joining us again in the studio! Check out the video they made with us last time of Dvorak's American Quartet: https://www.youtube.com/watch?v=6piTRGlSzDg Watch more of their videos on their YouTube channel! http://bit.ly/1RtXkpu Follow the Dover Quartet on: Facebook: https://www.facebook.com/DoverQuartet/ YouTube: http://bit.ly/1RtXkpu http://www.DoverQuartet.com Follow Brooklyn Classical on Facebook: https://www.f...
Johannes Brahms: String Quartet No.1 in C minor Op.51 Belcea Quartet Corina Belcea, violin Axel Schacher, violin Antoine Lederlin, violoncello Krzysztof Chrozelski, viola 00:00 Allegro 11:25 Romanze : Poco adagio 18:40 Allegretto molto moderato e comodo - Un poco più animato 28:05 Allegro Recorded on 23rd February 2021 at Musik- und Kulturzentrum Don Bosco Basel, Paul Sacher Saal If you want to learn more about the background of the piece we recommend to check out the analysis video before enjoying the performance. The artistic manager Dr. Hans-Georg Hofmann and violist Krzysztof Chorzelski give some background information by pointing out specific examples played by the musicians: https://youtu.be/SVS7U2yqPxE Film: Johannes Bachmann Sound: Joël Cormier © HMF Productions 2021
- Composer: Sergei Sergeyevich Prokofiev (23 April 1891 -- 5 March 1953) - Performers: Pavel Haas Quartet - Year of recording: 2009 String Quartet No. 1 in B minor, Op. 50, written in 1930. 00:00 - I. Allegro 07:02 - II. Andante molto 14:13 - III. Andante Prokofiev was a versatile composer who wrote substantial quantities of music in almost every major genre. There was an exception of sorts: while his chamber output was not particularly paltry, it was not large, either. There are only two string quartets, for instance, and this Op. 50 effort did not come until mid-career. Written on a commission from the Library of Congress, this quartet is regarded by many as one of Prokofiev's greatest masterpieces, although it is not often performed or recorded. The finale especially has been ...
Provided to YouTube by Universal Music Group Beethoven: String Quartet No. 1 in F Major, Op. 18 No. 1 - 1. Allegro con brio · Emerson String Quartet · Ludwig van Beethoven Beethoven:The String Quartets ℗ 1997 Deutsche Grammophon GmbH, Berlin Released on: 1997-01-01 Producer: Alison Ames Producer, Recording Producer, Studio Personnel, Balance Engineer, Editor: Max Wilcox Studio Personnel, Recording Engineer: Nelson Wong Composer: Ludwig van Beethoven Auto-generated by YouTube.
Pure emotion: Tchaikovsky’s String Quartet No. 1 is full of temperament and passion – as demonstrated by the Julia Fischer Quartet at the Rheingau Music Festival 2022. It was a powerful and virtuosic interpretation. The String Quartet No. 1 in D Major, Op. 11 is the first of three string quartets written by Pyotr Ilyich Tchaikovsky (1840 - 1893). It was premiered in March 1871 at the Moscow Conservatory as part of a chamber music recital with other works by Tchaikovsky. The Russian composer, largely unknown at the time, had written the String Quartet in D Major specifically for the occasion. Even before the event, Tchaikovsky is said to have feared that he would not be able to present enough good works. However, this fear was unfounded. The concert with the String Quartet No. 1 delighted ...
Leoš Janáček — String Quartet No. 1 "Kreutzer Sonata" / Meccore String Quartet The Arthur Rubinstein Philharmonic, Łódź, Poland 28.05.2019 Performers / MSQ: Wojciech Koprowski — violin Aleksandra Bryła — violin Michał Bryła — viola Tomasz Daroch — cello Sound: Krzysztof Łuciuk Video: Bartłomiej Talaga SUBSCRIBE! https://www.youtube.com/c/MeccoreStringQuartet 👉 www: https://meccorequartet.com/ 👉 Facebook: https://www.facebook.com/meccore 👉 Instagram: https://www.instagram.com/meccorequartet/ 👉Twitter: https://twitter.com/meccorequartet #meccorestringquartet #stringquartet #kwartetsmyczkowy #leošjanáček #kreutzersonata
0:00:00 String Quartet No. 1, revised from the Suíte graciosa (1946) 0:19:56 String Quartet No. 2 (1915) 0:41:19 String Quartet No. 3, Quarteto de pipocas (1917) 1:03:59 String Quartet No. 4 (1917) 1:27:17 String Quartet No. 5, Quarteto popular no. 1 (1931) 1:43:21 String Quartet No. 6, Brazilian (1938) 2:08:13 String Quartet No. 7 (1942) 2:43:08 String Quartet No. 8 (1944) 3:07:47 String Quartet No. 9 (1945) 3:35:57 String Quartet No. 10 (1946) 4:00:52 String Quartet No. 11 (1948) 4:28:42 String Quartet No. 12 (1950) 4:51:05 String Quartet No. 13 (1951) 5:12:11 String Quartet No. 14 (1953) 5:30:41 String Quartet No. 15 (1954) 5:49:22 String Quartet No. 16 (1955) 6:09:49 String Quartet No. 17 (1957) Performed by Cuarteto Latinoamericano: Violin I: Saul Bitran Violin II: Aron Bitran Viola:...
- Composer: Alexander Porfiryevich Borodin (12 November 1833 -- 27 February 1887) - Performers: Moscow String Quartet - Year of recording: 1995 String Quartet No. 1 in A major, written in 1874-1879. 00:00 - I. Moderato 13:58 - II. Andante con moto 22:28 - III. Scherzo. Prestissimo 28:24 - IV. Finale. Andante. Allegro Risoluto When Borodin began sketching out his first string quartet in 1873, he wanted to produce something identifiably Russian, rather than follow German traditions slavishly. Yet he was not fully committed to the musical nationalism of Mussorgsky and other members of the Mighty Handful. The resulting quartet contains many Slavic touches, written as it was during the long gestation of Borodin's opera Prince Igor, but it takes a predominantly Classical (yes, German) form. B...
Paul Hindemith (16 November 1895 – 28 December 1963) was a German composer, violist, violinist, teacher and conductor. Notable compositions include his song cycle Das Marienleben (1923) and opera Mathis der Maler (1938). Hindemith's most popular work, both on record and in the concert hall, is probably the Symphonic Metamorphosis of Themes by Carl Maria von Weber, written in 1943.
Born in Hanau, near Frankfurt am Main, Hindemith was taught the violin as a child. He entered Frankfurt's Hoch’sche Konservatorium, where he studied violin with Adolf Rebner, as well as conducting and composition with Arnold Mendelssohn and Bernhard Sekles. At first he supported himself by playing in dance bands and musical-comedy groups. He became deputy leader of the Frankfurt Opera Orchestra in 1914, and was promoted to leader in 1917. He played second violin in the Rebner String Quartet from 1914.
Hindemith was conscripted into the German army in September, 1917 and sent to join his regiment in Alsace in January, 1918. There he was assigned to play bass drum in the regiment band, and also formed a string quartet. In May 1918 he was deployed to the front in Flanders, where he served as a sentry; his diary shows him "surviving grenade attacks only by good luck," according to New Grove Dictionary. After the armistice he returned to Frankfurt and the Rebner Quartet.
Girl you look so mesmerizing
You got me fantasizing
Your man's lost but you don't wanna find him
He's played you like a fool
Oh yeah I know you see me smiling
Maybe we shouldn't but we vibin'
Do you think that he would mind if
I took you for a dance or two
I've waited long enough
So please make up your mind
Because we're wasting precious time
I'm not gonna treat you like
Another girl on the side
No I... No I... No I... No I
No I can't bare to see you with him
When you should be with me
No I just can't stand to see you cry
No I
No I won't let you down
I'll be there when I should be around
No I can't be without you girl
For even one more night
No I
You ain't ever gonna change him
So tell me what you're contemplating
Baby why you keep me waiting
I don't know what to do
So you tried to tell him last night
Well that better be the last time
That you let the moment pass by
I can't get enough of you
I've waited long enough
So please make up your mind
Because we're wasting precious time
I'm not gonna treat you like
Another girl on the side
No I... No I... No I... No I
No I can't bare to see you with him
When you should be with me
No I just can't stand to see you cry
No I
No I won't let you down
I'll be there when I should be around
No I can't be without you girl
For even one more night
No I
No I can't bare to see you with him
When you should be with me
No I just can't stand to see you cry
No I
No I won't let you down
I'll be there when I should be around
No I can't be without you girl
For even one more night
No I
I see you holding hands
I gotta hold it back
You shoulda told him that
I am the only one girl
Won't you make up your mind so
I can move on in life knowing
That you're by my side
So many reasons for you to believe in our love
No I can't bare to see you with him
When you should be with me
No I just can't stand to see you cry
No I
No I won't let you down
I'll be there when I should be around
No I can't be without you girl
For even one more night