Hey All,
Is it possible to tweak the Samsung Voice Talk command actions?
For example: when I speak a voice command, such as 'Play Pink Floyd', the application will launcher the default music player and begin playing the artist specified after 'play'. Is it at all possible to configure this to open in another application?
Related
I am using Player Pro, but the voice command "listen to" always start the samsung music player. Is there a way to change that?
I have already tried to go in the file browser and click a mp3, and making playerpro the default for mp3. But the voice command seem to just ignore this?
Thanks
bump ........
Did you find a solution so far?
I'm stuck with the same.
I'm using Speaktoit, it seems to answer a larger percentage of questions correctly. When I ask it to "play" music it opens the native player and starts playing. Is there a way to set Poweramp as the default player? Probably a question for the developer, but thought I'd ask. Maybe root and remove default player?
Default App Manager Pro.
You can set defaults for many kind of files, including music apps.
Sent from my YP-G70
I'll try it, thanks. I did notice that Voice Search on the phone will open PowerAmp, but Speaktoit opens the default Player (default player has no default set), just real odd. Voice search doesn't seem to work as well as Speaktoit.
Are there any "Assistant" type apps that don't need a data connection? All the ones I've tried don't do anything if not on 3G or wifi. I'd like to be able to voice activate "Play music" or "Take a note" or "Navigate with Navfree"...
Probably Vlingo will do the trick.
Sent from my YP-G70
Nope, same network error.
Hey guys, I posted this in another forum, but never had any responses. I've also searched this site quickly and didn't see anything regarding this.
How well does S-Voice control music? I always play my music through bluetooth in my truck and I think it would be great to be able to change songs through voice commands. I've seen videos showing that S-Voice can start playing music, but none showing that it could actually play a specific song on request, (i.e. play *insert song here*). If S-Voice is not currently capable of doing this, would rooting the phone accomplish this with certain mods? I have never rooted a phone and I am looking forward to taking the dive with the GSIII.
And finally, when using S-Voice to play songs, will it only play through the stock music player, or could you play songs through Google Music?
Thanks guys, I really appreciate your help!
Hi there I assume if you make a third party music the default it would play from there but maybe not as then it wouldn't have the integration, I could test it if you like. And as far as music control goes its very good you can do loads of commands such as:
play
pause
stop
skip
then more advance commands like
play > alex claire too close
play > playlist bike songs
That is awesome... I do hope there is a way to make Google Music the default player as I much prefer streaming my music as opposed to taking up storage space on the phone.
Well I downloaded PlayerPro as I can't get Google music in the U.K (not legal anyway
) and I made it the default music player. Unfortunately even after doing this S-Voice will still open the song in the default Samsung music player.
Hey XDA-Developers Community!
I've got a Problem regarding the Voice Control Features for Music Playback on Android Wear.
I often use it to quickly start listening to Music of a certain Artist, by saying something like: play [artist].
But when doing this on my Moto 360 it always launches the SoundCloud app and searches for the corresponding Artist there.
However, I want this to be done with Google Play Music or the Music app provided by CM11.
When using Google Now on my Phone (LG G3 running CM11) I can choose which app should be used for Playback and it always uses my Preset.
I have "Music Playback" set to Play Music in the Android Wear Application and reset any default Actions in the app Directory of the Phone Settings.
I hope that someone maybe had the same Issue and/or knows a Way around it.
Greetings from Germany and I wish you all an awesome (hopefully sunny) Sunday!
I am working on an open source voice assistant and want to be able to hand off requests like "Play 'yellow submarine' on Spotify" or "Play 'space oddity' on Google Play Music".
According to the documentation:
To play music based on a search query, use the INTENT_ACTION_MEDIA_PLAY_FROM_SEARCH intent. An app may fire this intent in response to the user's voice command to play music. The receiving app for this intent performs a search within its inventory to match existing content to the given query and starts playing that content.
This intent should include the EXTRA_MEDIA_FOCUS string extra, which specifies the intended search mode. For example, the search mode can specify whether the search is for an artist name or song name.
The value of INTENT_ACTION_MEDIA_PLAY_FROM_SEARCH is "android.media.action.MEDIA_PLAY_FROM_SEARCH", and the value of EXTRA_MEDIA_FOCUS is "android.intent.extra.focus".
Here's a command line to launch an intent:
adb shell am start -a "android.media.action.MEDIA_PLAY_FROM_SEARCH" -e android.intent.extra.focus "vnd.android.cursor.item/*" -e query Bowie
When I run the command line, the chooser on my Pixel 2 running Android 10 gives me many options. Only one works as expected. If I select Google Play Music, it starts playing a song by David Bowie.
However, if I select Spotify or YouTube Music, it does a search for Bowie but does not play anything.
If I select YouTube, it just opens YouTube but doesn't do a search.
I have premium subscriptions to Spotify and YouTube, so the requests should work. When I ask the Google voice assistant "play bowie on Spotify" (or on YouTube), it plays a song by David Bowie.
How can I get my app to behave the same way as the Google voice assistant?