• 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 9
Solved Chapter Selector Window
#76
Hello, @ all users.
script.chapters Add-on was updated from 2.0.1 to 2.1.0.

2.1.0 - change log.
  • Fix - focus is fixed and does not move.
  • Change - automatically focus the chapter(scene) that is currently playing.
  • Add - analog clock(optional).
  • Add - Thumbnail(movie mode).
Instruction(movie mode only)
  • Select a scene.(Left,Right,Select:Left arrow,Right arrow,enter key)
  • Close chapter window.(Back,Previous menu:BackSpace,Esc key)
  • View mode select.(Up,Down:Up arrow,Down arrow key)
Other Instructions: Please See my post: #67

First, you should delete the old Add-on.
It is necessary to select the Add-on you want to use.
Frodo and Gotham Add-on:http://www.mediafire.com/download/07pp6r...m_Fix2.zip
Helix Add-on:http://www.mediafire.com/download/3z1udt...x_Fix2.zip

Thumbnail(movie mode) with analog clock enabled.
Image
Reply
#77
Great work so far!

But how about embedded chapters in mkv files?
Reply
#78
(2015-01-12, 21:53)ImpreZa Wrote: Great work so far!

But how about embedded chapters in mkv files?

There's some good work being done on that so far: https://github.com/xbmc/xbmc/pull/6006

I've been thinking of starting a test thread with builds that include the new chapter code, to help get feedback. It would also be a good way to figure out what to do about chapter names and other data that might need to be filled in by a scraper or something (depending on the movie).
Reply
#79
Hi, appreciate the effort, but where can I find the format of the chapter file?
If I have helped you or increased your knowledge, click the 'thumbs up' button to give thanks :) (People with less than 20 posts won't see the "thumbs up" button.)
Reply
#80
(2015-01-13, 10:30)nickr Wrote: Hi, appreciate the effort, but where can I find the format of the chapter file?

Is it, is that the chapter files of script.chapters Add-on??
Below if Add-on of the chapter format.
http://www.mediafire.com/download/6owj40..._files.zip
Reply
#81
Just tried this plugin and it works perfectly! Thank you!
Reply
#82
Why is the chapter format different from what I extract from all of my MKVs? I've tried pulling them out and renaming them to fit the mold, and none of them work. I didn't understand why until I looked at some of the sample files.

Am I misunderstanding something? Why use a different format?
Reply
#83
How are you extracting them?
If I have helped you or increased your knowledge, click the 'thumbs up' button to give thanks :) (People with less than 20 posts won't see the "thumbs up" button.)
Reply
#84
MKVextractGUI2

It's just a GUI interface for mkvextract, as the name implies.
Reply
#85
I'll try it. Does it have xml output?
If I have helped you or increased your knowledge, click the 'thumbs up' button to give thanks :) (People with less than 20 posts won't see the "thumbs up" button.)
Reply
#86
Yes, they come out as xml files. They're all the same format wise.
Reply
#87
Well the format you get from a different extraction tool will be, well different. mediainfo looks different. xml is meant to be easy to manipulate and change to a different xml spec.
If I have helped you or increased your knowledge, click the 'thumbs up' button to give thanks :) (People with less than 20 posts won't see the "thumbs up" button.)
Reply
#88
(2015-01-15, 10:20)nickr Wrote: Well the format you get from a different extraction tool will be, well different. mediainfo looks different. xml is meant to be easy to manipulate and change to a different xml spec.

I doubt its different at all. I *think* what I am extracting from the MKVs is the 'official' format. If I use mkvmerge to create an MKV, and manually enter in the chapter data, timing and names, this is the xml I will get.
I think this is what the format should be, not some alternate. Actually, the goal should be to support embedded chapters over external ones, and even then, external ones should fit the official spec.
If XML was so easy to manipulate, then I wouldn't have these issues. But there you have it.

I can paste some example xml files if you want.
Reply
#89
I have seen the output of mkvextract.
If I have helped you or increased your knowledge, click the 'thumbs up' button to give thanks :) (People with less than 20 posts won't see the "thumbs up" button.)
Reply
#90
(2015-01-14, 16:01)rd1979 Wrote: Am I misunderstanding something? Why use a different format?
This Add-on's prototype is very old, it was created at a time of xbmc ver.9.04.
And this time, mkv was not so much major.
The purpose is to operate outside of kodi.
It's purpose is to use a file that does not have the chapter.(avi,ts,mpg,etc.)
Without mux.

The use of mkv that have chapter is not considered.
Near future (kodi ver.15 ??), file with chapter (mkv, dvd, bru-ray, etc) would be a possible inside of kodi.
--------------------------------------------------------------------------------
About a format.(text format)
Add-on used SVCD(Super Video CD) format.
PHP Code:
Chapter 9 00:28:49:00 
mkv format
PHP Code:
CHAPTER09=00:28:49.000
CHAPTER09NAME
=Chapter 9 
--------------------------------------------------------------------------------
About a format.(xml format)
Add-on used Custom xml format. Because title2 and thumbnail are not included in mkv.
PHP Code:
<chapters>
    <
chapter mark="00:28:49" title="Chapter 9" title2="Description for chapter 9" thumb="image9.jpg" />
</
chapters
mkv format
PHP Code:
<Chapters>
  <
EditionEntry>
    <
EditionUID>6687870499309707912</EditionUID>
    <
EditionFlagDefault>0</EditionFlagDefault>
    <
EditionFlagHidden>0</EditionFlagHidden>
    <
ChapterAtom>
      <
ChapterUID>70292011890660525</ChapterUID>
      <
ChapterTimeStart>00:28:49:000</ChapterTimeStart>
      <
ChapterFlagHidden>0</ChapterFlagHidden>
      <
ChapterFlagEnabled>1</ChapterFlagEnabled>
      <
ChapterDisplay>
        <
ChapterString>Chapter 9</ChapterString>
        <
ChapterLanguage>und</ChapterLanguage>
      </
ChapterDisplay>
    </
ChapterAtom>
  </
EditionEntry>
</
Chapters
Reply
  • 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 9

Logout Mark Read Team Forum Stats Members Help
Chapter Selector Window3