From 4aaa1f7cf9a6d8a9094bbdd027456d36e3c3ec12 Mon Sep 17 00:00:00 2001 From: James Robert Date: Tue, 18 Aug 2015 10:35:22 -0400 Subject: [PATCH] kill smart-quotes in code --- API.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/API.markdown b/API.markdown index 3b78ef45..b19ad51e 100644 --- a/API.markdown +++ b/API.markdown @@ -68,8 +68,8 @@ The first argument is the path (as a string) of the file to read, **or** a file **Supported keyword arguments**: -- `format` | example: `”aif”` | default: `”mp3”` - Format of the output file. Supports `”wav”` and `”raw”` natively, requires ffmpeg for all other formats. `”raw”` files require 3 additional keyword arguments, `sample_width`, `frame_rate`, and `channels`, denoted below with: **`raw` only**. This extra info is required because raw audio files do not have headers to include this info in the file itself like wav files do. +- `format` | example: `"aif"` | default: `"mp3"` + Format of the output file. Supports `"wav"` and `"raw"` natively, requires ffmpeg for all other formats. `"raw"` files require 3 additional keyword arguments, `sample_width`, `frame_rate`, and `channels`, denoted below with: **`raw` only**. This extra info is required because raw audio files do not have headers to include this info in the file itself like wav files do. - `sample_width` | example: `2` **`raw` only** — Use `1` for 8-bit audio `2` for 16-bit (CD quality) and `4` for 32-bit. It’s the number of bytes per sample. - `channels` | example: `1`