Update readme

This commit is contained in:
2023-04-13 21:57:59 +02:00
parent f928cb035e
commit e19f780ff0
4 changed files with 26 additions and 23 deletions

View File

@@ -30,9 +30,8 @@ public interface FileProcessor {
/**
* Populate FileInfoDto with the desired tracks, based on AttributeConfig.
* @param info to be populated
* @param nonForcedTracks List of all not forced tracks
* @param nonCommentaryTracks List of all not commentary tracks
* @param configs
* @param nonForcedTracks List of all non-forced tracks
* @param nonCommentaryTracks List of all non-commentary tracks
*/
void detectDesiredTracks(FileInfoDto info, List<FileAttribute> nonForcedTracks, List<FileAttribute> nonCommentaryTracks,
AttributeConfig... configs);
@@ -45,7 +44,7 @@ public interface FileProcessor {
* Update the file.
* @param file to be updated
* @param fileInfo information to update file
* @throws IOException
* @throws IOException when error occurs accessing file retrieving information
* @throws MkvToolNixException when error occurs while sending query to mkvpropedit
*/
void update(File file, FileInfoDto fileInfo) throws IOException, MkvToolNixException;