gpt4 book ai didi

iphone - 如何使用 Libmms 函数

转载 作者:行者123 更新时间:2023-12-04 22:51:19 25 4
gpt4 key购买 nike

我正在寻找如何使用 libmms 和 ffmpeg 流式传输 mms 音频的示例?现在我已经在我的 xcode 项目中导入了这两个库,我认为要做的第一件事是调用 mms_connect(),但我不知道要使用什么参数。

提前谢谢了。

最佳答案

  • 您可以使用:

  • mms_connect(NULL, NULL, g_tcUrl.av_val, g_hostname.av_val, g_playpath.av_val, "", g_port, 128*1024)

    笔记:
    NSString* strTemp;      
    strTemp = @"mms://123.30.49.85/htv2";
    // strTemp = @"mms://212.58.251.92/wms/bbc_ami/radio1/radio1_bb_live_int_eq1_sl0";
    g_tcUrl.av_val = new char[[strTemp length] + 1];
    [strTemp getCString:g_tcUrl.av_val
    maxLength:([strTemp length]+1)
    encoding:NSUTF8StringEncoding];
    g_tcUrl.av_len = strlen(g_tcUrl.av_val);
    //strTemp = @"212.58.251.92";
    strTemp = @"123.30.49.85";
    g_hostname.av_val = new char[[strTemp length]+1];
    [strTemp getCString:g_hostname.av_val
    maxLength:([strTemp length]+1)
    encoding:NSUTF8StringEncoding];
    g_hostname.av_len = strlen(g_hostname.av_val);
    //strTemp = @"/wms/bbc_ami/radio1/radio1_bb_live_int_eq1_sl0";
    strTemp = @"/htv2";
    g_playpath.av_val = new char[[strTemp length] + 1];
    [strTemp getCString:g_playpath.av_val
    maxLength:([strTemp length]+1)
    encoding:NSUTF8StringEncoding];
    g_playpath.av_len = strlen(g_playpath.av_val);
    g_port = 1755;

    关于iphone - 如何使用 Libmms 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4268253/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com