• Added basic README file.
1 parent 6dd690d commit f028ca108dc1cd8ee0175fb8696825c8bd81b111
Nigel Stanger authored on 21 Sep 2016
Showing 2 changed files
View
27
README.md 0 → 100644
# process_podcast
 
This script enables you to assemble an ingterated podcast of a lecture or class from several different inputs, including:
 
* recorded audio
* screen recordings
* other video
* JPEG images representing individual lecture slides
* a PDF containing the lecture slides
 
Audio and video may come from the same file, or from separate files. You also have the ability to insert small joiner sections of audio and video between major segments of the podcast. You can even configure the joiner so that it repeats the last frame of the previous segment for the desired duration.
 
For help on command line options: `process_podcast.py --help`.
 
For help on the podcast configuration file format, see the [configuration file documentation][].
 
 
## Requirements
 
* Python 2.7 series. (Not tested with Python 3.)
* The `pyparsing` module. Linux: `pip install pyparsing`, `easy_install pyparsing`, or whatever other method you normally use to install Python modules; macOS (MacPorts): `port install py-parsing`. Also see the [pyparsing documentation][].
* The `pexpect module`. Linux: `pip install pexpect`, `easy_install pexpect`, or whatever other method you normally use to install Python modules; macOS (MacPorts): `port install py-pexpect`. Also see the [pexpect documentation][].
 
[pyparsing documentation]: http://pyparsing.wikispaces.com/ "pyparsing documentation"
[pexpect documentation]: https://pexpect.readthedocs.io/en/stable/ "pexpect documentation"
[configuration file documentation]: config_help.md "configuration file documentation"
View
2
■■■
config_help.md
 
Input specifications
--------------------
 
These are of the form: `[type:filename:num]` (the `[]` are delimiters)
These are of the form: `[type:filename:num]` (the `[ ]` are delimiters)
 
`type` is mandatory, and must be one of `a`/`audio`, `v`/`video`, or `f`/`frame`. Audio and video inputs are self-explanatory. Frame inputs are special type of video input based on a single still image, which could be from a JPEG image (preferred), or automatically extracted from a video source or PDF. You need to specify a frame number for the latter (see below).
 
`filename` is mandatory for frame inputs. The special filename `^` indicates that the frame is to be extracted from the immediately preceding segment, so segment order within the configuration file is important for these. If youve specified default input files using `--audio` or `--video` on the command line, you can omit `filename` for audio and video inputs (as appropriate), and the script will use the default inputs. If there are no default input files specified, or you want to input from a file other than the default, then `filename` is required.