Skip to content

Commit

Permalink
Lots of bug fixes and improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
seab authored and seab committed Apr 12, 2023
1 parent f3539f2 commit d39e18b
Show file tree
Hide file tree
Showing 3 changed files with 129 additions and 150 deletions.
8 changes: 4 additions & 4 deletions src/main/java/fun/seabird/MediaSortCmd.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package fun.seabird;

import java.io.File;
import java.nio.file.Path;

public class MediaSortCmd
{
private String mediaPath;
private Long hrsOffset = 0l;
private File csvFile;
private Path csvFile;

private boolean sepYear = false;
private boolean transcodeVideos = false;
Expand Down Expand Up @@ -34,10 +34,10 @@ public String getMediaPath() {
public void setMediaPath(String mediaPath) {
this.mediaPath = mediaPath;
}
public File getCsvFile() {
public Path getCsvFile() {
return csvFile;
}
public void setCsvFile(File csvFile) {
public void setCsvFile(Path csvFile) {
this.csvFile = csvFile;
}
public boolean isCreateParentDir() {
Expand Down
Loading

0 comments on commit d39e18b

Please sign in to comment.