albertogasparin / external-video-player-addon

Firefox for Android addon to open HTML5 videos with any native video player
https://addons.mozilla.org/en-US/android/addon/external-video-player/
14 stars 0 forks source link

Data type of video link #1

Closed rzoro closed 7 years ago

rzoro commented 7 years ago

The data type of the video link fetched is hyperlink and not video so it is opened by web browser and not any video player, please set the data type to video. use: Intent intent = new Intent("android.intent.action.VIEW", Uri.parse(your link)); intent.setDataAndType(Uri.parse(your link), "video/*");