> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: generateVideoStreamingUrl(fileId: string, options: GenerateVideoStreamingUrlOptions) # Method package: wixMediaV2 # Method menu location: wixMediaV2 --> files --> generateVideoStreamingUrl # Method Link: https://dev.wix.com/docs/velo/apis/wix-media-v2/files/generate-video-streaming-url.md # Method Description: Generates a URL for streaming a specific video file in the Media Manager.
To stream different assets of the file, specify the `assetKeys` parameter which generates a video streaming URL for each asset. If no assetKey is specified, it defaults to `src`, which generates one video streaming URL in the original file's format and quality. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Generate a video streaming url (dashboard page code) ```javascript import { files } from 'wix-media.v2'; /* Sample ID value: 'd4dde1_6ce66a7e99db49f5964ef9f3ef97eefc' * * Sample options value: * { * format: 'HLS' * } */ async function myGenerateVideoStreamingUrlFunction(fileId, options) { try { const streamingUrl = await files.generateVideoStreamingUrl(fileId, options); return streamingUrl; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to: * { * "downloadUrl": { * "assetKey": "HLS", * "url": "https://repackager.wixmp.com/video.wixstatic.com/video/d4dde1_6ce66a7e99db49f5964ef9f3ef97eefc/,720p,360p,1080p,480p,/mp4/file.mp4.urlset/master.m3u8" * } * } */ ``` ## Generate a video streaming url (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { files } from 'wix-media.v2'; import { elevate } from 'wix-auth'; /* Sample ID value: 'd4dde1_6ce66a7e99db49f5964ef9f3ef97eefc' * * Sample options value: * { * format: 'HLS' * } */ export const myGenerateVideoStreamingUrlFunction = webMethod(Permissions.Anyone, async (fileId, options) => { try { const elevatedGenerateVideoStreamingUrl = elevate(files.generateVideoStreamingUrl); const streamingUrl = await elevatedGenerateVideoStreamingUrl(fileId, options); return streamingUrl; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to: * { * "downloadUrl": { * "assetKey": "HLS", * "url": "https://repackager.wixmp.com/video.wixstatic.com/video/d4dde1_6ce66a7e99db49f5964ef9f3ef97eefc/,720p,360p,1080p,480p,/mp4/file.mp4.urlset/master.m3u8" * } * } */ ``` ---