我的应用就像播放网络文章一样。 http://lisgo.org/
我打算制作一个免费版本,如果有iPhone应用程序的音频广告,我很好奇。 由于我的应用的大多数用户都看不到屏幕,因此横幅广告不适合。 我想插入像spotify这样的音频广告。
我检查了http://www.medialets.com/和http://www.greystripe.com/,但他们的展示案例 很模糊我发了电子邮件给他们,但还没有回复。
非常感谢任何帮助。
谢谢!
答案 0 :(得分:1)
嗯......这似乎是一个尚未正确执行的绝佳商机。
我还看到TargetSpot提到的音频广告被提供到客户端iPhone应用程序中。
答案 1 :(得分:1)
我真的很喜欢你的想法。经过一段时间的搜索,我遇到了这个有用的教程 - 虽然它的商业性,但希望它能帮到你。
http://advertising.about.com/od/smallbusinesscampaigns/a/podcastweb.htm
答案 2 :(得分:0)
如果您愿意使用 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