TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Is my project legal? and should I forget about it if its not?

1 pointsby evexalmost 8 years ago
so long story&#x27;s short, I was building my project I called it &quot;yougle&quot;,<p>just like google you search for a word&#x2F;sentence and then you get where that string you entered appears in youtube videos,<p>I already coded the business logic of yougle, and I already can get where strings appear in videos of some popular youtube channels(pewdiepie, etc..),<p>but the thing is I&#x27;m not sure whether this subtitles database I got by scraping youtube is actually legit or not. I read the TOS(https:&#x2F;&#x2F;www.youtube.com&#x2F;t&#x2F;terms) of youtube it said that:<p>&quot;You agree not to use or launch any automated system, including without limitation, &quot;robots,&quot; &quot;spiders,&quot; or &quot;offline readers,&quot; that accesses the Service in a manner that sends more request messages to the YouTube servers in a given period of time than a human can reasonably produce in the same period by using a conventional on-line web browser. &quot;<p>violation #1? so basically this phrase is that you can&#x27;t scrape faster than a human can browse internet, and ofcourse it&#x27;ll take me years to collect data this way<p>violation #2? in the robots.txt(for those of who you don&#x27;t know what robots.txt file is, its a file that tells bots which endpoints they should not crawl) file of youtube, it have an endpoint that I&#x27;m using to get subtitles out of videos:<p>&quot;Disallow: &#x2F;timedtext_video&quot;<p>should I forget about my project? what can I do to keep on going with the project while keeping it legit?

2 comments

Tomtealmost 8 years ago
#1: obviously violates TOS<p>#2: rude, but probably okay<p>More important: &quot;yougle&quot; might be a trademark violation. I&#x27;d be surprised if it wasn&#x27;t.<p>About forgetting about it: that&#x27;s your decision. My personal take: I find the project utterly uninteresting, and there is no obvious business opportunity that might make the legal uncertainties worthwhile.
评论 #14513385 未加载
evexalmost 8 years ago
Turns out there is already an API for captions, so problem solved :)<p><a href="https:&#x2F;&#x2F;developers.google.com&#x2F;youtube&#x2F;v3&#x2F;docs&#x2F;captions" rel="nofollow">https:&#x2F;&#x2F;developers.google.com&#x2F;youtube&#x2F;v3&#x2F;docs&#x2F;captions</a>