fflewddur / tivolibre

Java app and library for decoding TiVo files to standard MPEG files.
GNU General Public License v3.0
34 stars 4 forks source link

Allow use of stdin/stdout for pipelines #15

Closed mackworth closed 8 years ago

mackworth commented 8 years ago

This pull request fixes the issue raised in Batch Usage #14. Specifically, it send debug/error info to stderr instead of stdout, and avoids use of skipBytes, as that generates IOException with stdin (at least on the Mac). I'm not a Java programmer, so my apologies if there's something not right here. In particular, I couldn't find a simpler way to specify system.err output without creating a whole new logger.

mackworth commented 8 years ago

e0b31e5: Added logback.xml and rolled back logger changes to DecoderApp.java

fflewddur commented 8 years ago

This looks great, thanks @mackworth!