m4v & avi support only for 0.1 & 0.11 versions
A simple screencast application leveraging ffmpeg
Brought to you by:
cjc01
Pre-alpha versions 0.1 and 0.11 have a limitation of which file format can be encoded. For now, m4v is supported with version 0.1 and avi is supported with version 0.11.
Work-around proior to version 0.12:
This is do strictly to the coding, where the extension is prepended. This can be changed simply in the code if one desires in main.c before running ./configure make or make install.
char *file_extension = ".avi";
Change *avi to whatever suites your ffmpeg parameters.
In the next version, the file extension will be required as the last parameter passed to Simple Screencast Session to avoid this issue.
Thanks,
CJ