Last active
October 21, 2024 14:13
-
-
Save SergLam/25072e645240014a8b45fb83ca620244 to your computer and use it in GitHub Desktop.
Mock Data URLs - links to audio, video and image files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
struct MockDataConstants { | |
// MARK: - Image files | |
static let imageUrls: [String] = [ | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/BigBuckBunny.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ElephantsDream.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerBlazes.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerEscapes.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerFun.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerJoyrides.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerMeltdowns.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/Sintel.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/SubaruOutbackOnStreetAndDirt.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/TearsOfSteel.jpg" | |
] | |
// MARK: - Audio files | |
static let audioAccFileURL: String = "https://github.com/SergLam/Audio-Sample-files/raw/master/sample.acc" | |
static let audioMp3FileURL: String = "https://github.com/SergLam/Audio-Sample-files/raw/master/sample.mp3" | |
static let audioM4aFileURL: String = "https://github.com/SergLam/Audio-Sample-files/raw/master/sample.m4a" | |
static let audioOggFileURL: String = "https://github.com/SergLam/Audio-Sample-files/raw/master/sample.ogg" | |
static let audioWavFileURL: String = "https://github.com/SergLam/Audio-Sample-files/raw/master/sample.wav" | |
static let audiogramFileUrls: [String] = [ | |
"https://github.com/SergLam/Audio-Sample-files/raw/master/sample.lrc", | |
"https://github.com/SergLam/Audio-Sample-files/raw/master/sample1.lrc", | |
"https://github.com/SergLam/Audio-Sample-files/raw/master/sample3.lrc" | |
] | |
// MARK: - Video + preview pic files | |
static let videoPreviews: [String] = [ | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/BigBuckBunny.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ElephantsDream.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerBlazes.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerEscapes.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerFun.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerJoyrides.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerMeltdowns.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/Sintel.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/SubaruOutbackOnStreetAndDirt.jpg", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/TearsOfSteel.jpg" | |
] | |
static let videoUrls: [String] = [ | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerBlazes.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerEscapes.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerFun.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerJoyrides.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/Sintel.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/SubaruOutbackOnStreetAndDirt.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/TearsOfSteel.mp4" | |
] | |
static let videoUrlsDict: [String: String] = [ | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/BigBuckBunny.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ElephantsDream.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerBlazes.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerBlazes.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerEscapes.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerEscapes.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerFun.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerFun.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerJoyrides.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerJoyrides.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/ForBiggerMeltdowns.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/Sintel.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/Sintel.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/SubaruOutbackOnStreetAndDirt.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/SubaruOutbackOnStreetAndDirt.mp4", | |
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/images/TearsOfSteel.jpg": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/TearsOfSteel.mp4" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment