Paris Jazz Piano
Paris Jazz Piano is a studio album by jazz pianist Michel Legrand, released in 1960 on Philips Records.[1]
Paris Jazz Piano | |
---|---|
Studio album by | |
Released | 1960 |
Recorded | October 20-21 & 23, & November 9, 1959 Blanqui Studio, Paris |
Genre | Jazz |
Length | 31:07 |
Label | Philips LP 76519 |
Producer | Daniel Richard |
Track listing
- "Sous les ponts de Paris" (Jean Rodor, Scotto) - 2:55
- "Paris in the Spring" (Revel, Gordon) - 3:32
- "April in Paris" (Harburg, Duke) - 5:14
- "Sous le ciel de Paris" (Hubert Giraud, Jean Dréjac) - 1:52
- "Paris Canaille" (Ferré) - 2:04
- "Paris, je t'aime... d'amour" (Clifford Grey, Henri Battaille, Victor Schertzinger) - 4:24
- "I Love Paris" (Porter) - 2:52
- "The Last Time I Saw Paris" (Kern, Hammerstein II) - 2:25
- "Moulin Rouge" (Auric, Engvick) - 2:41
- "La Vie en rose" (Piaf, Louiguy) - 3:08
- Recorded on October 20 (5, 7, 10), October 21 (1, 9), October 23 (8) and November 9 (2, 3, 6), 1959.
Personnel
- Michel Legrand - piano
- Guy Pedersen - bass
- Gus Wallez - drums, bongos
gollark: >>backups
gollark: tio!debug
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
References
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.