chore: cleanup

This commit is contained in:
Myzel394 2023-12-31 23:40:54 +01:00
parent 3a542f3a4d
commit 32d35c5cd7
No known key found for this signature in database
GPG Key ID: 79CC92F37B3E1A2B
2 changed files with 0 additions and 7 deletions

View File

@ -27,7 +27,6 @@ class VideoBatchesFolder(
customFolder,
subfolderName,
) {
// TODO: Sort batches!
override val concatenationFunction = ::concatenateVideoFiles
override val ffmpegParameters = FFMPEG_PARAMETERS
override val scopedMediaContentUri: Uri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI

View File

@ -79,10 +79,4 @@ abstract class IntervalRecorderService<I, B : BatchesFolder> :
batchesFolder.deleteOldRecordings(earliestCounter)
}
// TODO
abstract class Settings(
open val maxDuration: Long,
open val intervalDuration: Long,
)
}