Earlier quoted context omitted.
It would be easier to "make" these with semantic web. Maybe your browser would just have some generic viewer so that you would not have to make any at all.
I'm writing a small JavaScript engine that converts websites to JSON, and displays JSON as websites. Since an entire site is described in the same JSON file, the whole site is a single download, and it rebuilds pages in the browser instead of calling the server - much faster, especially on mobile. If the browser had this small engine, it could render these sites natively.
Show HN: Tube – Minimalist YouTube
71–80 of 116 posts
Re: Show HN: Tube – Minimalist YouTube
#72Earlier quoted context omitted.
Not sure how much you'd benefit from it, given that you've already got a good setup, but I just made a website called HookRSSTube[0] that essentially proxies YouTube RSS feeds and replaces the video playback with HookTube[1] instead. I'd love to know if you have any comments or suggestions. [0] https://hookrsstube.com [1] https://hooktube.com
+1 for hooktube! I now use a greasemonkey script to auto-redirect all youtube.com links to hooktube instead.
Re: Show HN: Tube – Minimalist YouTube
#73For some time I've been tinkering with a script which manages my own fine-grained youtube subscription preferences, periodically scrapes various pages for metadata, and then as necessary extracts videos by using the youtube-dl utility. The end result is a directory on my machine which always has a few interesting videos to watch, ad-free, tracking-free, network connection free, using my favorite full-featured video p…
Not sure how much you'd benefit from it, given that you've already got a good setup, but I just made a website called HookRSSTube[0] that essentially proxies YouTube RSS feeds and replaces the video playback with HookTube[1] instead. I'd love to know if you have any comments or suggestions. [0] https://hookrsstube.com [1] https://hooktube.com
Re: Show HN: Tube – Minimalist YouTube
#74I searched for "darkest dungeon" and first hits were for Ed Sheeran and One Direction. I know searching is a tricky problem, but this is ridiculously bad.
I got the same results for a completely unrelated term. Probably something hard-coded it's falling back on?
Actually, I can't see why OP wouldn't just use YT's search API (they have one). I'm pretty sure that's what OP uses. So yeah, like you said, probably some hard-coded fall-back.
Re: Show HN: Tube – Minimalist YouTube
#75Earlier quoted context omitted.
Ah, ok. Hopefully they don't nuke my account. No scraping or mean stuff, it's all above board and using Google's APIs.
Check the ToS of their APIs. I'm somewhat certain you aren't allowed to build alternative interfaces into their content.
Re: Show HN: Tube – Minimalist YouTube
#76Hijacking this thread to share other approaches to YouTube without YouTube. This site takes a YouTube URL, extracts the audio and adds a link to your personal podcast feed on huffduffer. It’s great for loading a bunch of interviews, lectures, and other things that don’t require the video into your podcast player. https://snarfed.org/2015-03-07_huffduff-video
Re: Show HN: Tube – Minimalist YouTube
#771) Oauth2 into my account so I can see new postings in my subscriptions (not "the one you've been avoiding clicking for 8 weeks")
2) Minimalist dashboard that doesn't have all the "recommended for you" clutter
3) Simple search results like the one here?
4) A "show me similar" button next to vids that would let me pick out my own recommendations if I want to expand on what I'm watching, and not get signed up for all the crap their broken algos throw at me
Re: Show HN: Tube – Minimalist YouTube
#78I'm seeing a permanent back arrow overlapping the video itself. Don't cover up the screen. At the end of the video, it still shows recommendations. Do you have any control over that? Can you set it to not show recommendations? It is missing comments. I can see why you would choose that, but I'd rather have comments (something I also miss when I watch YouTube on a Roku) and still not have recommendations because they…
Removed that. Originally I wanted it to make it easy to go search more, but meh, people can use the back button. :)
>At the end of the video, it still shows recommendations. Do you have any control over that? Can you set it to not show recommendations?
Not as far as I know. And from what I've read from YouTube's ToS, it wouldn't be ok with them. (Can't disable functionality)
>It is missing comments. I can see why you would choose that, but I'd rather have comments (something I also miss when I watch YouTube on a Roku) and still not have recommendations because they lead to watching too many videos.
I'll consider adding them on dropdown. :)
Re: Show HN: Tube – Minimalist YouTube
#79I have a 2-line shell script using only sed and curl (or equivalent) that obviates any need for youtube-dl, python, third party websites, etc. Unlike youtube-dl it will not download videos where the uploader is some commercial media outlet that wants to prohibit downloading.
Can you post this somewhere? Maybe a Github Gist?
https://news.ycombinator.com/user?id=textmode
Example usage: argv0 22 file
Where argv0 is the name of the script.
Where 22 is itag no. for HD mp4. 18 is itag no. for a lower quality mp4.
Will save video as file.mp4
If get HTTP 302, then retry.
If get HTTP 403, then retry or give up; video is probably commercial in nature and has restrictions.
Re: Show HN: Tube – Minimalist YouTube
#80Earlier quoted context omitted.
Check the ToS of their APIs. I'm somewhat certain you aren't allowed to build alternative interfaces into their content.
I'm not OP, but that would be strange -- they offer a search API and a video player API. It would mean that they offer all the tools for you to build an alternative interface and then not let you do that?