Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 371 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 371 Bytes

VoeExtractor

Extracts raw video urls from any voe.sx video.

Usage

Get video path from voe url:

let url = URL(string: "https://voe.sx/e/8vi96tm5uufc")!
VoeExtractor.default.extract(fromURL: url) { result in
    // do stuff with retrieved videoURL
}

or using async/await:

let videoURL = try await VoeExtractor.default.extract(fromURL: url)