Apply preprocessing into HLS stream

This commit is contained in:
2025-10-22 01:14:05 +05:00
parent 7c85e05e02
commit ea3eb33e8d
14 changed files with 505 additions and 40 deletions

View File

@ -0,0 +1,19 @@
package com.backend.hls.proxy.dto;
import jakarta.validation.constraints.NotEmpty;
import jakarta.validation.constraints.NotNull;
public class CreateProxyDTO {
@NotNull
@NotEmpty
private final String url;
public CreateProxyDTO(String url) {
this.url = url;
}
public String getUrl() {
return url;
}
}