- 论坛徽章:
- 0
|
radio.txt数据格式为
- 节目,mms://xxxxxxxx
- 节目2,rtsp://xxxxxxxx
- .....
复制代码
我的shell代码如下:
- #!/bin/bash
- PS3="请选择节目:"
- radio_file=~/radio.txt
- select line in `gawk -F"," '{print $1}' $radio_file`
- do
- str=`grep $line $radio_file`
- length=`expr length $str`
- index=`expr index $str ","`
- index=$((index+1))
- length=$((length-index+1))
- url=`expr substr $str $index $length`
- echo $url
- mplayer $url
- done
- exit 0
复制代码
在保证地址正确的情况下,运行该脚本时出现问题
- Connecting to server 211.89.225.101[211.89.225.101]:1755 ...
- connected
- read error:: Operation now in progress
- pre-header read failed
- Connecting to server 211.89.225.101[211.89.225.101]:80 ...
- Server return 404:Not Found
- Failed to parse header
- asf_streaming_start failed
- Check if this is a playlist which requires -playlist option
- Example: mplayer -playlist <url>
- Unable to open URL: mms://211.89.225.101/live1
复制代码
但是我另写了个测试脚本,直接把地址写进来却没有问题了,可以正确播放,代码如下:
- #!/bin/bash
- mplayer mms://211.89.225.101/live1
- exit 0
复制代码
我想问的问题时,为什么第一段脚本运行时mplayer不能正常播放?是什么原因? |
|