mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			425 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			425 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
#! /ufs/guido/bin/sgi/python
 | 
						|
 | 
						|
# radio [port]
 | 
						|
#
 | 
						|
# Receive audio packets broadcast by "broadcast.py" on another SGI machine.
 | 
						|
# Use apanel to set the output sampling rate to match that of the broadcast.
 | 
						|
 | 
						|
import sys, al
 | 
						|
from socket import *
 | 
						|
 | 
						|
port = 54321
 | 
						|
if sys.argv[1:]: port = eval(sys.argv[1])
 | 
						|
 | 
						|
s = socket(AF_INET, SOCK_DGRAM)
 | 
						|
s.bind('', port)
 | 
						|
 | 
						|
p = al.openport('radio', 'w')
 | 
						|
 | 
						|
while 1:
 | 
						|
	data = s.recv(1400)
 | 
						|
	p.writesamps(data)
 |