TA的每日心情 | 奋斗 2018-2-28 18:04 |
---|
签到天数: 40 天 连续签到: 1 天 [LV.5]测试团长
|
这个协议不匹配的。需要使用rstp协议的话,脚本需要手工编写,具体参考help
EXAMPLE
In the following example, the lreal_open_url function specifies a URL in RealPlayer instance 1.
int LR_FUNC Action() {
lreal_open_player(1);
lreal_open_url(1,"http://music.hollywoodandvine.com/playra.asp?ClubID=25&TranSpeedTypeID=5&ContentTypeID=2&MediaAttributeID=4&TrackID=941");
/* Note that no url is specified in the lreal_play function, because
lreal_open_url has already defined it */
lreal_play(1,69069);
lreal_stop(1);
lreal_close_player(1);
return 0;
}
[ 本帖最后由 archonwang 于 2008-11-13 12:30 编辑 ] |
|