Michael Schanze

Michael Schanze (born 15 January 1947 in Tutzing) is a German television presenter, actor and singer.

Michael Schanze
Schanze in 2016
Born (1947-01-15) 15 January 1947
OccupationGerman television presenter, actor and singer
Children3

Life

Schanze studied from 1967 to 1970 at University of Television and Film Munich. Schanze works as television presenter on German broadcasters. He is also a singer of Schlager songs.[1] Schanze has been divorced since 2000 and has three sons.[2]

Filmography

Television

  • 1972: 'Hätten Sie heut Zeit für mich?
  • 1977–1985: 1, 2 oder 3
  • 1983: Start ins Glück (ARD)
  • 1985–1988: Telefant
  • 1988–1995: Flitterabend
  • 1989: Spiel ohne Grenzen
  • Michael-Schanze-Show (ZDF)
  • Wir warten auf's Christkind
  • Showexpress
  • Mobile
  • Kinderquatsch mit Michael
  • Nur keine Hemmungen
  • Herzlichen Glückwunsch
  • Telezirkus
  • Wunderland

Films

  • 1971: Außer Rand und Band am Wolfgangsee, director: Franz Antel
  • 1972: Sie nannten ihn Krambambuli, director: Franz Antel
  • 1972: Die lustigen Vier von der Tankstelle, director: Franz Antel
  • 1983: Lass das – ich hass' das, director: Horst Hächler
  • 2010: Dahoam is Dahoam (TV serie)

Songs

  • 1968: Ich bin kein Lord and Es muss nicht Frühling sein
  • 1970: Ich hab dich lieb
  • 1971: Solang wir zwei uns lieben
  • 1971: Wer dich sieht, hat dich lieb
  • 1972: Oh wie wohl ist mir
  • 1972: Sonntag im Zoo
  • 1973: Wo du bist, will ich sein
  • 1973: Ich lass dich nie mehr aus den Augen
  • 1975: Du hast geweint
  • 1975: Hell wie ein Diamant
  • 1976: Nie mehr
  • 1976: Es ist morgen und ich liebe dich noch immer
  • 1977: Ich bin dein Freund
  • 1978: Schalt mal dein Herz auf Empfang – Song of ARD-Fernsehlotterie
  • 1978: Sonne scheint in alle Herzen
  • 1982: Olé España (D #10) – together with Germany national football team
  • 1982: Wie ich dich liebe

Awards

  • 1973 – Bambi
  • 1975 – Bravo Otto in Bronze, category TV moderator
  • 1980 – Bambi
  • 1990 – Bambi
  • 1995 – Telestar Beste Moderation Unterhaltung for „Flitterabend“
gollark: I should assign unique IDs to the other sandbox escape bugs.
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.

References

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