Skip to content

alexeichhorn/VoeExtractor

Repository files navigation

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)