Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support libsixel for rendering? #86

Open
vrthra opened this issue Jul 10, 2018 · 21 comments
Open

Support libsixel for rendering? #86

vrthra opened this issue Jul 10, 2018 · 21 comments

Comments

@vrthra
Copy link

vrthra commented Jul 10, 2018

Sixel is a way to do (non-pixelated) graphics and animation in the terminal such as Xterm. Support for its use is provided by libsixel. It can do animation or render images directly on the dec terminals. Here is netsurf (a tiny browser) running on an xterm. It would be great if browsh could support libsixel and produce non-pixelated images and animations on terminal.

@tombh
Copy link
Member

tombh commented Jul 10, 2018

Thanks for the suggestion but I'm actually already pretty decided against this. Simply because I want the basic Browsh engine to be as text-focused as possible, as then we have a universal source of the modern web in pure text format, that multiple other clients (terminals being only one) can make use of. And besides graphics are orders of magnitude more bandwidth heavy than text, which somewhat defeats the purpose of Browsh.

@osowiecki
Copy link

osowiecki commented Jul 10, 2018

How about injecting some JS into webpages to allow opening images in a popup with more "pixels"?

https://s33.postimg.cc/ab7p4xwan/Selection_094.png

https://gist.github.com/certik/4336299de10f400ee49943bd9f8a8ba6

@tobimensch
Copy link
Collaborator

tobimensch commented Jul 10, 2018

@tombh:
I think there's something to be said for a hybrid mode. Text-only should be the default, but the user should have the ability to request the full image. Both in tty and http mode (or a future dedicated client/protocol). At the very least the user should be able to retrieve the image's URL.

I think @osowiecki's suggestion to use JS to make it possible to load the image in a popup is great for http server mode.

@osowiecki
Copy link

Just being able to open the image in new tab should do the trick. Adding support for opening links in new tab would solve 2 issues at once.

@vrthra
Copy link
Author

vrthra commented Jul 10, 2018

@tombh

And besides graphics are orders of magnitude more bandwidth heavy than text, which somewhat defeats the purpose of Browsh.

I did not understand this. You are any way fetching images and videos to show it with aalib right? How does showing graphics on the xterm with libsixel instead of aalib have an impact on the bandwidth?

@osowiecki
Copy link

The idea is (as I understand it) that your remote server downloads entire image and then only sends a pixelated representation to your machine over internet (ssh).

@tobimensch
Copy link
Collaborator

@osowiecki:
Correct.

The use case of replacing elinks/lynx/w3m because browsh is a better text browser and not for bandwidth reasons wasn't the primary use case in mind when developing browsh.

So serving pixel perfect images hasn't been implemented because it doesn't help people stuck on very bad internet connections much.

On top of that there's no definite standard for displaying images in terminals, for example terminology has custom support for it, and then there's libsixel and whatnot, but there's no common standard, which means this is a lot of busy work.

I think @tombh might accept patches for features such as that, if someone wants to do work.

@osowiecki
Copy link

By the way. Pixelated images prevent people from solving google captchas (find all them cars). Maybe you can render those in better quality?

@tobimensch
Copy link
Collaborator

@osowiecki:
That's true. There are many applications that are next to impossible with pixelated images. Which means that browsh in its current form is simply not a general purpose browser. I hope that it can eventually get there, but first it must master it's speciality, which is low bandwidth text browsing, really well.

@tombh
Copy link
Member

tombh commented Jul 13, 2018

Some good ideas, thanks. So how about this:

  1. In the TTY client have some way to special-click on an image so that it takes up the whole TTY, whether that's in a new tab or the current tab. Bear in mind that it is impossible to increase the resolution of a TTY without the user manually decreasing the font size.
  2. (1) will be additional to the magnifying glass: Magnifying glass #33
  3. In the HTML service, inject all <img> elements with the original image's src so that again you can click if you feel inclined to download the full image.

Solving captchas is the perfect use case for the magnifying glass. Thoughts?

@tombh
Copy link
Member

tombh commented Jul 20, 2018

Closing for #137 and #147.

@Xeddius
Copy link

Xeddius commented May 22, 2021

I don't think the developer understands how sixels actually work, you have to understand that images are not being sent, instead libsixel is converting the image to a specific text sequence that is then rendered as an image on the client terminal, the overhead is minimal and would allow full image support from browsh. At least consider the option as browsing the web in purely text is a little too minimal in some cases, there are times where higher resolution images are required and sixel support can definitely help provide that while still keeping bandwidth usage very low.

@tombh
Copy link
Member

tombh commented May 22, 2021

Oh I didn't know that! Reopening...

@tombh tombh reopened this May 22, 2021
@Mart-Bogdan
Copy link

IMHO sixel is useless as it's supported only on couple of terminal emulators.

@ctrlcctrlv
Copy link

Not for long. Support is being worked on for kitty. (kovidgoyal/kitty#2511.)

@evert-mouw
Copy link

FYI: lots of info & links here...

https://saitoha.github.io/libsixel/

@nonetrix
Copy link

this would actually make me unironically consider using it as my main browser for the lolz

@0xrushi
Copy link

0xrushi commented Feb 25, 2022

Eagerly waiting for this in 2022 <3

@tombh
Copy link
Member

tombh commented Feb 25, 2022

Eagerly awaiting a way to make a living from Browsh in 2022 🥺

@Cuteistfox
Copy link

+1

1 similar comment
@dhelgerson
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests