Artists' Blood
Artists' Blood (German: Artistenblut) is a 1949 West German comedy film directed by Wolfgang Wehrum and starring Hans Richter, Dorit Kreysler and Fritz Odemar.[1]
Artists' Blood | |
---|---|
![]() | |
Directed by | Wolfgang Wehrum |
Written by |
|
Starring | |
Music by | Lotar Olias |
Cinematography | |
Edited by | Wolfgang Wehrum |
Production company |
|
Distributed by | Ring-Film |
Release date | 26 August 1949 |
Running time | 96 minutes |
Country | West Germany |
Language | German |
The film's art direction was by Kurt Herlth and Carl Ludwig Kirmse.
Cast
- Hans Richter as Clown Antonio & Anton Lammbein
- Dorit Kreysler as Lissy Schilling - Dolmetscherin
- Fritz Odemar as Steffens - Fabrikbesitzer
- Karin Jacobsen as Hannelore - seine Tochter
- Hubert von Meyerinck as Ricardo Pisetti - Manager
- Josef Sieber as Canossa - Garderobier
- Alexis as Liebling - Inspizient
- Petra Unkel as Gesine Pagel
- Luise Franke-Booch as Mutter Lammbein
- Hans Leibelt as Schröder - Portier im 'Continental'
- Carl Voscherau as Portier im 'Hotel Roß'
- Grethe Weiser as Die Vortragskünstlerin
- Walter Giller
gollark: It's in unsafe™ C, so you could make a mistake and doom all mankind.
gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
References
- Baer p. 72
Bibliography
- Baer, Hester. Dismantling the Dream Factory: Gender, German Cinema, and the Postwar Quest for a New Film Language. Berghahn Books, 2012.
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.