我正在创建一个语音控制的音乐系统。 我现在使用的系统可以运行,但是工作不佳。 它将单词分开,然后查看音乐选择。 但是,如果有些歌曲的标题与我所说的单词相同(例如我说“ of”,并且找到5首歌曲),它将选择音乐列表中的最后一首歌曲。 有人知道选择音乐的更好方法吗?
def detectWords(response):
response = response.lower()
words = response.split()
if 'play' in words:
os.chdir("/home/pi/Desktop/Stemherkenning/Music")
for file in glob.glob("*mp3"):
fileSplit = (file.lower()).split()
if any(word in fileSplit for word in words):
mixer.music.load(file)
mixer.music.play()
print("Playing " + file)
if 'stop' in words:
print("Stopped")
mixer.music.stop()
“单词”是Google语音识别所提取的单词。
答案 0 :(得分:0)
有多种方法来解决此问题,但程度不同。这种方法会检查与该词组具有最多唯一词的歌曲,这应该可以帮助您入门:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:paddingBottom="10dp"
android:paddingLeft="10dp"
android:paddingTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/myTextView"
android:text="*** Descritpion text"
app:layout_constraintWidth_default="spread"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toTopOf="@+id/myRecyclerView"
android:layout_marginBottom="300dp" />
<android.support.v7.widget.RecyclerView
android:id="@+id/myRecyclerView"
app:layout_constraintTop_toBottomOf="@+id/myTextView"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintVertical_bias="0"
app:layout_constraintWidth_default="spread"
app:layout_constraintHeight_default="wrap"
android:layout_width="0dp"
android:layout_height="0dp" />
</android.support.constraint.ConstraintLayout>