Kodi Community Forum
Show embedded thumbnail? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Discussions (https://forum.kodi.tv/forumdisplay.php?fid=222)
+--- Forum: Feature Requests (https://forum.kodi.tv/forumdisplay.php?fid=9)
+--- Thread: Show embedded thumbnail? (/showthread.php?tid=316729)

Pages: 1 2


Show embedded thumbnail? - smasha - 2017-06-17

I've got video files with embedded thumbnails, but the thumbnails aren't showing up.

Any ideas how I can get this to work?


RE: Show embedded thumbnail? - whysoserious - 2017-06-17

1.Are these vids commercially released movies/tv shows that have been correctly added to your library and properly scraped?

2. Are they home movies?

More info needed from you...


RE: Show embedded thumbnail? - Karellen - 2017-06-17

I am pretty sure that Kodi does not read tagged info from video files. Rather it uses the scraping process to populate the library with metadata.


RE: Show embedded thumbnail? - smasha - 2017-06-19

Is there a reason why Kodi wouldn't use embedded artwork (and other embedded data)?

Seems like this should be the default, rather than relying on a working internet connection (which may not be available), consuming bandwidth (which can be expensive in some places) and creating log files (on remote servers) that can be used to see what movies someone has, and when they're watching them, among other security and efficiency issues that this default behaviour opens.

Here's screen-shot of nautilus (file-browser on Ubuntu) showing embedded covers -
Image

I would've thought Kodi would default to similar behaviour.


RE: Show embedded thumbnail? - Gracus - 2017-06-19

(2017-06-19, 05:54)smasha Wrote: Is there a reason why Kodi wouldn't use embedded artwork (and other embedded data)?

Seems like this should be the default, rather than relying on a working internet connection (which may not be available), consuming bandwidth (which can be expensive in some places) and creating log files (on remote servers) that can be used to see what movies someone has, and when they're watching them, among other security and efficiency issues that this default behaviour opens.

Here's screen-shot of nautilus (file-browser on Ubuntu) showing embedded covers -
Image

I would've thought Kodi would default to similar behaviour.

I would guess you have download the artwork and find all other information on internet before putting them in your tag -> same security issue than with kodi scraping

About bandwith: once the first scraping of a movie has been made, you can export those info/artworks to local files and use them if you need one day to rebuild your kodi library

About working internet connection: same answer than about bandwith...


RE: Show embedded thumbnail? - smasha - 2017-06-19

That's a lot of guesses and assumptions.

Still, the default behaviour seems like a rather Goldberg-esque solution (relying on too many variables and dependencies and "moving parts") rather than defaulting to the simplest behaviour with the least dependencies.

Sure, if a file doesn't have this meta-data, then what's currently the default behaviour would be a very nice 2nd option. But it's an overly complicated and undesirable 1st option, that's (at best) an ugly kludge with my own original content.


RE: Show embedded thumbnail? - nickr - 2017-06-19

Most video formats do not have this info, nor is it often very good quality as it's designed for icons not full screen viewing. You could of course write a scraper that extracts such thumbnail.


Show embedded thumbnail? - mchp92 - 2017-06-19

(2017-06-19, 06:15)Gracus Wrote: About bandwith: once the first scraping of a movie has been made, you can export those info/artworks to local files and use them if you need one day to rebuild your kodi library

We have just established in another thread, that kodi does not automatically import / scrape (all) files it created on en earlier export....


RE: Show embedded thumbnail? - Gracus - 2017-06-19

(2017-06-19, 11:47)mchp92 Wrote:
(2017-06-19, 06:15)Gracus Wrote: About bandwith: once the first scraping of a movie has been made, you can export those info/artworks to local files and use them if you need one day to rebuild your kodi library

We have just established in another thread, that kodi does not automatically import / scrape (all) files it created on en earlier export....

At least it should

Even if there is a bug right now, the normal behaviour should be "use local info if i tell you to"


RE: Show embedded thumbnail? - smasha - 2017-06-20

(2017-06-19, 06:34)nickr Wrote: Most video formats do not have this info, nor is it often very good quality as it's designed for icons not full screen viewing. You could of course write a scraper that extracts such thumbnail.
MP4, MOV, M2TS, and MKV/WEBM are among the common containers that do support this. Anecdotally, MKV and MP4 seem to be the most common formats.

Not sure where I'd get started writing a scraper for this, but for someone who's more familiar with Kodi it shouldn't take too long to sort out. I mean, if I had to do this on a command line with ffmpeg or similar, it would take a few minutes.


RE: Show embedded thumbnail? - Karellen - 2017-06-20

I can move your thread to Feature Requests if you like...


RE: Show embedded thumbnail? - smasha - 2017-06-20

(2017-06-20, 06:01)Karellen Wrote: I can move your thread to Feature Requests if you like...
That'd be cool. Thanks.


RE: Show embedded thumbnail? - nickr - 2017-06-20

It's been in feature requests before, but go ahead.


RE: Show embedded thumbnail? - jjd-uk - 2017-06-20

(2017-06-20, 05:42)smasha Wrote:
(2017-06-19, 06:34)nickr Wrote: Most video formats do not have this info, nor is it often very good quality as it's designed for icons not full screen viewing. You could of course write a scraper that extracts such thumbnail.
MP4, MOV, M2TS, and MKV/WEBM are among the common containers that do support this. Anecdotally, MKV and MP4 seem to be the most common formats.

Not sure where I'd get started writing a scraper for this, but for someone who's more familiar with Kodi it shouldn't take too long to sort out. I mean, if I had to do this on a command line with ffmpeg or similar, it would take a few minutes.

It wouldn't part of a scraper, it would be part of the internal Media Info that does the codec, resolution etc retrieval which uses ffmpeg I believe.

If you know the ffmpeg commands to do this then perhaps post these here then hopefully someone with the knowledge of where to place the function will come along and implement it.


RE: Show embedded thumbnail? - nickr - 2017-06-20

And should it then replace part of what the scraper does? Or defer to the scraper? Which takes precedence?