Skip to content

Commit

Permalink
fix: ts downloads should use a ts extension not a mpg exteion
Browse files Browse the repository at this point in the history
this was not a issue if you use tivolibre but it was with tivodecode.  It might also be a issue with directshow dump.

fix #18
  • Loading branch information
lart2150 committed Jan 7, 2024
1 parent 155397d commit e2a2793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/tivo/kmttg/main/jobMonitor.java
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ public static void LaunchJobs(Hashtable<String,Object> specs) {
// Download mode
// NOTE: Be careful using basename function here - need to honor file naming with folders
tivoFile = outputDir + s + startFile;
mpegFile = string.replaceSuffix(startFile, ".mpg");
mpegFile = string.replaceSuffix(startFile, TSDownload == 1 ? ".ts" : ".mpg");
mpegFile = mpegDir + s + mpegFile;
metaFile = mpegFile + ".txt";

Expand Down

0 comments on commit e2a2793

Please sign in to comment.