Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
894 views
in Technique[技术] by (71.8m points)

Sony ZR5 Audio Control API

How i can send to my Sony ZR5 audio stream like http://air.radiorecord.ru:805/chil_320 using api? Thank you.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As this device have build-in chromecast engine, you can too use it to stream url. ATM I m using python with this code.

import time
import pychromecast

name = ''

chromecasts = pychromecast.get_chromecasts()
for cc in chromecasts:
    print (cc.device.friendly_name)
    name = cc.device.friendly_name

cast = next(cc for cc in chromecasts if cc.device.friendly_name == name)
cast.wait()
print(cast.device)
print(cast.status)

mc = cast.media_controller
mc.play_media('https://c1icy.prod.playlists.ihrhls.com/7053_icy', 'audio/mp3')
mc.block_until_active()
print(mc.status)

mc.pause()
time.sleep(5)
mc.play()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...