gpt4 book ai didi

android - 我们如何在移动应用程序中使用YouTube视频

转载 作者:行者123 更新时间:2023-12-03 06:10:45 24 4
gpt4 key购买 nike

我构建了一个对 child 有用的小型教育应用。所以我映射了如下主题和概念:

enter image description here

然后,一个 child 可以单击链接,然后在下一个 Activity 中,我正在YouTubePlayer中流式传输YouTube视频:

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<com.google.android.youtube.player.YouTubePlayerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/youtubePlayerID"
android:layout_marginTop="35dp"
android:gravity="center"
/>

<ImageView
android:id="@+id/closeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|right"
android:adjustViewBounds="true"
android:scaleType="fitStart"
android:src="@mipmap/close_32" />


</FrameLayout>

YouTubeActivity

然后我使用下面的代码在上面的YouTubePlayerView中播放视频:
ypView.initialize(strYoutubeKey, new YouTubePlayer.OnInitializedListener() {
@Override
public void onInitializationFailure(YouTubePlayer.Provider provider, YouTubeInitializationResult result) {
Log.d("onInitializationFailure","Unable to load");
}

@Override
public void onInitializationSuccess(YouTubePlayer.Provider provider, YouTubePlayer player, boolean wasRestored) {
if(!wasRestored)
player.loadVideo(**strVideoURL**);
//player.cueVideo(strVideoURL,1);
}
});

strVideoURL 是与YouTube中可用的创建者开发的主题相对应的任何视频URL(例如,上图中第一个主题为 https://www.youtube.com/watch?v=_B5dhVPeqSg)

我已经在Playstore中发布了此应用,现在Google已从Playstore中删除了该应用。

我跟进了他们两次,他们回答如下:
感谢您与Google Play小组联系。

We reviewed your app (com.udayrepo.classelearn) and the initial takedown decision was confirmed. Your app will not be reinstated because it violates our Device and Network Abuse policy by downloading, monetizing, or otherwise accessing YouTube videos in violation of the YouTube Terms of Service or YouTube API Terms of Service.

> For example, your app is able to stream copyrighted works from YouTube illegally.

You'll need to make changes to your app before submitting it for another review. If you choose to submit your app again, you may want to review the Device and Network Abuse policy and the Developer Program Policies for additional guidance.

Please let me know if you have any other questions.


  • 有人可以帮助您在我们的应用中使用YouTube视频的正确方法是什么?
  • 当一个 child 点击链接时,我们不能在应用中播放该视频吗?
  • 我可以重定向该视频直接在YouTube中播放,而不在我的应用程序中播放。

  • 建议我更好,我可以做。

    期待您的帮助。

    最佳答案

    Youtube的设备和网络滥用政策可能非常模糊。以下是拒绝的几种可能性,但我建议通过电子邮件将其发送给,然后说:“请具体说明问题所在”。

    尽管在您的情况中,他们突出显示了您认为我指的是您帖子中的部分(粗体)。

    根据政策违反政策的示例

    以下是一些常见违规示例:

    Apps that block or interfere with another app displaying ads.
    Game cheating apps that affect the gameplay of other apps.
    Apps that facilitate or provide instructions on how to hack services, software or hardware, or circumvent security protections.
    Apps that access or use a service or API in a manner that violates its terms of service.
    Apps that attempt to bypass system power management that are not eligible for whitelisting.

    在您的情况下,请重点关注以下内容,并确定您的应用程序是否正在执行任何操作(摘自您发布时的回复)。

    ..通过违反YouTube服务条款下载,获利或以其他方式访问YouTube视频。

    ....例如,您的应用程序可以非法流式传输YouTube上受版权保护的作品。

    以下是一些从“设备和网络滥用”策略本身开始的引用。

    https://play.google.com/about/privacy-security-deception/device-network-abuse/

    https://www.reddit.com/r/androiddev/comments/9qebyl/strike_due_to_a_very_vague_violation_of_device/

    How to fix the Device and Network abuse policy issue in Google play store app submission

    如果查看了您的应用程序以及上面写的内容后,仍然无法清楚为什么,请向Play商店发送电子邮件,询问更多详细信息。

    关于android - 我们如何在移动应用程序中使用YouTube视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54832264/

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