> 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: getVideoPlaybackUrl(fileUrl: string, format: string) # Method package: wixMediaBackend # Method menu location: wixMediaBackend --> MediaManager --> getVideoPlaybackUrl # Method Link: https://dev.wix.com/docs/velo/apis/wix-media-backend/media-manager/get-video-playback-url.md # Method Description: Gets a video file's playback URL from the Media Manager. The `getVideoPlaybackUrl()` function returns a Promise that resolves to the specified video file's playback URL. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get a URL to be used for video playback ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { mediaManager } from 'wix-media-backend'; export const getVideoPlaybackUrl = webMethod(Permissions.Anyone, async (fileUrl) => { return mediaManager.getVideoPlaybackUrl(fileUrl, "hls"); }); /* Returns a promise that resolves to: * "https://repackager.wixmp.com/video.wixstatic.com/video/f6c0f9..." */ ``` ---