I'm getting this "Cannot access m3u8: cross domain access denied" error in my JW Player.There is already an crossdomain.xml file in the server I'm trying to access and I can't change it, Can anyone tell me if it's possible to force the player to refer a different crossdomain.xml file say crossdomain1.xml from the server i'm trying to fetch the video from?
Crossdomain error in Jw player
2.5k Views Asked by Aravind At
1
There are 1 best solutions below
Related Questions in JWPLAYER
- Formatting a JWPlayer to Provide a Carousel of Videos in Playlist
- How to setup a playlist in jwplayer?
- Module parse failed: Unexpected token (2:9801) in jwplayer-react.js
- Add 0.75x playback speed on React Native JW Media Player package
- Facing Video Playback Error (224003) on iPhones, despite Android compatibility. Need assistance
- How to update authentication token for mp4 file with JW Player?
- How to change quality labels to 1080p in Jwplayer v8?
- How to configure JW player after doing wowza trancoding enable and create smil
- jwPlayer- Initialize Advertsing after Setup() with setConfig()
- Does method 'jwplayer(div).setup()' accept option 'streamer'?
- Need Forward seek button in JW Player
- Disable media playback controller coming in the Notification bar using JW player
- JW player react native issue : backgroundAudioEnabled: true not working when playing live video specific in ios
- Jwplayer encounters CORS error on iOS device
- I want to hide a Picture in Picture icon that comes in upper right corner of video player in swift 4 iOS
Related Questions in M3U8
- SubtitleOctopus how to use octopus subtiles in m3u8 files
- convert m3u FILE to m3u8 URL
- HLS (HTTP Live Streaming), m3u8 Url 403 issue, works on extension but not when running locally
- Using gstreamer to record an m3u8 stream
- How to download Widevine encrypted m3u8 stream
- How to save .m3u8 file to local disk in swift?
- Dont start automatic transmition
- how can i show iframe from m3u8, when user hover the player's timeline
- M3U8 Downloading with YT-DLP by passing data as a parameter
- How to get m3u8 playlist from yotube video link?
- Media3/Exoplayer CMAF LL-HLS Playlist correct LoadControl values for smooth streaming
- How does this site prevent users from downloading videos?
- How to download a video from vidyard that I have access for
- Strange behaviour with Dynamic M3U8 Live Stream in Flutter using Just_Audio
- Is react-native-video supports HLS video format in android?
Related Questions in CROSSDOMAIN.XML
- what is best frontend and backend tools to build management sites with the support of cross domain communication
- Inconsistency in performing Cross Origin requests using actionscript
- Remove crossdomain file from ASP.Net application
- CORS vs crossdomain.xml, which one has the priority?
- Flash crossdomain.xml on Tomcat 8 at port 8080
- CSRF Bypass using ActionScript via weak CrossDomain.xml
- crossdomain.xml issue causing "send failed" error
- tomcat crossdomain.xml not found 404
- How to use or load flash file exists on different server
- Crossdomain error in Jw player
- More restrictive crossdomain.xml policy for some paths
- How and where to add crossdomain.xml in neo4j so that its available on localhost:7474/crossdomain.xml?
- corssdomain.xml in RED5 having no effect on RTMPT streaming
- Can I call two crossdomain.xml from two different servers from my flash player?
- Security Error in Silverlight Application
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The player itself is not looking for crossdomain.xml, the browser is and it will only accept the crossdomain.xml file that is located at the root of the domain that is hosting the requested resource. This includes subdomains so if I'm trying to embed http://example.website.com/playlist.m3u8, the browser will look for http://example.website.com/crossdomain.xml.
Also, is the player in HTML5 or Flash when you are seeing this behavior. When in HTML5, the browser is not looking for crossdomain.xml. Instead, it is looking for the CORS headers on the hosting domain to be set up properly.
For more information on all of this, please see the Crossdomain File Loading support article.