Return-Path: X-Original-To: apmail-cordova-issues-archive@minotaur.apache.org Delivered-To: apmail-cordova-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0D102189E2 for ; Wed, 5 Aug 2015 04:56:05 +0000 (UTC) Received: (qmail 65232 invoked by uid 500); 5 Aug 2015 04:56:05 -0000 Delivered-To: apmail-cordova-issues-archive@cordova.apache.org Received: (qmail 65201 invoked by uid 500); 5 Aug 2015 04:56:04 -0000 Mailing-List: contact issues-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@cordova.apache.org Received: (qmail 65183 invoked by uid 99); 5 Aug 2015 04:56:04 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Aug 2015 04:56:04 +0000 Date: Wed, 5 Aug 2015 04:56:04 +0000 (UTC) From: "John C. Bland II (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CB-9452) RTSP Streams are considered local resources on playback MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 John C. Bland II created CB-9452: ------------------------------------ Summary: RTSP Streams are considered local resources on playback Key: CB-9452 URL: https://issues.apache.org/jira/browse/CB-9452 Project: Apache Cordova Issue Type: Bug Components: Android Reporter: John C. Bland II Priority: Blocker Cordova fails to play when attempting to play an RTSP stream. The stream is treated as a local resource so in AudioPlayer.java:305. Fix: {code} public boolean isStreaming(String file) { if (file.contains("http://") || file.contains("https://") || file.contains("rtsp://")) { return true; } else { return false; } } {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org For additional commands, e-mail: issues-help@cordova.apache.org