Skip to content
Snippets Groups Projects
Commit fe39a33c authored by Ondřej Trojan's avatar Ondřej Trojan
Browse files

dockerization and bugfix

parent 7e3e3843
No related branches found
No related tags found
No related merge requests found
......@@ -167,7 +167,7 @@ public class StorageService {
}
//transfered
float duration = form.getDuration();
float duration = form.getDuration() == null ? 10f: form.getDuration();
videofileService.createVideoFile(currentUserId, filePath, form.getFilename(), form.getDescription(), true, duration, file.getSize(), Integer.parseInt(form.getFolder()), TrackTypes.picture);
return new ResponseData<>(true);
......
......@@ -86,11 +86,11 @@ app:
videoFolderPath: /usr/src/vid/
playlistFolderPath: /usr/src/playlists/
scheduling:
enabled: false
enabled: true
clientCount: 2
clientIps:
- 127.0.0.1
- 127.0.0.1
- 172.19.0.1
- 172.19.0.1
clientVlcPorts:
- 5041
- 5051
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment