Home / Release
Name Modified Size InfoDownloads / Week
Parent folder
readme.txt 2010-07-29 2.7 kB
Episodic.exe 2010-07-29 15.4 kB
Totals: 2 Items   18.0 kB 0
Episodic will write a file labeled "output.txt" in the same directory. Each
line is a different episode name.

The following is a list of commands that are used to generate the file
name list. Running the program will give prompts to enter input. All
inputs can be given via command line flags (e.g. Episodic.exe -p "My prefix.").
Any unspecified fields will be asked, unless the 'quiet' flag is called, in
which case they will be filled with default items. See examples below.


No Width		-n
Quiet			-q

NOTE: Quiet will produce no entry on the display. In that, no prompts will be
	given and defaults will be taken if vaule not specified in command flags.
	No width will only disable the width (0 padding) prompts and assume
	no other defaults.

Prefix			-p		default: blank
Season			-s		default: 0
Season Width	-sl		default: Season size (min 2)
Episode Count	-e		default: 0
Episode Width	-el		default: Episode Count size (min 2)
Suffix			-x		default: blank

NOTE: Episode Count of 0 will result in an empty output.
	(No episodes, no index)
	
NOTE: Width defines the width (0 padding) of a number (e.g. 5 with width 2
	becomes 05). Width will be expanded if required. For instance, 100 with
	width 2	will be forced to width 3, as there are more than two digits.

Name structure is as follows:

	[Prefix]S[Season]E[01][Suffix]
	[Prefix]S[Season]E[02][Suffix]
	...
	[Prefix]S[Season]E[Episode Count][Suffix]

	
Examples:

Episodic.exe -p "House." -s 2 -sl 3 -e 4 -el 3 -x ".avi"

	Display:
		
		Welcome to Episodic. This program is designed to make it easy to
		generate a list of file names for TV episodes. Be sure to include
		white spaces in prefix and suffix if needed. Episodic currently will
		deal with one season at a time.

		House.S002E001.avi
		House.S002E002.avi
		House.S002E003.avi
		House.S002E004.avi
		Opperation complete. Press enter to continue.

	output.txt:
	
		House.S002E001.avi
		House.S002E002.avi
		House.S002E003.avi
		House.S002E004.avi

Episodic.exe -p "Mythbusters" -s 2 -e 3 -x ".mkv" -n

	Display:
		
		Welcome to Episodic. This program is designed to make it easy to
		generate a list of file names for TV episodes. Be sure to include
		white spaces in prefix and suffix if needed. Episodic currently will
		deal with one season at a time.

		MythbustersS02E01.mkv
		MythbustersS02E02.mkv
		MythbustersS02E03.mkv
		Opperation complete. Press enter to continue.
		
	output.txt:
	
		MythbustersS02E01.mkv
		MythbustersS02E02.mkv
		MythbustersS02E03.mkv
		
Episodic.exe -e 5 -q

	Display:
	
		<none>
		
	output.txt:
	
		S00E01
		S00E02
		S00E03
		S00E04
		S00E05
Source: readme.txt, updated 2010-07-29