123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- import { VideoImportCreate } from '../../models/videos'
- import { makeGetRequest, makeUploadRequest } from '../requests/requests'
- import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
- function getYoutubeVideoUrl () {
- return 'https://www.youtube.com/watch?v=msX3jv1XdvM'
- }
- function getYoutubeHDRVideoUrl () {
- /**
- * The video is used to check format-selection correctness wrt. HDR,
- * which brings its own set of oddities outside of a MediaSource.
- * FIXME: refactor once HDR is supported at playback
- *
- * The video needs to have the following format_ids:
- * (which you can check by using `youtube-dl <url> -F`):
- * - 303 (1080p webm vp9)
- * - 299 (1080p mp4 avc1)
- * - 335 (1080p webm vp9.2 HDR)
- *
- * 15 jan. 2021: TEST VIDEO NOT CURRENTLY PROVIDING
- * - 400 (1080p mp4 av01)
- * - 315 (2160p webm vp9 HDR)
- * - 337 (2160p webm vp9.2 HDR)
- * - 401 (2160p mp4 av01 HDR)
- */
- return 'https://www.youtube.com/watch?v=MSJ25EqI19c'
- }
- function getMagnetURI () {
- // eslint-disable-next-line max-len
- return 'magnet:?xs=https%3A%2F%2Fpeertube2.cpy.re%2Fstatic%2Ftorrents%2Fb209ca00-c8bb-4b2b-b421-1ede169f3dbc-720.torrent&xt=urn:btih:0f498834733e8057ed5c6f2ee2b4efd8d84a76ee&dn=super+peertube2+video&tr=wss%3A%2F%2Fpeertube2.cpy.re%3A443%2Ftracker%2Fsocket&tr=https%3A%2F%2Fpeertube2.cpy.re%2Ftracker%2Fannounce&ws=https%3A%2F%2Fpeertube2.cpy.re%2Fstatic%2Fwebseed%2Fb209ca00-c8bb-4b2b-b421-1ede169f3dbc-720.mp4'
- }
- function getBadVideoUrl () {
- return 'https://download.cpy.re/peertube/bad_video.mp4'
- }
- function getGoodVideoUrl () {
- return 'https://download.cpy.re/peertube/good_video.mp4'
- }
- function importVideo (
- url: string,
- token: string,
- attributes: VideoImportCreate & { torrentfile?: string },
- statusCodeExpected = HttpStatusCode.OK_200
- ) {
- const path = '/api/v1/videos/imports'
- let attaches: any = {}
- if (attributes.torrentfile) attaches = { torrentfile: attributes.torrentfile }
- return makeUploadRequest({
- url,
- path,
- token,
- attaches,
- fields: attributes,
- statusCodeExpected
- })
- }
- function getMyVideoImports (url: string, token: string, sort?: string) {
- const path = '/api/v1/users/me/videos/imports'
- const query = {}
- if (sort) query['sort'] = sort
- return makeGetRequest({
- url,
- query,
- path,
- token,
- statusCodeExpected: HttpStatusCode.OK_200
- })
- }
- // ---------------------------------------------------------------------------
- export {
- getBadVideoUrl,
- getYoutubeVideoUrl,
- getYoutubeHDRVideoUrl,
- importVideo,
- getMagnetURI,
- getMyVideoImports,
- getGoodVideoUrl
- }
|