Symphony in E-flat (Stravinsky)

The Symphony in E-flat, Op. 1, is the first published work composed by Igor Stravinsky during his apprenticeship with Nikolai Rimsky-Korsakov. It is also his first composition for orchestra. Of classical structure, it is broadly influenced by Rimsky-Korsakov, Glazunov, Tchaikovsky and Wagner.[1] It was composed in 1905–1907 and revised in 1913. It lasts for about forty minutes.

History

The score bears the dedication "To my dear teacher N. A. Rimsky-Korsakov". A private performance was given on 27 April 1907 by the St. Petersburg Court Orchestra conducted by H. Wahrlich, in a concert that also included the first performance of Faun and Shepherdess.[2] Stravinsky later recalled that both Rimsky-Korsakov and Glazunov considered the orchestration "too heavy".[1] The first public performance was conducted by Felix Blumenfeld on 22 January 1908. A revised version was conducted by Ernest Ansermet on 2 April 1914, and the composer conducted this version in his later performances.[2]

Instrumentation

The symphony is scored for 3 flutes (3rd doubling piccolo), 2 oboes, 3 clarinets, 2 bassoons, 4 horns, 3 trumpets, 3 trombones, tuba, timpani, percussion and strings.[2]

Movements

Allegro moderato

The first movement is in sonata form.[1]

Scherzo

This movement was sometimes played alone at performances of the Ballets Russes. Stravinsky incorporated into it a Russian folk song similar to one he used in Petrushka.[2]

Largo

The longest movement of the symphony, lasting almost fifteen minutes.

Finale

The finale is a rondo.[1] As in the second movement, Stravinsky includes a popular song ("Tchitcher-Yatcher"). He used it again in his Trois petites chansons of 1913.[2]

Discography

gollark: Fine.```python# from here: https://github.com/Rapptz/RoboDanny/blob/18b92ae2f53927aedebc25fb5eca02c8f6d7a874/cogs/utils/time.pyshort_timedelta_regex = re.compile("""(?:(?P<years>[0-9]{1,8})(?:years?|y))? # e.g. 2y(?:(?P<months>[0-9]{1,8})(?:months?|mo))? # e.g. 2months(?:(?P<weeks>[0-9]{1,8})(?:weeks?|w))? # e.g. 10w(?:(?P<days>[0-9]{1,8})(?:days?|d))? # e.g. 14d(?:(?P<hours>[0-9]{1,8})(?:hours?|h))? # e.g. 12h(?:(?P<minutes>[0-9]{1,8})(?:minutes?|m))? # e.g. 10m(?:(?P<seconds>[0-9]{1,8})(?:seconds?|s))? # e.g. 15s """, re.VERBOSE)def parse_short_timedelta(text): match = short_timedelta_regex.fullmatch(text) if match is None or not match.group(0): raise ValueError("parse failed") data = { k: int(v) for k, v in match.groupdict(default=0).items() } return datetime.datetime.utcnow() + relativedelta(**data)cal = parsedatetime.Calendar()def parse_humantime(text): time_struct, parse_status = cal.parse(text) if parse_status == 1: return datetime.datetime(*time_struct[:6]) else: raise ValueError("parse failed")def parse_time(text): try: return datetime.datetime.strptime(text, "%d/%m/%Y") except: pass try: return parse_short_timedelta(text) except: pass try: return parse_humantime(text) except: pass raise ValueError("could not parse time")```
gollark: ... no.
gollark: The time parsing logic is kind of inconsistent.
gollark: ++remind 9h32m no you aren't.
gollark: ++magic sql select * from reminders order by id desc limit 1

References

  1. Walsh, Stephen (1988). The Music of Stravinsky. Oxford: Oxford University Press. pp. 8–11. ISBN 0-19-816375-4.
  2. White, Eric Walter (1979). Stravinsky: the Composer and his Works (2nd ed.). Berkeley and Los Angeles: University of California Press. pp. 29 &amp, 176–177. ISBN 0-520-03985-8.
  3. Works of Igor Stravinsky. 22-CD set. Sony Classical 88697103112. New York: Sony BMG Music Entertainment, 2007. Disc 8, "Stravinsky – Symphony in E-flat, Rehearsals & Talks" 88697103112-08.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.