Playing local files
See original GitHub issueCan this play local files?
e.g. contentId: 'file:///Users/cameron/Video.mp4
As when I do that I get the error Load failed here:
player.load(media, { autoplay: true }, function(err, status) {
console.log('camstatus', err);
Issue Analytics
- State:
- Created 9 years ago
- Comments:12 (6 by maintainers)
Top Results From Across the Web
Local files
Along with the millions of tracks we offer, the Local Files feature lets you use the Spotify app to play any other audio...
Read more >How to Add Local Files to Spotify
1. Open your Spotify desktop app. 2. Go to Settings on the left sidebar. Select Edit and then Preferences. 3. Find Local Files...
Read more >How to Add Files to Spotify and Listen on Your Mobile Device
1. Create a new playlist in Spotify and add the songs you want from the “Local Files” folder to the desired playlist. You...
Read more >Trouble Syncing Spotify Local Files? Here's How You Can ...
To play local files on Android, you will first need to put them into a playlist on the Desktop app. Here's a quick...
Read more >How to Play Your Local Music Collection on Spotify
Launch the Spotify desktop app and head to Menu > Edit > Preferences. Then scroll down the settings page and turn on the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The URL passed to
load
is sent to the Chromecast. Then the Chromecast tries to GET it. So yes, if you sendlocalhost
your chromecast will try to connect to itself. You have to find your local IP address (local network) and use it instead.If you don’t know how to do it, either look it up on google or check the
networkInterfaces
function of the nodeos
module.Okay! Thanks, that’s what I wanted to know.