【问题标题】:Is there any audio ads for iPhone audio apps?iPhone 音频应用程序是否有任何音频广告?
【发布时间】:2012-01-06 02:02:27
【问题描述】:

我的应用就像网络文章的播客。 http://lisgo.org/

我计划制作一个免费版本,我很好奇 iPhone 应用是否有音频广告。 由于我的应用程序的大多数用户看不到屏幕,因此横幅广告不太适合。 我想插入像 spotify 这样的音频广告。

我检查了http://www.medialets.com/http://www.greystripe.com/,但他们的展示案例 很模糊。我给他们发了电子邮件,但还没有回复。

任何帮助将不胜感激。

谢谢!

【问题讨论】:

  • 我正在开发一个闹钟应用程序,用户不会花时间在应用程序中,所以我正在考虑音频广告。刚刚遇到您的问题,它有点老了,想知道您是否可以建议最适合您的方法。

标签: iphone iad ads


【解决方案1】:

嗯...这似乎是一个很棒的商机,但尚未正确执行。

我还看到TargetSpot 提到将音频广告投放到客户端 iPhone 应用程序中。

【讨论】:

  • 这家公司可能是我想要找到的。我会看看。谢谢。
【解决方案2】:

我真的很喜欢你的想法。在搜索了一段时间后,我发现了这个有用的教程- 虽然有点商业化,但希望对您有所帮助。

http://advertising.about.com/od/smallbusinesscampaigns/a/podcastweb.htm

【讨论】:

    【解决方案3】:

    如果您愿意使用 API。你可以使用这样的东西 https://docs.api.audio/recipes/programmatic-audio-ads

    
    #Check that you are using python 3.8 or further 
    #pip install -U aflr
    import aflr
    
    aflr.api_key = "APIKEY"
    
    audience = [
        {"number": "33", "location": "Buckingham"},
        {"number": "22", "location": "Sunshine"},
    ]
    text = """
        <<soundSegment::effect1>>
        <<sectionName::hello>> 
        If you have any plans for today, cancel them! 
        <<soundSegment::intro>>
        <<sectionName::hello2>>
        This really is the final call for {{location}} Hyundai's massive clear out sale! Only until midnight tonight, so come on down!
        <<soundSegment::main>>
        <<sectionName::main>> 
        We're clearing out all remaining 2020 Hyundais at Ottawa's top volume Hyundai dealers. These are the last days for clear out pricing and amazing clear out incentives. Zero percent financing for up to 84 months, and up to 7700 in cash price adjustments on all 2020 Hyundais at Hyundai on {{location}}. Pick one of the {{number}} Santa Fays in stock, a family-sized SUV with all-wheel drive and back-up cameras from just $85 weekly, zero down!
        It's the easiest time to get into a new Hyundai, but these deals won't be around for long, ONLY until midnight TONIGHT! 
        <<soundSegment::outro>>
        <<sectionName::outro>>
        Get into a new Hyundai today. At {{location}} Hyundai, better cars for passionate car drivers. <break time="1s"/>
    """
    script = aflr.Script().create(scriptText=text, scriptName="helloworld", moduleName="hello", projectName="hello")
    print(script)
    for item in audience:
        r = aflr.Speech().create(
            scriptId=script.get("scriptId"),
            voice="en-US-GuyNeural",
            speed=120,
            silence_padding=0,
            audience=[item],
        )
        print(r)
        template = "hotwheels"
        print(template)
    for item in audience:
        r = aflr.Mastering().create(
            scriptId=script.get("scriptId"), soundTemplate=template, audience=[item]
        )
        print(r)
        url = aflr.Mastering().download(
            scriptId=script.get("scriptId"),
            parameters=item,
            destination=".",
        )
        print(f"✨ Mastered file for template {template} ✨")
        print(url)
        ```
    That way you could serve this, this is in python. You could also do it in Swift (but there's no sdk for this atm you'd need to write it yourself).
    
    Disclamier - I work for www.api.audio 
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2019-01-16
      • 2022-11-21
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多