Files
cristallina/acquisition/Untitled.ipynb

72 lines
1.6 KiB
Plaintext

{
"cells": [
{
"cell_type": "code",
"execution_count": 3,
"id": "bc11382b-bbae-4541-b117-58cc4cafd737",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Playing WAVE '/tmp/ImperialMarch60.wav' : Signed 16 bit Little Endian, Rate 22050 Hz, Mono\n"
]
}
],
"source": [
"import subprocess\n",
"res = subprocess.run([\"aplay\", \"/tmp/ImperialMarch60.wav\"])\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "baf1c729-d9e3-484a-bf51-b9eaa5e6f3ff",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Playing WAVE '/tmp/ImperialMarch60.wav' : Signed 16 bit Little Endian, Rate 22050 Hz, Mono\n"
]
}
],
"source": [
"proc = subprocess.Popen([\"aplay /tmp/ImperialMarch60.wav\"], shell=True,\n",
" stdin=None, stdout=None, stderr=None, close_fds=True)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "436cfe45-c941-45fa-82af-ad1a8b819eb3",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python [conda env:conda-slic]",
"language": "python",
"name": "conda-env-conda-slic-py"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.18"
}
},
"nbformat": 4,
"nbformat_minor": 5
}