Re: Trying to solve bug 240409

2013-02-26 Thread Abhinandan Ramprasath
On Mon, Feb 25, 2013 at 10:21 AM, Sergey Ivanov <123k...@gmail.com> wrote: > Hi. > Actually you can get much more data using TagLib. Fields mentioned by you > can be obtained using unified TagLib API, It works for all metadata > containers. You you need to get some extra data, you have to dig It b

Re: Trying to solve bug 240409

2013-02-24 Thread Sergey Ivanov
Hi. Actually you can get much more data using TagLib. Fields mentioned by you can be obtained using unified TagLib API, It works for all metadata containers. You you need to get some extra data, you have to dig It by yourself. Take a look on shared/tag_helpers/MP4TagHelper.cpp file in amarok reposi

Re: Trying to solve bug 240409

2013-02-23 Thread Abhinandan Ramprasath
Hi, After going through the source of TagLib, I can confidently say it currently does not support chapters in MP4 or M4A files. The information u can get out of the library includes title, album, artist, comment, year, track, genre. This information is directly available in the header of the MP4 f

Re: Trying to solve bug 240409

2013-02-21 Thread Abhinandan Ramprasath
On Thu, Feb 21, 2013 at 4:17 AM, Matěj Laitl wrote: > On 19. 2. 2013 Abhinandan Ramprasath wrote: > > This is what I've got so far, > > Nice research! > > > 1) mp4v2-2.0.0 supports chapters in mp4 files(mentioned on comment 2). > The > > format for chapter storage is specified between lines 2321

Re: Trying to solve bug 240409

2013-02-20 Thread Matěj Laitl
On 19. 2. 2013 Abhinandan Ramprasath wrote: > This is what I've got so far, Nice research! > 1) mp4v2-2.0.0 supports chapters in mp4 files(mentioned on comment 2). The > format for chapter storage is specified between lines 2321 and 2375 under > src/mp4file.cpp ( > http://code.google.com/p/mp4v2/

Re: Trying to solve bug 240409

2013-02-18 Thread Abhinandan Ramprasath
This is what I've got so far, 1) mp4v2-2.0.0 supports chapters in mp4 files(mentioned on comment 2). The format for chapter storage is specified between lines 2321 and 2375 under src/mp4file.cpp ( http://code.google.com/p/mp4v2/downloads/detail?name=mp4v2-2.0.0.tar.bz2 ) . 2) comment 2 in https:/

Re: Trying to solve bug 240409

2013-02-18 Thread Matěj Laitl
On 19. 2. 2013 Abhinandan Ramprasath wrote: > To solve the bug https://bugs.kde.org/show_bug.cgi?id=240409, Bug 240409 - be warned that it may turn out harder than expected, I dunno who marked it as a junior job. ;) > I was > thinking I could create a MultiTrack (Meta::MultiTrack) list with all

Re: Trying to solve bug 240409

2013-02-18 Thread Abhinandan Ramprasath
To solve the bug https://bugs.kde.org/show_bug.cgi?id=240409 , I was thinking I could create a MultiTrack (Meta::MultiTrack) list with all the chapters in a list one below the other and setting offsets to each chapter in the m4b file(which I still haven't figured out how). I do have a few question

Re: Trying to solve bug 240409

2013-02-18 Thread Abhinandan Ramprasath
It works :) thanks a lot! On Mon, Feb 18, 2013 at 11:30 PM, Myriam Schweingruber wrote: > On Mon, Feb 18, 2013 at 6:53 PM, Abhinandan Ramprasath > wrote: > > Thanks for the reply. However, It looks like a lot of the pages under > > http://community.kde.org/Development/ are unavailable, so are th

Re: Trying to solve bug 240409

2013-02-18 Thread Abhinandan Ramprasath
Thanks for the reply. However, It looks like a lot of the pages under http://community.kde.org/Development/ are unavailable, so are there some old documentations online I can get hold of? On Mon, Feb 18, 2013 at 11:12 PM, Myriam Schweingruber wrote: > Hi

Re: Trying to solve bug 240409

2013-02-18 Thread Myriam Schweingruber
On Mon, Feb 18, 2013 at 6:53 PM, Abhinandan Ramprasath wrote: > Thanks for the reply. However, It looks like a lot of the pages under > http://community.kde.org/Development/ are unavailable, so are there some old > documentations online I can get hold of? Oops, my bad, I typed that manually, here

Re: Trying to solve bug 240409

2013-02-18 Thread Myriam Schweingruber
Hi Abinandan. On Mon, Feb 18, 2013 at 5:56 PM, Abhinandan Ramprasath wrote: > Hi, > > I was looking at the junior jobs at the bug tracker and bug 240409 really > caught my eye. > > Thanks, > > Abhinandan > > ___ > Amarok-devel mailing list > Amarok-deve

Trying to solve bug 240409

2013-02-18 Thread Abhinandan Ramprasath
Hi, I was looking at the junior jobs at the bug tracker and bug 240409 really caught my eye. I spend a lot of time searching the code on where to start, but couldn't really get anywhere. so i was wondering if there is a book or guide that would help me find definitions of classes. Any pointers on