Ritual (Peter Frohmader album)
Ritual is the second studio album by Peter Frohmader, released in 1986 by Multimood.[1][2]
Ritual | ||||
---|---|---|---|---|
Studio album by | ||||
Released | 1986 | |||
Recorded | 1985 | |||
Studio | Nekropolis Studio (Munich, DE) | |||
Genre | Progressive electronic, dark wave | |||
Length | 45:48 | |||
Label | Multimood | |||
Producer | Peter Frohmader | |||
Peter Frohmader chronology | ||||
|
Track listing
All music is composed by Peter Frohmader.
No. | Title | Length |
---|---|---|
1. | "Monolith" | 5:39 |
2. | "Trance" | 5:04 |
3. | "Magic" | 3:50 |
4. | "Arrival" | 5:19 |
5. | "Nightmare" | 2:50 |
No. | Title | Length |
---|---|---|
1. | "Ecstasy" | 11:17 |
2. | "Departure" | 5:38 |
3. | "Firmament" | 5:29 |
Personnel
Adapted from the Ritual liner notes.[3]
- Peter Frohmader – electronics, production, engineering, cover art
- Stephan Manus – violin (A1, A4)
- Stefan Plett – alto saxophone (B2, B3)
Release history
Region | Date | Label | Format | Catalog |
---|---|---|---|---|
Sweden | 1986 | Multimood | LP | MRC 001 |
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.
gollark: Any good static-file server will ALREADY probably support the `Range` header.
References
- "Peter Frohmader: Ritual > Overview". Allmusic. Retrieved July 31, 2015.
- Freeman, Alan; Freeman, Steve (June 1986). "Peter Frohmader". Audion. Audion Publications (1).
- Ritual (sleeve). Peter Frohmader. Göteborg, Sweden: Multimood. 1986.CS1 maint: others (link)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.