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

The Four Seasons (Vivaldi)

The Four Seasons (Italian: Le quattro stagioni) is a group of four violin concerti by Italian composer Antonio Vivaldi, each of which gives a musical expression to a season of the year. They were written about 1723 and were published in 1725 in Amsterdam, together with eight additional violin concerti, as Il cimento dell'armonia e dell'inventione ("The Contest Between Harmony and Invention").

The Four Seasons is the best known of Vivaldi's works. Unusually for the time, Vivaldi published the concerti with accompanying poems (possibly written by Vivaldi himself) that elucidated what it was about those seasons that his music was intended to evoke. It provides one of the earliest and most-detailed examples of what was later called program music—music with a narrative element.

Vivaldi took great pains to relate his music to the texts of the poems, translating the poetic lines themselves directly into the music on the page. In the middle section of the Spring concerto, where the goatherd sleeps, his barking dog can be marked in the viola section. Other natural occurrences are similarly evoked. Vivaldi separated each concerto into three movements, fast-slow-fast, and likewise each linked sonnet into three sections. His arrangement is as follows:

Spring (company)

Spring is the Australian arm of FremantleMedia Australia and was formed in 2011.

Current Programmes

  • It's a Knockout (2011)
  • References

    External links

  • FremantleMedia Australia's Official Site
  • Spring (Rachmaninoff)

    Spring (Vesna), Op. 20, is a single-movement cantata for baritone, chorus and orchestra, written by Sergei Rachmaninoff in 1902.

    The work was finished after the famous Second Piano Concerto. Rachmaninoff intended to revise the cantata's orchestration but never did so.

    Programme

    The work is based on a poem by Nikolay Nekrasov and describes the return of the Zelyoniy shum, or "green rustle". The poem tells of a husband who, fraught with murderous thoughts towards his unfaithful wife during the winter season, is ultimately freed from his frustration and choler by the return of spring.

    References

  • Griffiths, Steve. "Spring Promise". The Musical Times. Musical Times Publications Ltd. 1994.
  • Reither, Joseph. "Chronicle of Exile". Tempo. Cambridge University press. 1951.
  • To be announced

    To be announced (TBA), to be confirmed (TBC), and to be determined (or to be decided, TBD) are placeholder terms used very broadly in event planning to indicate that although something is scheduled or expected to happen, a particular aspect of that remains to be arranged or confirmed.

    TBA vs. TBC vs. TBD

    These phrases are similar, but may be used for different degrees of indeterminacy:

  • To be determined (TBD) - the appropriateness, feasibility, location, etc. of a given event has not been decided.
  • To be announced (TBA) - details may have been determined, but are not yet ready to be announced.
  • To be confirmed (TBC) - details may have been determined and possibly announced, but are still subject to change.
  • Other similar phrases sometimes used to convey the same meaning, and using the same abbreviations, include "to be ascertained", "to be arranged", "to be advised", "to be adjudicated", "to be done", "to be decided", and "to be declared".

    Use of the abbreviation "TBA" is formally reported in a reference work at least as early as 1955, and "TBD" is similarly reported as early as 1967.

    TBC (disambiguation)

    TBC may refer to:

    Education

  • Trinity Bible College
  • Tauranga Boys' College, a state secondary school in Tauranga, New Zealand
  • Companies

  • Triangle Brewing Company of Durham, North Carolina
  • Tram et Bus de la CUB, the operator of three tram lines and a bus network in Bordeaux, France
  • TBC Bank, a private bank in Republic of Georgia
  • Medicine

  • Tuberculosis, lethal, infectious disease common before WWII
  • Radio and television

  • Tongyang Broadcasting Company, 1964–1980, a defunct South Korean company
  • Taegu Broadcasting Corporation, a South Korean local broadcasting company
  • Tonga Broadcasting Commission
  • Triad Broadcasting Company
  • Tohoku Broadcasting Company, a Sendai, Japan, TV/radio station
  • Music

  • The Black Crowes, a blues based rock band
  • TBC (band), a Christian band
  • Other uses

  • To be confirmed
  • To be continued
  • 4-tert-Butylcatechol, an antioxidant
  • The Beijing Center for Chinese Studies, organization aiming at educating the academic community about China
  • World of Warcraft: The Burning Crusade, the first expansion pack for World of Warcraft
  • Matt Schwartz

    Matt Schwartz (born 26 October 1971) is an Israeli-British multi-instrumentalist record producer a songwriter, an artist, DJ, and a prolific audio engineer based in London. He has contributed to numerous records since 1995 as an engineer, producer, composer, musician and a songwriter, working with all the UK major record labels, he also had several club chart toppers and a few top 10 chart and airplay charts records in the UK, US and Europe as an artist.

    Biography and life

    Born in Israel, Schwartz came to London in the early 90's. Schwartz enrolled at Kingston University, and a year later began working at the Hit-House in Hammersmith between 1994–5 with the likes of Farley Jack Master Funk, Dirty Rotten Scoundrels, Matt Jam and Carl Brown, plus many more while producing records with James F. Reynolds.

    Schwartz worked at BeatFarm studios in 1996-8, making hundreds of records with the likes of Massive Attack,Mica Paris,Arthur Baker, Sara J, Tall Paul,Wamdue Project,JTQ and a host of others while developing unsigned bands and making his own records.

    Podcasts:

    • Four Seasons ~ Vivaldi

      Antonio Vivaldi - Four Seasons Budapest Strings Bela Banfalvi, Conductor You can get the exact album I have here on Amazon: http://amzn.to/1I2dNNu (affiliate). Here are the times for the specific movements: Spring 0:00 Summer 10:31 Autumn 20:59 Winter 32:48 I hope you love this recording! It is my favorite one I've heard yet. Happy Listening! AnAmericanComposer

      published: 30 Jan 2011
    • Vivaldi: The Four Seasons (Orquesta Reino de Aragón)

      🎵 Buy "The Four Seasons" on the Official Halidon Music Store: https://bit.ly/3emUdjo 🎧 Follow the Orchestra on Spotify: https://spoti.fi/3t0yxA9 🍎 iTunes & Apple Music: https://apple.co/3hFh9ek 💿 Order "The Four Seasons" (Vinyl) on Amazon: https://lnk.to/VinylTheFourSeasons 💿 Order "The Best of Vivaldi" (3-CD Box Set) on Amazon: https://lnk.to/CDBestVivaldi These tracks are available for sync licensing in web video productions, corporate videos, films, ads and music compilations. For business inquiries and licensing please contact info@halidononline.com 👉 The HalidonMusic Sync Licensing platform is now live at https://licensing.halidonmusic.com 📧 Subscribe to our newsletter and get a 20% discount for 10 days: https://www.halidonmusic.com/en/newsletter.html ☕ If you like what we do an...

      published: 12 Mar 2021
    • Antonio Vivaldi - Winter (Full) - The Four Seasons

      The Four Seasons. Violin concertos by Antonio Vivaldi composed at the beginning of the XVIII century. No copyright infringement intended. The rights of this song go to their respective owners. **I'm talking about the recordings**

      published: 13 Sep 2010
    • Vivaldi: Four Seasons/Quattro Stagioni - Janine Jansen - Internationaal Kamermuziek Festival

      Amsterdam Sinfonietta en violiste Janine Jansen spelen Vivaldi's 'Vier jaargetijden' tijdens het Internationaal Kamermuziek Festival 2014. La Primavera/Spring/Lente Spring Movement 1 (Allegro) - 0:04 Spring Movement 2 (Largo) - 3:31 Spring Movement 3 (Allegro) - 6:02 L'estate/Summer/Zomer Summer Movement 1 (Allegro non molto) - 10:22 Summer Movement 2 (Adagio) - 15:41 Summer Movement 3 (Presto) - 17:54 L'autunno/Autumn/Herfst Autumn Movement 1 (Allegro) - 21:01 Autumn Movement 2 (Adagio molto) - 26:10 Autumn Movement 3 (Allegro) - 28:41 L'inverno/Winter Winter Movement 1 (Allegro non molto) - 32:05 Winter Movement 2 (Largo) - 35:21 Winter Movement 3 (Allegro) - 37:00 Opname: 29 juni 2014 tijdens het Internationaal Kamermuziek Festival Utrecht in TivoliVredenburg.

      published: 30 Jun 2014
    • Vivaldi Four Seasons: Winter (L'Inverno), original version. Freivogel & Voices of Music RV 297 4K

      Vivaldi Winter! The complete concerto performed on original instruments. Please subscribe to our channel https://www.youtube.com/VoicesofMusic/?sub_confirmation=1 Soundtrack on iTunes https://bit.ly/VoMWinter All Four Seasons now online! https://youtu.be/aryDMAP6oug Buy Cds https://kunaki.com/msales.asp?PublisherId=111319&pp=1 Vivaldi's Concerto for violin and strings in F Minor, "Winter" (L'Inverno, RV 297), the original version is best! Cynthia Miller Freivogel, baroque violin and the award winning Early Music ensemble Voices of Music. Voices of Music is creating a worldwide digital library of music videos, recordings and editions, free for anyone in the world. To support this vital project, which will enable new generations of people all around the world to enjoy Classical music, please...

      published: 10 Apr 2016
    • Vivaldi Four Seasons: complete, original version. Voices of Music, Freivogel, Moore, Youssefian. 4K

      Vivaldi's Four Seasons, performed on original instruments by the award winning Early Music Ensemble Voices of Music. Cynthia Miller Freivogel, Carla Moore & Alana Youssefian, soloists. Voices of Music Hanneke van Proosdij & David Tayler , directors These concertos were individually performed live in our concerts from 2015–2018, using a similar recording setup. Audience noise and applause have been removed in this version in preparation for an album release of the full version. The subtitles in this video were written 300 years ago in the form of a sonnet, presumably by Vivaldi, and engraved directly onto the music. You may view the original Italian or an English translation by using the CC button. Of all of Vivaldi’s concertos, the Four Seasons are the most widely performed of his works t...

      published: 09 Nov 2021
    • Vivaldi - Four Seasons - Italy 4K

      Lesica Relaxation presents 4K Relaxation Trip to Italy accompanied by the Four Seasons ( Italian: Le quattro stagioni) is a group of four violin concerti by Italian composer Antonio Vivaldi, each of which gives musical expression to a season of the year. Enjoy this all time masterpiece accompanied by beautiful 4K scenic relaxation film of Italy following the 4 seasons of the year. Tracklist: 1. Spring (00:00) 2. Summer (10:54) 3. Autumn (21:22) 4. Winter (33:37) Thank you for watching this video by Classical Relaxation, we hope you enjoyed it! Don’t forget to share it and subscribe to our YouTube channel. And visit our channel for other pieces by Vivaldi and by other greatest composers, all accompanied by beautiful scenery in 4K. https://www.youtube.com/channel/UC3QhWrtoWApq8X3IFKISCUQ?...

      published: 16 May 2022
    • VIVALDI - Four Seasons - Alexandra Conunova - Orchestre International de Genève

      1st Movement - Spring 1. Spring - I. Allegro 0:08 2. Spring - II. Largo 3:30 3. Spring - III. Allegro 6:00 2nd Movement - Summer 4. Summer - I. Allegro non molto 10:20 5. Summer - II. Adagio-Presto-Adagio 15:45 6. Summer - III. Presto 17:55 3rd Movement - Autumn 7. Autumn - I. Allegro 20:55 8. Autumn - II. Adagio Molto 26:10 9. Autumn - III. Allegro Pastorale 29:00 4th Movement - Winter 10. Winter - I. Allegro non molto 32:25 11. Winter - II. Largo 35:40 12. Winter - III. Allegro 37:40 Alexandra Conunova - Violin Orchestre International de Genève Recorded 12th of August 2015 in Saint-Ursanne "Piano Festival" Sound and Video : Eliyah Reichen for Beyond Groove Productions

      published: 10 Sep 2015
    • AUTUMN 🍂 VIVALDI

      🎵 Antonio Vivaldi 🍂 Autumn 🎻 The Four Seasons 🎶 🍂Concerto No. 3 in F major, Op. 8, RV 293, "Autumn" (L'autunno) x Allegro (in F major) x Adagio molto (in D minor) x Allegro (in F major) #vivaldi #autumn #fourseasons #classicalmusic #classicalmusicdaily CREDITS: Title: The Four Seasons - Autumn Author: Antonio Vivaldi Performed by: The Modena Chamber Orchestra Source: Available at Public Domain License: This work is marked as Public Domain using Public Domain Mark 1.0. https://creativecommons.org/publicdomain/mark/1.0/

      published: 22 Sep 2024
    • Vivaldi, The Four Seasons, Spring (La Primavera), 1st movement

      Classical Concert Chamber Orchestra & Ashot Tigranyan performing Vivaldi's emblematic Four Seasons.

      published: 16 Jun 2014
    developed with YouTube
    Four Seasons ~ Vivaldi
    42:00

    Four Seasons ~ Vivaldi

    • Order:
    • Duration: 42:00
    • Uploaded Date: 30 Jan 2011
    • views: 263391993
    Antonio Vivaldi - Four Seasons Budapest Strings Bela Banfalvi, Conductor You can get the exact album I have here on Amazon: http://amzn.to/1I2dNNu (affiliate). Here are the times for the specific movements: Spring 0:00 Summer 10:31 Autumn 20:59 Winter 32:48 I hope you love this recording! It is my favorite one I've heard yet. Happy Listening! AnAmericanComposer
    https://wn.com/Four_Seasons_~_Vivaldi
    Vivaldi: The Four Seasons (Orquesta Reino de Aragón)
    43:48

    Vivaldi: The Four Seasons (Orquesta Reino de Aragón)

    • Order:
    • Duration: 43:48
    • Uploaded Date: 12 Mar 2021
    • views: 7500998
    🎵 Buy "The Four Seasons" on the Official Halidon Music Store: https://bit.ly/3emUdjo 🎧 Follow the Orchestra on Spotify: https://spoti.fi/3t0yxA9 🍎 iTunes & Apple Music: https://apple.co/3hFh9ek 💿 Order "The Four Seasons" (Vinyl) on Amazon: https://lnk.to/VinylTheFourSeasons 💿 Order "The Best of Vivaldi" (3-CD Box Set) on Amazon: https://lnk.to/CDBestVivaldi These tracks are available for sync licensing in web video productions, corporate videos, films, ads and music compilations. For business inquiries and licensing please contact info@halidononline.com 👉 The HalidonMusic Sync Licensing platform is now live at https://licensing.halidonmusic.com 📧 Subscribe to our newsletter and get a 20% discount for 10 days: https://www.halidonmusic.com/en/newsletter.html ☕ If you like what we do and would like to support us, you can now buy us a coffee: https://www.buymeacoffee.com/halidonmusic. Donations will go towards keeping the YouTube channel going and funding new recording sessions with our amazing team of artists. Thank you! 🙏 Antonio Vivaldi The Four Seasons Violin: Gabor Szabo Orquesta Reino de Aragón Conductor: Ricardo Casero 00:00 Violin Concerto No. 1 in E Major, RV 269 "Spring" I. Allegro II. Largo e pianissimo sempre III. Allegro pastorale 10:28 Violin Concerto No. 2 in G Minor, RV 315 "Summer" I. Allegro non molto II. Adagio e piano - Presto e forte III. Presto 21:29 Violin Concerto No. 3 in F Major, RV 293 "Autumn" I. Allegro II. Adagio molto III. Allegro 33:15 Violin Concerto No. 4 in F Minor, RV 297 "Winter" I. Allegro non molto II. Largo III. Allegro --- The Four Seasons (Italian: Le quattro stagioni) is a group of four violin concerti by Italian composer Antonio Vivaldi, each of which gives musical expression to a season of the year. These were composed around 1718−1720, when Vivaldi was the court chapel master in Mantua. They were published in 1725 in Amsterdam, together with eight additional concerti, as Il cimento dell'armonia e dell'inventione (The Contest Between Harmony and Invention). The Four Seasons is the best known of Vivaldi's works. Though three of the concerti are wholly original, the first, "Spring", borrows patterns from a sinfonia in the first act of Vivaldi's contemporaneous opera Il Giustino. The inspiration for the concertos is not the countryside around Mantua, as initially supposed, where Vivaldi was living at the time, since according to Karl Heller they could have been written as early as 1716–1717, while Vivaldi was engaged with the court of Mantua only in 1718. They were a revolution in musical conception: in them Vivaldi represented flowing creeks, singing birds (of different species, each specifically characterized), a shepherd and his barking dog, buzzing flies, storms, drunken dancers, hunting parties from both the hunters' and the prey's point of view, frozen landscapes, and warm winter fires. Unusual for the period, Vivaldi published the concerti with accompanying sonnets (possibly written by the composer himself) that elucidated what it was in the spirit of each season that his music was intended to evoke. The concerti therefore stand as one of the earliest and most detailed examples of what would come to be called program music—in other words, music with a narrative element. Vivaldi took great pains to relate his music to the texts of the poems, translating the poetic lines themselves directly into the music on the page. For example, in the middle section of "Spring", when the goatherd sleeps, his barking dog can be heard in the viola section. The music is elsewhere similarly evocative of other natural sounds. Vivaldi divided each concerto into three movements (fast–slow–fast), and, likewise, each linked sonnet into three sections. (Source: Wikipedia) #vivaldi #thefourseasons #baroquemusic All rights reserved
    https://wn.com/Vivaldi_The_Four_Seasons_(Orquesta_Reino_De_Aragón)
    Antonio Vivaldi - Winter (Full) - The Four Seasons
    9:24

    Antonio Vivaldi - Winter (Full) - The Four Seasons

    • Order:
    • Duration: 9:24
    • Uploaded Date: 13 Sep 2010
    • views: 23510875
    The Four Seasons. Violin concertos by Antonio Vivaldi composed at the beginning of the XVIII century. No copyright infringement intended. The rights of this song go to their respective owners. **I'm talking about the recordings**
    https://wn.com/Antonio_Vivaldi_Winter_(Full)_The_Four_Seasons
    Vivaldi: Four Seasons/Quattro Stagioni - Janine Jansen - Internationaal Kamermuziek Festival
    48:55

    Vivaldi: Four Seasons/Quattro Stagioni - Janine Jansen - Internationaal Kamermuziek Festival

    • Order:
    • Duration: 48:55
    • Uploaded Date: 30 Jun 2014
    • views: 17603264
    Amsterdam Sinfonietta en violiste Janine Jansen spelen Vivaldi's 'Vier jaargetijden' tijdens het Internationaal Kamermuziek Festival 2014. La Primavera/Spring/Lente Spring Movement 1 (Allegro) - 0:04 Spring Movement 2 (Largo) - 3:31 Spring Movement 3 (Allegro) - 6:02 L'estate/Summer/Zomer Summer Movement 1 (Allegro non molto) - 10:22 Summer Movement 2 (Adagio) - 15:41 Summer Movement 3 (Presto) - 17:54 L'autunno/Autumn/Herfst Autumn Movement 1 (Allegro) - 21:01 Autumn Movement 2 (Adagio molto) - 26:10 Autumn Movement 3 (Allegro) - 28:41 L'inverno/Winter Winter Movement 1 (Allegro non molto) - 32:05 Winter Movement 2 (Largo) - 35:21 Winter Movement 3 (Allegro) - 37:00 Opname: 29 juni 2014 tijdens het Internationaal Kamermuziek Festival Utrecht in TivoliVredenburg.
    https://wn.com/Vivaldi_Four_Seasons_Quattro_Stagioni_Janine_Jansen_Internationaal_Kamermuziek_Festival
    Vivaldi Four Seasons: Winter (L'Inverno), original version. Freivogel & Voices of Music  RV 297 4K
    9:27

    Vivaldi Four Seasons: Winter (L'Inverno), original version. Freivogel & Voices of Music RV 297 4K

    • Order:
    • Duration: 9:27
    • Uploaded Date: 10 Apr 2016
    • views: 63922621
    Vivaldi Winter! The complete concerto performed on original instruments. Please subscribe to our channel https://www.youtube.com/VoicesofMusic/?sub_confirmation=1 Soundtrack on iTunes https://bit.ly/VoMWinter All Four Seasons now online! https://youtu.be/aryDMAP6oug Buy Cds https://kunaki.com/msales.asp?PublisherId=111319&pp=1 Vivaldi's Concerto for violin and strings in F Minor, "Winter" (L'Inverno, RV 297), the original version is best! Cynthia Miller Freivogel, baroque violin and the award winning Early Music ensemble Voices of Music. Voices of Music is creating a worldwide digital library of music videos, recordings and editions, free for anyone in the world. To support this vital project, which will enable new generations of people all around the world to enjoy Classical music, please consider a tax-deductible donation or sponsor a recording project. With your help, anything is possible! https://voicesofmusic.org/donate.html Voices of Music continues our groundbreaking work as a pioneer in the new field of Ultra-High definition video. Although the Four Seasons is the most recorded work in Classical music, this is the first time that the work is made freely available in this format, and performed on period instruments. Your donations will keep the presses running! Voices of Music and the instruments in this video Hanneke van Proosdij & David Tayler, directors Maria Caswell, baroque viola, anonymous, Mittenwald, c1800 Cynthia Miller Freivogel, baroque violin by Johann Paul Schorn, Salzburg, Austria, 1715 Lisa Grodin, baroque violin by Paulo Antonio Testore, Larga di Milano, Italy, 1736 Katherine Heater, baroque organ by Winold van der Putten, Finsterwolde, Netherlands, 2004, after early 18th-century northern German instruments Carla Moore, baroque violin by Johann Georg Thir, Vienna, Austria, 1754 Maxine Nemerovski, baroque violin by Joseph Gaffino, Paris, 1769 Farley Pearce, violone by George Stoppani, Manchester, 1985, after Amati, 1560 Hanneke van Proosdij, Italian single manual harpsichord by Johannes Klinkhamer, Amsterdam, 2000, after Cristofori, Florence, c1725 Elisabeth Reed, baroque cello, anonymous, 1673 David Tayler, archlute by Andreas von Holst, Munich, 2012 after Magno Tieffenbrucker, Venice, c1610 Tanya Tomkins, baroque cello, Lockey Hill, London, England, 1798 Gabrielle Wunsch, baroque violin by Lorenzo Carcassi, Florence, Italy, 1765 0:00 Allegro non molto 3:31 Largo 5:28 Allegro 9:24 Credits #Kafka #Vivaldi #FourSeasons #wednesdayaddams
    https://wn.com/Vivaldi_Four_Seasons_Winter_(L'Inverno),_Original_Version._Freivogel_Voices_Of_Music_Rv_297_4K
    Vivaldi Four Seasons: complete, original version. Voices of Music, Freivogel, Moore, Youssefian. 4K
    42:04

    Vivaldi Four Seasons: complete, original version. Voices of Music, Freivogel, Moore, Youssefian. 4K

    • Order:
    • Duration: 42:04
    • Uploaded Date: 09 Nov 2021
    • views: 4777628
    Vivaldi's Four Seasons, performed on original instruments by the award winning Early Music Ensemble Voices of Music. Cynthia Miller Freivogel, Carla Moore & Alana Youssefian, soloists. Voices of Music Hanneke van Proosdij & David Tayler , directors These concertos were individually performed live in our concerts from 2015–2018, using a similar recording setup. Audience noise and applause have been removed in this version in preparation for an album release of the full version. The subtitles in this video were written 300 years ago in the form of a sonnet, presumably by Vivaldi, and engraved directly onto the music. You may view the original Italian or an English translation by using the CC button. Of all of Vivaldi’s concertos, the Four Seasons are the most widely performed of his works today. Vivaldi managed to change the course of music history by writing these four concertos; composers had set the seasons, the hours, the months and many other programs of music in the 17th century, but no one had written a set like the Four Seasons. Vivaldi did not just create a new kind of musical program, he refined the way in which all of the elements of the program work with the music, and he spun his programmatic flourishes over a very detailed harmonic and contrapuntal plan. Composers had previously written music that shivered with the cold, created storms and winds, imitated birds, and so on, but not to the extent and not with the careful planning of these concertos. Vivaldi provided a detailed commentary for his work in the form of individual sonnets keyed exactly to different movements in the music, along with tempo indications, ornaments and articulation marks (please see the text and translations opposite the program). It’s an interesting question as to how to interpret Vivaldi’s design, and part of the charm of the works is that the program is very clear, yet the possibilities are endless: the main challenge is to choose between a mimetic and allegorical interpretation. In a mimetic interpretation, the performers would use extended techniques on their instruments to imitate as directly as possible the sounds of the program, including chattering teeth, raindrops, wind and stamping feet. In an allegorical performance, the players would play in such a way as to allow the listeners to use their imaginations to freely recreate the program: each musical line could convey a different layer of meaning. Similarly, by using different textures and phrasing in each of the musical lines as well the different sections, the performers can build up a tapestry of textures. It’s clear from contemporaneous accounts that a purely mimetic performance was frowned upon as too obvious, yet it is also clear that in Italy and Germany, string players were inventing new techniques to include a wider variety of sounds in their playing. Thus, it is quite possible to read the words “raindrops” and create a new, imaginative musical version of a rainy, wind-swept landscape without presenting the music pre-interpreted for the viewer. Spring: Allegro - 0:00 Largo - 3:32 Allegro - 6:13 Summer: Allegro non molto - 10:09 Adagio - 15:31 Presto - 17:46 Autumn: Allegro - 20:42 Adagio molto - 26:14 Allegro - 28:25 Winter: Allegro non molto - 31:56 Largo - 35:29 Allegro - 37:25 Credits 40:44 #Vivaldi #FourSeasons
    https://wn.com/Vivaldi_Four_Seasons_Complete,_Original_Version._Voices_Of_Music,_Freivogel,_Moore,_Youssefian._4K
    Vivaldi - Four Seasons - Italy 4K
    42:45

    Vivaldi - Four Seasons - Italy 4K

    • Order:
    • Duration: 42:45
    • Uploaded Date: 16 May 2022
    • views: 90391
    Lesica Relaxation presents 4K Relaxation Trip to Italy accompanied by the Four Seasons ( Italian: Le quattro stagioni) is a group of four violin concerti by Italian composer Antonio Vivaldi, each of which gives musical expression to a season of the year. Enjoy this all time masterpiece accompanied by beautiful 4K scenic relaxation film of Italy following the 4 seasons of the year. Tracklist: 1. Spring (00:00) 2. Summer (10:54) 3. Autumn (21:22) 4. Winter (33:37) Thank you for watching this video by Classical Relaxation, we hope you enjoyed it! Don’t forget to share it and subscribe to our YouTube channel. And visit our channel for other pieces by Vivaldi and by other greatest composers, all accompanied by beautiful scenery in 4K. https://www.youtube.com/channel/UC3QhWrtoWApq8X3IFKISCUQ?sub_confirmation=1 Performed by The Modena Chamber Orchestra 🎶Music source: Violin Concerto in E major, RV 269 'Spring': https://musopen.org/music/download/13186/ Violin Concerto in G minor, RV 315 'Summer': https://musopen.org/music/download/13185/ Violin Concerto in F major, RV 293 'Autumn': https://musopen.org/music/download/13187/ Violin Concerto in F minor, RV 297 'Winter': https://musopen.org/music/download/13184/ Licence: https://creativecommons.org/publicdomain/mark/1.0/ ►All rights belong to their respective owners. ✔ This video was given a special license directly from the artists and the right holders. #vivaldi #fourseasons #halidonmusic
    https://wn.com/Vivaldi_Four_Seasons_Italy_4K
    VIVALDI - Four Seasons - Alexandra Conunova - Orchestre International de Genève
    41:49

    VIVALDI - Four Seasons - Alexandra Conunova - Orchestre International de Genève

    • Order:
    • Duration: 41:49
    • Uploaded Date: 10 Sep 2015
    • views: 16756896
    1st Movement - Spring 1. Spring - I. Allegro 0:08 2. Spring - II. Largo 3:30 3. Spring - III. Allegro 6:00 2nd Movement - Summer 4. Summer - I. Allegro non molto 10:20 5. Summer - II. Adagio-Presto-Adagio 15:45 6. Summer - III. Presto 17:55 3rd Movement - Autumn 7. Autumn - I. Allegro 20:55 8. Autumn - II. Adagio Molto 26:10 9. Autumn - III. Allegro Pastorale 29:00 4th Movement - Winter 10. Winter - I. Allegro non molto 32:25 11. Winter - II. Largo 35:40 12. Winter - III. Allegro 37:40 Alexandra Conunova - Violin Orchestre International de Genève Recorded 12th of August 2015 in Saint-Ursanne "Piano Festival" Sound and Video : Eliyah Reichen for Beyond Groove Productions
    https://wn.com/Vivaldi_Four_Seasons_Alexandra_Conunova_Orchestre_International_De_Genève
    AUTUMN 🍂 VIVALDI
    12:14

    AUTUMN 🍂 VIVALDI

    • Order:
    • Duration: 12:14
    • Uploaded Date: 22 Sep 2024
    • views: 248
    🎵 Antonio Vivaldi 🍂 Autumn 🎻 The Four Seasons 🎶 🍂Concerto No. 3 in F major, Op. 8, RV 293, "Autumn" (L'autunno) x Allegro (in F major) x Adagio molto (in D minor) x Allegro (in F major) #vivaldi #autumn #fourseasons #classicalmusic #classicalmusicdaily CREDITS: Title: The Four Seasons - Autumn Author: Antonio Vivaldi Performed by: The Modena Chamber Orchestra Source: Available at Public Domain License: This work is marked as Public Domain using Public Domain Mark 1.0. https://creativecommons.org/publicdomain/mark/1.0/
    https://wn.com/Autumn_🍂_Vivaldi
    Vivaldi, The Four Seasons, Spring (La Primavera), 1st movement
    3:17

    Vivaldi, The Four Seasons, Spring (La Primavera), 1st movement

    • Order:
    • Duration: 3:17
    • Uploaded Date: 16 Jun 2014
    • views: 3326670
    Classical Concert Chamber Orchestra & Ashot Tigranyan performing Vivaldi's emblematic Four Seasons.
    https://wn.com/Vivaldi,_The_Four_Seasons,_Spring_(La_Primavera),_1St_Movement
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Four Seasons ~ Vivaldi
      42:00
      Four Seasons ~ Vivaldiremove from playlist
    • Vivaldi: The Four Seasons (Orquesta Reino de Aragón)
      43:48
      Vivaldi: The Four Seasons (Orquesta Reino de Aragón)remove from playlist
    • Antonio Vivaldi - Winter (Full) - The Four Seasons
      9:24
      Antonio Vivaldi - Winter (Full) - The Four Seasonsremove from playlist
    • Vivaldi: Four Seasons/Quattro Stagioni - Janine Jansen - Internationaal Kamermuziek Festival
      48:55
      Vivaldi: Four Seasons/Quattro Stagioni - Janine Jansen - Internationaal Kamermuziek Festivalremove from playlist
    • Vivaldi Four Seasons: Winter (L'Inverno), original version. Freivogel & Voices of Music  RV 297 4K
      9:27
      Vivaldi Four Seasons: Winter (L'Inverno), original version. Freivogel & Voices of Music RV 297 4Kremove from playlist
    • Vivaldi Four Seasons: complete, original version. Voices of Music, Freivogel, Moore, Youssefian. 4K
      42:04
      Vivaldi Four Seasons: complete, original version. Voices of Music, Freivogel, Moore, Youssefian. 4Kremove from playlist
    • Vivaldi - Four Seasons - Italy 4K
      42:45
      Vivaldi - Four Seasons - Italy 4Kremove from playlist
    • VIVALDI - Four Seasons - Alexandra Conunova - Orchestre International de Genève
      41:49
      VIVALDI - Four Seasons - Alexandra Conunova - Orchestre International de Genèveremove from playlist
    • AUTUMN 🍂 VIVALDI
      12:14
      AUTUMN 🍂 VIVALDIremove from playlist
    • Vivaldi, The Four Seasons, Spring (La Primavera), 1st movement
      3:17
      Vivaldi, The Four Seasons, Spring (La Primavera), 1st movementremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Four Seasons ~ Vivaldi

    Antonio Vivaldi - Four Seasons Budapest Strings Bela Banfalvi, Conductor You can get the exact album I have here on Amazon: http://amzn.to/1I2dNNu (affiliate). Here are the times for the specific movements: Spring 0:00 Summer 10:31 Autumn 20:59 Winter 32:48 I hope you love this recording! It is my favorite one I've heard yet. Happy Listening! AnAmericanComposer
    42:00
    Four Seasons ~ Vivaldi
    Antonio Vivaldi - Four Seasons Budapest Strings Bela Banfalvi, Conductor You can get the ...
    published: 30 Jan 2011
    Play in Full Screen
    43:48
    Vivaldi: The Four Seasons (Orquesta Reino de Aragón)
    🎵 Buy "The Four Seasons" on the Official Halidon Music Store: https://bit.ly/3emUdjo 🎧 Fol...
    published: 12 Mar 2021
    Play in Full Screen
    9:24
    Antonio Vivaldi - Winter (Full) - The Four Seasons
    The Four Seasons. Violin concertos by Antonio Vivaldi composed at the beginning of the XVI...
    published: 13 Sep 2010
    Play in Full Screen
    48:55
    Vivaldi: Four Seasons/Quattro Stagioni - Janine Jansen - Internationaal Kamermuziek Festival
    Amsterdam Sinfonietta en violiste Janine Jansen spelen Vivaldi's 'Vier jaargetijden' tijde...
    published: 30 Jun 2014
    Play in Full Screen
    9:27
    Vivaldi Four Seasons: Winter (L'Inverno), original version. Freivogel & Voices of Music RV 297 4K
    Vivaldi Winter! The complete concerto performed on original instruments. Please subscribe ...
    published: 10 Apr 2016
    Play in Full Screen
    42:04
    Vivaldi Four Seasons: complete, original version. Voices of Music, Freivogel, Moore, Youssefian. 4K
    Vivaldi's Four Seasons, performed on original instruments by the award winning Early Music...
    published: 09 Nov 2021
    Play in Full Screen
    42:45
    Vivaldi - Four Seasons - Italy 4K
    Lesica Relaxation presents 4K Relaxation Trip to Italy accompanied by the Four Seasons ( I...
    published: 16 May 2022
    Play in Full Screen
    41:49
    VIVALDI - Four Seasons - Alexandra Conunova - Orchestre International de Genève
    1st Movement - Spring 1. Spring - I. Allegro 0:08 2. Spring - II. Largo 3:30 3. Spring - I...
    published: 10 Sep 2015
    Play in Full Screen
    12:14
    AUTUMN 🍂 VIVALDI
    🎵 Antonio Vivaldi 🍂 Autumn 🎻 The Four Seasons 🎶 🍂Concerto No. 3 in F major, Op. 8, RV 293...
    published: 22 Sep 2024
    Play in Full Screen
    3:17
    Vivaldi, The Four Seasons, Spring (La Primavera), 1st movement
    Classical Concert Chamber Orchestra & Ashot Tigranyan performing Vivaldi's emblematic Four...
    published: 16 Jun 2014
    Play in Full Screen

    The Four Seasons (Vivaldi)

    The Four Seasons (Italian: Le quattro stagioni) is a group of four violin concerti by Italian composer Antonio Vivaldi, each of which gives a musical expression to a season of the year. They were written about 1723 and were published in 1725 in Amsterdam, together with eight additional violin concerti, as Il cimento dell'armonia e dell'inventione ("The Contest Between Harmony and Invention").

    The Four Seasons is the best known of Vivaldi's works. Unusually for the time, Vivaldi published the concerti with accompanying poems (possibly written by Vivaldi himself) that elucidated what it was about those seasons that his music was intended to evoke. It provides one of the earliest and most-detailed examples of what was later called program music—music with a narrative element.

    Vivaldi took great pains to relate his music to the texts of the poems, translating the poetic lines themselves directly into the music on the page. In the middle section of the Spring concerto, where the goatherd sleeps, his barking dog can be marked in the viola section. Other natural occurrences are similarly evoked. Vivaldi separated each concerto into three movements, fast-slow-fast, and likewise each linked sonnet into three sections. His arrangement is as follows:

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×