Interface IProcessingService
-
- All Known Implementing Classes:
BitchuteService
public interface IProcessingServiceInterface defining methods for parsing bitchute video.- Author:
- Karafra
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<org.springframework.core.io.Resource>downloadVideo(String urlString)Downloads video from bitchute.DownloadPagePropsprocessVideo(String link)Parses video link from bitchute to return raw url to video stream.
-
-
-
Method Detail
-
processVideo
DownloadPageProps processVideo(String link)
Parses video link from bitchute to return raw url to video stream.- Parameters:
link- link to bitchute video.- Returns:
- link to raw stream.
-
downloadVideo
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> downloadVideo(String urlString)
Downloads video from bitchute.- Parameters:
urlString- urllike string.- Returns:
- downloadable resource.
-
-