udp2tty

把udp收到的东西转发到标准输出上, 这样可以给pifm接收然后发射音乐。

#!/usr/bin/python
import sys, socket, struct, os 
if sys.platform == 'win32':  
       import msvcrt
       msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY) 


def main():
    address = ('0.0.0.0', 2333)  
    s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)  
    s.bind(address)  
      
    while True:  
        data, addr = s.recvfrom(65536)
        if data and len(data)>0:
            sys.stdout.write(data)
            sys.stdout.flush()
        sys.stderr.write(str(addr)+'\r\n')

if __name__=='__main__':
    main()

发表评论

注意 - 你可以用以下 HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

:wink: :twisted: :roll: :oops: :mrgreen: :lol: :idea: :evil: :cry: :arrow: :?: :-| :-x :-o :-P :-D :-? :) :( :!: 8-O 8)

本文链接:https://twd2.me/archives/6091QrCode