From 762b2a0505c81625b8db326e916146b0151aafa0 Mon Sep 17 00:00:00 2001 From: sv244 Date: Fri, 14 Aug 2015 01:30:52 +0200 Subject: [PATCH 1/2] Change names of dependencies to non-iOS referenced Since .framework is not really how dependencies are distributed on Android. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f0d564fb..2147200c 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ This project has the following dependencies. - Requires [Java-WebSocket library](https://github.com/TooTallNate/Java-WebSocket) - Requires [jmDNS library](https://github.com/openhab/jmdns) * [Connect-SDK-Android-Google-Cast](https://github.com/ConnectSDK/Connect-SDK-Android-Google-Cast) submodule - - Requires [GoogleCast.framework](https://developers.google.com/cast/docs/downloads) + - Requires [Google Play Services for Cast](https://developers.google.com/android/guides/setup) * [Connect-SDK-Android-FireTV](https://github.com/ConnectSDK/Connect-SDK-Android-FireTV) submodule - - Requires [AmazonFling.framework](https://developer.amazon.com/public/apis/experience/fling/docs/amazon-fling-sdk-download) + - Requires [Amazon Fling SDK](https://developer.amazon.com/public/apis/experience/fling/docs/amazon-fling-sdk-download) ##Including Connect SDK in your app with Android Studio Edit your project's build.gradle to add this in the "dependencies" section @@ -112,7 +112,7 @@ The test coverage report will be in this folder `Connect-SDK-Android/build/repor ###Subtitles -- DLNA service support `SRT` format only. Since there is no official specification for them, subtitles may not work on all DLNA-compatible devices. This feature has been tested and works on LG WebOS and Netcast TVs. +- DLNA service support `SRT` format only. Since there is no official specification for them, subtitles may not work on all DLNA-compatible devices. This feature has been tested and works on LG WebOS, Netcast TVs. - FireTV service supports `WebVTT` format only. Subtitles on Fire TV are hidden by default. To display them, the user should manually pick one in the media player (click the "Options" button on the remote). The Fling SDK doesn't provide any way to make them appear remotely. - Google Cast service supports `WebVTT` format only. The server providing subtitles should support CORS headers, otherwise they are not displayed. The simplest change is to send this HTTP response header for your subtitles: `Access-Control-Allow-Origin: *`. More information is here: [https://developers.google.com/cast/docs/android_sender#cors-requirements](https://developers.google.com/cast/docs/android_sender#cors-requirements). - Netcast service support `SRT` format only. It uses DLNA and has the same restrictions as DLNA service. From 59ce0ab89000082f5467fe1b040fdb56cd7e4e75 Mon Sep 17 00:00:00 2001 From: sv244 Date: Fri, 14 Aug 2015 01:32:16 +0200 Subject: [PATCH 2/2] DLNA subtitle support also works in Kodi --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2147200c..4d6520c8 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ The test coverage report will be in this folder `Connect-SDK-Android/build/repor ###Subtitles -- DLNA service support `SRT` format only. Since there is no official specification for them, subtitles may not work on all DLNA-compatible devices. This feature has been tested and works on LG WebOS, Netcast TVs. +- DLNA service support `SRT` format only. Since there is no official specification for them, subtitles may not work on all DLNA-compatible devices. This feature has been tested and works on LG WebOS, Netcast TVs and in Kodi. - FireTV service supports `WebVTT` format only. Subtitles on Fire TV are hidden by default. To display them, the user should manually pick one in the media player (click the "Options" button on the remote). The Fling SDK doesn't provide any way to make them appear remotely. - Google Cast service supports `WebVTT` format only. The server providing subtitles should support CORS headers, otherwise they are not displayed. The simplest change is to send this HTTP response header for your subtitles: `Access-Control-Allow-Origin: *`. More information is here: [https://developers.google.com/cast/docs/android_sender#cors-requirements](https://developers.google.com/cast/docs/android_sender#cors-requirements). - Netcast service support `SRT` format only. It uses DLNA and has the same restrictions as DLNA service.