Questions tagged [remote-control]

remote-control describes question about functionality to interact with services remotely across some communication channel.

In software development, remote-control describes functionality which allows to interact with services across some sort of communication channel.

The term originates from Remote control, but is not limited to one form of communication. It typically includes communication between separate systems, e.g. between two processes or between two different machines, where one participant performs the controlling role and the other is being controlled.

200 questions
8
votes
1 answer

Can someone help me with Android RemoteControlClient?

I'm trying to get the RemoteControlClient set up so my app's music can be controlled by the widget that pops up on the lock screen (like SoundCloud, Google Play Music, and other music/video apps work). I'm not sure what's wrong with my code and why…
jas7457
  • 1,971
  • 5
  • 30
  • 47
8
votes
0 answers

Taking over Audio session

My app supports either Audio from an external music app (like Pandora) or playing from within the app, using an AVPlayer to play AVPlayerItem from iPod library. In my AppDelegate, I call: - (BOOL)application:(UIApplication *)application…
eric f.
  • 906
  • 2
  • 9
  • 17
6
votes
0 answers

How To Make Next and Previous Track Buttons Disappear on Control Center for My App?

I'm making a iPhone music app that handles music playing & pausing and maintains its own play list. This app does not provide next/prev song functions, so I don't want these button to display on iOS's Control Center (the slide-up screen). I tried…
Ascendant
  • 2,430
  • 3
  • 26
  • 34
6
votes
1 answer

Weird blinking on the lock screen remote control client when stopping it from the client itself

I'm currently building a streaming Android app and I'm trying to integrate a remote control client (to have for example a control from the lock screen on ICS+). To do so, I'm doing that at start up in my streaming service: int result =…
Romain Piel
  • 11,017
  • 15
  • 71
  • 106
5
votes
2 answers

UIEventSubtypeRemoteControlTogglePlayPause not doing anything

I have an application that plays music and want to use lockscreen control (play/pause). With NSLog I can see that my app get's the button trigger but not theUIEventSubtypeRemoteControlTogglePlayPause. Here's a bit of my code: - (void)viewDidLoad { …
ASCJU
  • 317
  • 3
  • 14
5
votes
1 answer

android teamviewer intent with parameters

Is there a way to start in android the "teamviewer" app (or another similar app which let you remote control the phone) specifing which "user id" and password are required to control the device? for example: Intent i =…
user2581209
  • 158
  • 9
4
votes
3 answers

Remote Control API or how to start?

If, by any chance, I want to develop my own remote assistance/screen sharing tool to include in my own CRM, where should I go? I understand nothing about communication but I would want to involve myself in such an idea. My question is, what is the…
balexandre
  • 73,608
  • 45
  • 233
  • 342
4
votes
1 answer

Interfacing LIRC with Haskell

I've been using pyLirc while prototyping a small application in Python. For performance reasons (among others) I'm moving to Haskell, but can't find any modules providing similar functionality. Should I just stick with "lirc_client.h" or are there…
akosch
  • 4,326
  • 7
  • 59
  • 80
4
votes
1 answer

UPnP AV Remote Control in Java or C#

I need to create some kind of remote control that can interact with a UPnP media server. I've read that there are kind of like three applications for the UPnP AV stack: media server, media renderer, control point. At first, I thought that a control…
kah
  • 170
  • 1
  • 12
4
votes
3 answers

How can I change remote controller of FireFox in Selenium Python?

When I FireFox is loaded through Selenium, my browser is under remote controller and a bot image show in URL section in my browser. For deal with this problem I changed User-Agent by this code: from selenium import webdriver profile =…
Hamed Baziyad
  • 1,954
  • 5
  • 27
  • 40
4
votes
1 answer

Programming for the Apple infared remote controls

How do I get started with programming for the Apple infared remote control? To start with, I only intend to support one control, and one type of receiver, that on the current unibody MacBooks. What I mean by programming, is, how do I get started…
andy
  • 8,775
  • 13
  • 77
  • 122
4
votes
0 answers

How can I input touch events to Android remotely without a cable?

I am trying to generate touch events on an Android phone and stream the screen to a web application. I want to do this remotely without a USB cable and not require that the phone be rooted. What I tried: ADB over USB allows me to generate touch…
4
votes
3 answers

remoteControlReceivedWithEvent works in simulator but not device

I am working on an app that will be playing music from the iPod library. I am playing the music via MPMediaPlayerController by retrieving the selected item from a table and passing it to a detail view controller: MPMediaItem *item = (MPMediaItem…
Jeff B
  • 223
  • 1
  • 3
  • 12
4
votes
0 answers

iOS7 remoteControlReceivedWithEvent never being called

I'm building a testing app to see if I can get my app to work with remote control. I followed the apple documentation for remote control event handling shown…
Se Won Jang
  • 773
  • 1
  • 5
  • 12
3
votes
2 answers

remoteControlReceivedWithEvent not call in a singleton class

In my app, I'd like to implement the music playing just like iPod music library which can play background and remote control. My App is : a table view with several items in the main page, selecting the music item it will enter the music view and…
scorpiozj
  • 2,687
  • 5
  • 34
  • 60
1
2
3
13 14