GithubHelp home page GithubHelp logo

audible.com-search-by-album's People

Contributors

acutemeowcenary avatar appeternal avatar bluebonnetsk avatar brianbeergod avatar maforget avatar romanoh avatar seanap avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

audible.com-search-by-album's Issues

Categories (genre)

@seanap , i have noticed that when a book dont have Categories (genre) (there is lot of books without categories, especial series parts) it stops the process because it dont have an "if" part, this days i did not had time to update my script, will soon i think. Its just an information if it happens to you.

imagem

Audible not populating fields

Hi Sean, I've got the most recent version of the Audible src file installed and when I go to search, the field is populated with relevant search data, but once I choose a result, I don't see any information return. Is it required that the files are from Audible for it to populate the id3 tags?

Examples below.

The Day Lincoln Was Shot

A Confederacy of Dunces

Confessions of an Economic Hitman

(Bounty) Audible Japan Source

If you have some time, would you be willing to create a Audible Japan source? I tried quickly replacing the domain to see if results would show up, but no bite. I also didn't feel like reading the documentation and figuring out the MP3Tag API.

If it's not too much time to add support, I have added a $20 bounty on Upwork here for some coffee money :) - https://www.upwork.com/jobs/~014fcca2d5f47bf1b9.

Audible.co.uk#Search by Album.src script

I've found 2 issues with Audible.co.uk#Search by Album.src on mp3tag 3.18, windows

  1. Artist field always has a a trailing ',' after the artists name
  2. The Composer field is not set by the script, even though the data is present in the source metadata

Thanks.

Search Does not find any thing

HI , I can not get this to work no matter what book or what search term I use nothing works for multiple books .
Could you please help me with this.
Some of the examples are listed below the book I am testing this on is Delphi Challenge: Delphi in Space, Book 9

Search Terms Tested and return a message saying no entries found.

  • Delphi in Space, Book 9
  • Delphi Challenge: Delphi in Space, Book 9
  • Bob Blanton Delphi Challenge
  • Delphi Challenge

Language is being autodetected based on IP

The search works correctly, but when trying to Preview the page it leads to an invalid URL. The Parser gives a 404 error.

The URL returned is https://www.audible.com/fr_CA/pd/Defiant-Audiobook/B0CMWFTYHJ?ipRedirectOverride=true&overrideBaseCountry

Forcing the language by adding &language=en_US to both the search and album URL fixes it.

audible.de Scraper not working (Missing metadata)

I can search for audiobooks and choose them but there are no tags available and i tried several different audiobooks aswell. The audible.com Scraper does indeed work.
Search Results: https://i.imgur.com/ENFX4lz.png
Missing metadata: https://i.imgur.com/mUx23y0.png

The debug file was a little below 1GB so i had to compress and split it into many small files.
debug-parts-01.zip
debug-parts-02.zip
debug-parts-03.zip

Any ideas or quick fixes for the source script file?

Thank you

Scraper not working any longer.

I updated mp3tag and it has broken the scraper. I've emailed mp3tag and they are looking into it as well. I have redownloaded the source file and tried that, then edited the source file's code for the center-3 fix that is on here but it does not work either. The app will search and locate but when you select the book and hit next the app crashes. I also tried reinstalling mp3tag from the website to have a fresh install. I have also tried more than one book and tried using the audible reference number. Issue doesn't appear to be with finding the book, but pulling the data perhaps.

Anyone else having issues?

Not pulling in or saving Subtitle

tl;dr the Subtitle is not being grabbed or saved properly.

I've honestly been trying to fix this for about 3-4 hours and I just can't get it to work. I tried messing with

# Set Album and correct Audible quirks
findline "<h1  class=\"bc-heading"
joinuntil "authorLabel"
findinline ">"
findinline ":" 1 1
movechar -1
if ":"
	findline "<h1  class=\"bc-heading"
	joinuntil "authorLabel"
	findinline ">"
	outputto "Album"
	regexpreplace "</?[^><]+>" ""
	unspace
	regexpreplace "  +" " "
	sayuntil ":"
	outputto "subtitle"
	movechar 2
	sayuntil "<"
else
	findline "<h1  class=\"bc-heading"
	joinuntil "authorLabel"
	findinline ">" 1 1
	outputto "Album"
	sayuntil "<"
endif

# Subtitle of Album
regexpreplace "  +" " "
replace "<span class=\"bc-text bc-size-medium\" ></span>" ""
findinline "bc-text bc-size-medium\" " 1 1
if ">"
	movechar 1
	outputto "Subtitle"
	sayuntil "<"
else
	gotoline 1
endif

in any way - it either breaks the album search - or cannot find the Subtitle.

I've been using a few different audiobooks and I can't get it to pull it out in any of them.
(Testing ASINs: 0062877879, B0B8JSM6TT, 1250818125)

Here is the output that it's grabbing if that helps:

Script-Line    : 153
Command        : regexpreplace
Parameter 1    : >  +<
Parameter 2    : > <

Output         : >The Right Swipe<

Line and position:
<h1 class="bc-heading bc-color-base bc-size-large bc-text-bold" tabIndex='0' role='tabPanel'>The Right Swipe</h1> </li> <li class="bc-list-item	 bc-spacing-s2" > <span class="bc-text bc-size-medium" tabIndex='0' role='tabpanel' tabIndex='0' role='tabpanel'>A Novel</span> </li> <li class="bc-list-item	authorLabel" tabIndex='0' role='tabpanel'>
^

So in this use case, I would want "A Novel" saved as the subtitle, but it seems to be grabbing the title "The Right Swipe" instead.

I also have a feeling you're going to have to add something like:

findline ", \"subtitle\": \""
		unspace
		findinline ": \""
		outputto "Subtitle"
		sayuntil "\""

to a similar spot to where I added the image one last night/this morning

Sorry for the long-winded message - I wanted to make sure you had all of the info and some of the methods I tried.

MP3tag v1.6 for macOS (M1) crashing

MP3tag v1.6 for macOS was released with web source support.
But when I search on Audible an audiobook via your source, its crashing while loading the metadata.
Other sources loading fine without crashes

Any help in this case?


Translated Report (Full Report Below)

Process: Mp3tag [38534]
Path: /Applications/Mp3tag.app/Contents/MacOS/Mp3tag
Identifier: app.mp3tag.Mp3tag
Version: 1.6.0 (63)
App Item ID: 1532597159
App External ID: 851797134
Code Type: ARM-64 (Native)
Parent Process: launchd [1]
User ID: 501

Date/Time: 2022-08-26 08:36:42.1540 +0200
OS Version: macOS 12.5.1 (21G83)
Report Version: 12
Anonymous UUID: D1FF66D3-D913-F32E-2ED0-811EF5AFEF09

Sleep/Wake UUID: 50C74E60-77CA-4CFF-9977-7C3DBB78AA7F

Time Awake Since Boot: 87000 seconds
Time Since Wake: 5666 seconds

System Integrity Protection: enabled

Crashed Thread: 4 Dispatch queue: NSOperationQueue 0x142defb70 (QOS: UNSPECIFIED)

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY

Application Specific Information:
abort() called

Application Specific Backtrace 0:
0 CoreFoundation 0x0000000183f811a8 __exceptionPreprocess + 240
1 libobjc.A.dylib 0x0000000183ccbe04 objc_exception_throw + 60
2 Foundation 0x0000000184ddf130 -[NSRegularExpression(NSMatching) enumerateMatchesInString:options:range:usingBlock:] + 1848
3 Foundation 0x0000000184e16350 -[NSRegularExpression(NSMatching) matchesInString:options:range:] + 196
4 Mp3tag 0x00000001047ee078 Mp3tag + 712824
5 Mp3tag 0x00000001048ef638 Mp3tag + 1766968
6 Mp3tag 0x00000001047c9f20 Mp3tag + 565024
7 Mp3tag 0x00000001047c9afc Mp3tag + 563964
8 CFNetwork 0x0000000188b50668 CFURLCredentialStorageCopyAllCredentials + 24388
9 CFNetwork 0x0000000188ae2624 CFURLRequestCopyAllHTTPHeaderFields + 8880
10 Foundation 0x0000000184dc46fc NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK + 24
11 Foundation 0x0000000184dc45a4 -[NSBlockOperation main] + 104
12 Foundation 0x0000000184dc4534 NSOPERATION_IS_INVOKING_MAIN + 24
13 Foundation 0x0000000184dc37cc -[NSOperation start] + 788
14 Foundation 0x0000000184dc34b0 NSOPERATIONQUEUE_IS_STARTING_AN_OPERATION + 24
15 Foundation 0x0000000184dc3368 __NSOQSchedule_f + 184
16 libdispatch.dylib 0x0000000183c7efb4 _dispatch_block_async_invoke2 + 148
17 libdispatch.dylib 0x0000000183c701b4 _dispatch_client_callout + 20
18 libdispatch.dylib 0x0000000183c73670 _dispatch_continuation_pop + 500
19 libdispatch.dylib 0x0000000183c72cdc _dispatch_async_redirect_invoke + 584
20 libdispatch.dylib 0x0000000183c818e8 _dispatch_root_queue_drain + 396
21 libdispatch.dylib 0x0000000183c82104 _dispatch_worker_thread2 + 164
22 libsystem_pthread.dylib 0x0000000183e30324 _pthread_wqthread + 228
23 libsystem_pthread.dylib 0x0000000183e2f080 start_wqthread + 8

Thread 0:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x183df68b0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x183df6d20 mach_msg + 76
2 CoreFoundation 0x183f012c0 __CFRunLoopServiceMachPort + 372
3 CoreFoundation 0x183eff770 __CFRunLoopRun + 1180
4 CoreFoundation 0x183efeb34 CFRunLoopRunSpecific + 600
5 HIToolbox 0x18cb3e338 RunCurrentEventLoopInMode + 292
6 HIToolbox 0x18cb3e0b4 ReceiveNextEventCommon + 564
7 HIToolbox 0x18cb3de68 _BlockUntilNextEventMatchingListInModeWithFilter + 72
8 AppKit 0x186a6651c _DPSNextEvent + 860
9 AppKit 0x186a64e14 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1328
10 AppKit 0x186d184b4 -[NSApplication _doModalLoop:peek:] + 308
11 AppKit 0x186d16fa4 __35-[NSApplication runModalForWindow:]_block_invoke_2 + 72
12 AppKit 0x186d16f40 __35-[NSApplication runModalForWindow:]_block_invoke + 108
13 AppKit 0x186d166d4 _NSTryRunModal + 128
14 AppKit 0x186d16584 -[NSApplication runModalForWindow:] + 148
15 Mp3tag 0x1048b1900 0x104740000 + 1513728
16 Mp3tag 0x1048ba484 0x104740000 + 1549444
17 AppKit 0x186c6a5c8 -[NSApplication(NSResponder) sendAction:to:from:] + 460
18 AppKit 0x186d602ec -[NSMenuItem _corePerformAction] + 444
19 AppKit 0x186d5ffe0 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 100
20 AppKit 0x186da8bd8 -[NSMenu performActionForItemAtIndex:] + 200
21 AppKit 0x186da8af8 -[NSMenu _internalPerformActionForItemAtIndex:] + 100
22 AppKit 0x186da8904 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 116
23 AppKit 0x186d43e70 NSSLMMenuEventHandler + 728
24 HIToolbox 0x18cb166c8 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1084
25 HIToolbox 0x18cb15b4c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 356
26 HIToolbox 0x18cb2be50 SendEventToEventTarget + 40
27 HIToolbox 0x18cb8c870 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 416
28 HIToolbox 0x18cbb19ac SendMenuCommandWithContextAndModifiers + 56
29 HIToolbox 0x18cbb193c SendMenuItemSelectedEvent + 352
30 HIToolbox 0x18cbb1768 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 100
31 HIToolbox 0x18cce1a10 PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, unsigned int, Rect const*, unsigned short, unsigned int, Rect const*, Rect const*, __CFDictionary const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1824
32 HIToolbox 0x18cce0ed4 _HandlePopUpMenuSelection8(OpaqueMenuRef*, OpaqueEventRef*, unsigned int, Point, unsigned short, unsigned int, unsigned int, Rect const*, unsigned short, Rect const*, Rect const*, __CFDictionary const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 612
33 HIToolbox 0x18cb945a0 _HandlePopUpMenuSelectionWithDictionary + 380
34 AppKit 0x186f01bbc SLMPerformPopUpCarbonMenu + 1796
35 AppKit 0x186da2860 _NSSLMPopUpCarbonMenu3 + 848
36 AppKit 0x186da2420 -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOptions:] + 392
37 AppKit 0x186d655cc -[NSSegmentedCell trackMouse:inRect:ofView:untilMouseUp:] + 1204
38 AppKit 0x186c65910 -[NSControl mouseDown:] + 632
39 AppKit 0x186c63d80 -[NSWindow(NSEventRouting) _handleMouseDownEvent:isDelayedEvent:] + 4528
40 AppKit 0x186bd7100 -[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:] + 2444
41 AppKit 0x186bd650c -[NSWindow(NSEventRouting) sendEvent:] + 348
42 AppKit 0x186bd54b4 -[NSApplication(NSEvent) sendEvent:] + 2780
43 AppKit 0x186e8f0f4 -[NSApplication _handleEvent:] + 76
44 AppKit 0x186a57008 -[NSApplication run] + 636
45 AppKit 0x186a286fc NSApplicationMain + 1132
46 Mp3tag 0x1047ba720 0x104740000 + 501536
47 dyld 0x104ebd08c start + 520

Thread 1:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x183df68b0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x183df6d20 mach_msg + 76
2 CoreFoundation 0x183f012c0 __CFRunLoopServiceMachPort + 372
3 CoreFoundation 0x183eff770 __CFRunLoopRun + 1180
4 CoreFoundation 0x183efeb34 CFRunLoopRunSpecific + 600
5 AppKit 0x186bd3100 _NSEventThread + 196
6 libsystem_pthread.dylib 0x183e3426c _pthread_start + 148
7 libsystem_pthread.dylib 0x183e2f08c thread_start + 8

Thread 2:
0 libsystem_pthread.dylib 0x183e2f078 start_wqthread + 0

Thread 3:
0 libsystem_pthread.dylib 0x183e2f078 start_wqthread + 0

Thread 4 Crashed:: Dispatch queue: NSOperationQueue 0x142defb70 (QOS: UNSPECIFIED)
0 libsystem_kernel.dylib 0x183dfed98 __pthread_kill + 8
1 libsystem_pthread.dylib 0x183e33ee0 pthread_kill + 288
2 libsystem_c.dylib 0x183d6e340 abort + 168
3 libc++abi.dylib 0x183deeb08 abort_message + 132
4 libc++abi.dylib 0x183dde950 demangling_terminate_handler() + 336
5 libobjc.A.dylib 0x183cd4320 _objc_terminate() + 144
6 libc++abi.dylib 0x183dedea4 std::__terminate(void (*)()) + 20
7 libc++abi.dylib 0x183dede40 std::terminate() + 64
8 libdispatch.dylib 0x183c701c8 _dispatch_client_callout + 40
9 libdispatch.dylib 0x183c73670 _dispatch_continuation_pop + 500
10 libdispatch.dylib 0x183c72cdc _dispatch_async_redirect_invoke + 584
11 libdispatch.dylib 0x183c818e8 _dispatch_root_queue_drain + 396
12 libdispatch.dylib 0x183c82104 _dispatch_worker_thread2 + 164
13 libsystem_pthread.dylib 0x183e30324 _pthread_wqthread + 228
14 libsystem_pthread.dylib 0x183e2f080 start_wqthread + 8

Thread 5:
0 libsystem_pthread.dylib 0x183e2f078 start_wqthread + 0

Thread 6:
0 libsystem_pthread.dylib 0x183e2f078 start_wqthread + 0

Thread 7:
0 libsystem_pthread.dylib 0x183e2f078 start_wqthread + 0

Thread 8:
0 libsystem_pthread.dylib 0x183e2f078 start_wqthread + 0

Thread 9:
0 libsystem_pthread.dylib 0x183e2f078 start_wqthread + 0

Thread 10:
0 libsystem_pthread.dylib 0x183e2f078 start_wqthread + 0

Thread 11:
0 libsystem_pthread.dylib 0x183e2f078 start_wqthread + 0

Thread 12:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x183df68b0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x183df6d20 mach_msg + 76
2 CoreFoundation 0x183f012c0 __CFRunLoopServiceMachPort + 372
3 CoreFoundation 0x183eff770 __CFRunLoopRun + 1180
4 CoreFoundation 0x183efeb34 CFRunLoopRunSpecific + 600
5 CFNetwork 0x188cf6638 0x188a8b000 + 2537016
6 Foundation 0x184ddc60c NSThread__start + 808
7 libsystem_pthread.dylib 0x183e3426c _pthread_start + 148
8 libsystem_pthread.dylib 0x183e2f08c thread_start + 8

Thread 4 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
x4: 0x0000000183df20f5 x5: 0x000000016b8ea960 x6: 0x000000000000006e x7: 0x0000000000000001
x8: 0x3970ed5d3d5bb778 x9: 0x3970ed5c56d50778 x10: 0x0000000000000200 x11: 0x000000000000000b
x12: 0x000000000000000b x13: 0x00000001843422ed x14: 0x0000000183df211b x15: 0x0000000000dbede2
x16: 0x0000000000000148 x17: 0x00000001ddf57680 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x000000016b8eb000 x21: 0x000000000000aa07 x22: 0x000000016b8eb0e0 x23: 0x0000000000000000
x24: 0x0000000000000000 x25: 0x000000016b8eb0e0 x26: 0x00000001dcd8c200 x27: 0x000000016b8eb180
x28: 0x00000000000005ff fp: 0x000000016b8ea8d0 lr: 0x0000000183e33ee0
sp: 0x000000016b8ea8b0 pc: 0x0000000183dfed98 cpsr: 0x40001000
far: 0x000000013216f910 esr: 0x56000080 Address size fault

Binary Images:
0x183df5000 - 0x183e2cfff libsystem_kernel.dylib () /usr/lib/system/libsystem_kernel.dylib
0x183e7c000 - 0x1843c2fff com.apple.CoreFoundation (6.9) <1643f3d9-7049-37e4-b844-c0c0a42bde3b> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x18cb0c000 - 0x18ce3ffff com.apple.HIToolbox (2.1.1) <7112f6f2-a77e-39db-83c8-f627b8a49df8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x186a25000 - 0x1878ddfff com.apple.AppKit (6.9) <07bc3607-552a-3eb9-a941-4911c589dbc5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x104740000 - 0x104aabfff app.mp3tag.Mp3tag (1.6.0) <5a4d52af-d8e5-3f41-9f61-01f807a16cda> /Applications/Mp3tag.app/Contents/MacOS/Mp3tag
0x104eb8000 - 0x104f17fff dyld (
) <75627683-a780-32ad-ae34-cf86dd23a26b> /usr/lib/dyld
0x183e2d000 - 0x183e39fff libsystem_pthread.dylib () /usr/lib/system/libsystem_pthread.dylib
0x183cf4000 - 0x183d75fff libsystem_c.dylib (
) <93fc2587-038e-31e1-b16b-369979e72cb1> /usr/lib/system/libsystem_c.dylib
0x183ddd000 - 0x183df4fff libc++abi.dylib () /usr/lib/libc++abi.dylib
0x183cb3000 - 0x183cf0fff libobjc.A.dylib (
) <3d936842-5903-31ad-b1ae-1de4f4b448a6> /usr/lib/libobjc.A.dylib
0x183c6c000 - 0x183cb2fff libdispatch.dylib (*) <035d23d9-4cb5-3759-9059-1f7878f89fee> /usr/lib/system/libdispatch.dylib
0x188a8b000 - 0x188f3ffff com.apple.CFNetwork (1335.0.3) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x184d80000 - 0x185171fff com.apple.Foundation (6.9) <59ff845a-05b2-3b64-ae06-6ef1d6aee83e> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 0
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%)
Writable regions: Total=449.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=449.1M(100%)

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 896K 7
Activity Tracing 256K 1
CG backing stores 4032K 4
CG image 1792K 44
CG raster data 64K 1
ColorSync 640K 28
CoreAnimation 52.5M 867
CoreGraphics 32K 2
CoreImage 400K 1
CoreServices 624K 2
CoreUI image data 4464K 34
Dispatch continuations 80.0M 1
Foundation 64K 2
Image IO 32K 1
Kernel Alloc Once 32K 1
MALLOC 183.4M 85
MALLOC guard page 288K 14
MALLOC_MEDIUM (reserved) 112.0M 1 reserved VM address space (unallocated)
SQLite page cache 192K 3
STACK GUARD 56.2M 13
Stack 14.4M 13
VM_ALLOCATE 480K 18
__AUTH 2523K 298
__AUTH_CONST 19.7M 490
__CTF 756 1
__DATA 15.0M 482
__DATA_CONST 17.6M 498
__DATA_DIRTY 1724K 205
__FONT_DATA 4K 1
__LINKEDIT 578.0M 7
__OBJC_CONST 3379K 267
__OBJC_RO 83.0M 1
__OBJC_RW 3168K 1
__TEXT 486.3M 516
__UNICODE 592K 1
dyld private memory 1024K 1
libnetwork 1664K 24
mapped file 203.0M 41
shared memory 1360K 13
=========== ======= =======
TOTAL 1.9G 3990
TOTAL, minus reserved VM space 1.8G 3990


Full Report

{"app_name":"Mp3tag","timestamp":"2022-08-26 08:36:42.00 +0200","app_version":"1.6.0","slice_uuid":"5a4d52af-d8e5-3f41-9f61-01f807a16cda","adam_id":"1532597159","build_version":"63","platform":1,"bundleID":"app.mp3tag.Mp3tag","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"macOS 12.5.1 (21G83)","incident_id":"43CC4B23-13AF-4F5C-8D1C-1F773681655F","name":"Mp3tag"}
{
"uptime" : 87000,
"procLaunch" : "2022-08-26 08:36:09.8734 +0200",
"procRole" : "Foreground",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "MacBookPro18,1",
"procStartAbsTime" : 2102689251199,
"coalitionID" : 22667,
"osVersion" : {
"train" : "macOS 12.5.1",
"build" : "21G83",
"releaseType" : "User"
},
"captureTime" : "2022-08-26 08:36:42.1540 +0200",
"incident" : "43CC4B23-13AF-4F5C-8D1C-1F773681655F",
"bug_type" : "309",
"pid" : 38534,
"procExitAbsTime" : 2103463661099,
"translated" : false,
"cpuType" : "ARM-64",
"procName" : "Mp3tag",
"procPath" : "/Applications/Mp3tag.app/Contents/MacOS/Mp3tag",
"bundleInfo" : {"CFBundleShortVersionString":"1.6.0","CFBundleVersion":"63","CFBundleIdentifier":"app.mp3tag.Mp3tag"},
"storeInfo" : {"storeCohortMetadata":"7|date=1613655000000&sf=143443&rdom=mp3tag.app&rapp=com.apple.Safari&pgtp=Software&pgid=1532597159&prpg=Software_1532597159&ctxt=Discover","itemID":"1532597159","deviceIdentifierForVendor":"39AF0AFC-6D4C-5404-9578-8625C64F3CAE","thirdParty":true,"softwareVersionExternalIdentifier":"851797134"},
"parentProc" : "launchd",
"parentPid" : 1,
"coalitionName" : "app.mp3tag.Mp3tag",
"crashReporterKey" : "D1FF66D3-D913-F32E-2ED0-811EF5AFEF09",
"wakeTime" : 5666,
"sleepWakeUUID" : "50C74E60-77CA-4CFF-9977-7C3DBB78AA7F",
"sip" : "enabled",
"isCorpse" : 1,
"exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"},
"asi" : {"libsystem_c.dylib":["abort() called"]},
"asiBacktraces" : ["0 CoreFoundation 0x0000000183f811a8 __exceptionPreprocess + 240\n1 libobjc.A.dylib 0x0000000183ccbe04 objc_exception_throw + 60\n2 Foundation 0x0000000184ddf130 -[NSRegularExpression(NSMatching) enumerateMatchesInString:options:range:usingBlock:] + 1848\n3 Foundation 0x0000000184e16350 -[NSRegularExpression(NSMatching) matchesInString:options:range:] + 196\n4 Mp3tag 0x00000001047ee078 Mp3tag + 712824\n5 Mp3tag 0x00000001048ef638 Mp3tag + 1766968\n6 Mp3tag 0x00000001047c9f20 Mp3tag + 565024\n7 Mp3tag 0x00000001047c9afc Mp3tag + 563964\n8 CFNetwork 0x0000000188b50668 CFURLCredentialStorageCopyAllCredentials + 24388\n9 CFNetwork 0x0000000188ae2624 CFURLRequestCopyAllHTTPHeaderFields + 8880\n10 Foundation 0x0000000184dc46fc NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK + 24\n11 Foundation 0x0000000184dc45a4 -[NSBlockOperation main] + 104\n12 Foundation 0x0000000184dc4534 NSOPERATION_IS_INVOKING_MAIN + 24\n13 Foundation 0x0000000184dc37cc -[NSOperation start] + 788\n14 Foundation 0x0000000184dc34b0 NSOPERATIONQUEUE_IS_STARTING_AN_OPERATION + 24\n15 Foundation 0x0000000184dc3368 __NSOQSchedule_f + 184\n16 libdispatch.dylib 0x0000000183c7efb4 _dispatch_block_async_invoke2 + 148\n17 libdispatch.dylib 0x0000000183c701b4 _dispatch_client_callout + 20\n18 libdispatch.dylib 0x0000000183c73670 _dispatch_continuation_pop + 500\n19 libdispatch.dylib 0x0000000183c72cdc _dispatch_async_redirect_invoke + 584\n20 libdispatch.dylib 0x0000000183c818e8 _dispatch_root_queue_drain + 396\n21 libdispatch.dylib 0x0000000183c82104 _dispatch_worker_thread2 + 164\n22 libsystem_pthread.dylib 0x0000000183e30324 _pthread_wqthread + 228\n23 libsystem_pthread.dylib 0x0000000183e2f080 start_wqthread + 8"],
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
"lastExceptionBacktrace" : [{"imageOffset":1069460,"symbol":"__exceptionPreprocess","symbolLocation":220,"imageIndex":1},{"imageOffset":101892,"symbol":"objc_exception_throw","symbolLocation":60,"imageIndex":9},{"imageOffset":389424,"symbol":"-[NSRegularExpression(NSMatching) enumerateMatchesInString:options:range:usingBlock:]","symbolLocation":1848,"imageIndex":12},{"imageOffset":615248,"symbol":"-[NSRegularExpression(NSMatching) matchesInString:options:range:]","symbolLocation":196,"imageIndex":12},{"imageOffset":712824,"imageIndex":4},{"imageOffset":1766968,"imageIndex":4},{"imageOffset":565024,"imageIndex":4},{"imageOffset":563964,"imageIndex":4},{"imageOffset":808552,"imageIndex":11},{"imageOffset":357924,"imageIndex":11},{"imageOffset":280316,"symbol":"NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK","symbolLocation":24,"imageIndex":12},{"imageOffset":279972,"symbol":"-[NSBlockOperation main]","symbolLocation":104,"imageIndex":12},{"imageOffset":279860,"symbol":"NSOPERATION_IS_INVOKING_MAIN","symbolLocation":24,"imageIndex":12},{"imageOffset":276428,"symbol":"-[NSOperation start]","symbolLocation":788,"imageIndex":12},{"imageOffset":275632,"symbol":"NSOPERATIONQUEUE_IS_STARTING_AN_OPERATION","symbolLocation":24,"imageIndex":12},{"imageOffset":275304,"symbol":"__NSOQSchedule_f","symbolLocation":184,"imageIndex":12},{"imageOffset":77748,"symbol":"_dispatch_block_async_invoke2","symbolLocation":148,"imageIndex":10},{"imageOffset":16820,"symbol":"_dispatch_client_callout","symbolLocation":20,"imageIndex":10},{"imageOffset":30320,"symbol":"_dispatch_continuation_pop","symbolLocation":500,"imageIndex":10},{"imageOffset":27868,"symbol":"_dispatch_async_redirect_invoke","symbolLocation":584,"imageIndex":10},{"imageOffset":88296,"symbol":"_dispatch_root_queue_drain","symbolLocation":396,"imageIndex":10},{"imageOffset":90372,"symbol":"_dispatch_worker_thread2","symbolLocation":164,"imageIndex":10},{"imageOffset":13092,"symbol":"_pthread_wqthread","symbolLocation":228,"imageIndex":6},{"imageOffset":8320,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":6}],
"faultingThread" : 4,
"threads" : [{"id":810616,"queue":"com.apple.main-thread","frames":[{"imageOffset":6320,"symbol":"mach_msg_trap","symbolLocation":8,"imageIndex":0},{"imageOffset":7456,"symbol":"mach_msg","symbolLocation":76,"imageIndex":0},{"imageOffset":545472,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":372,"imageIndex":1},{"imageOffset":538480,"symbol":"__CFRunLoopRun","symbolLocation":1180,"imageIndex":1},{"imageOffset":535348,"symbol":"CFRunLoopRunSpecific","symbolLocation":600,"imageIndex":1},{"imageOffset":205624,"symbol":"RunCurrentEventLoopInMode","symbolLocation":292,"imageIndex":2},{"imageOffset":204980,"symbol":"ReceiveNextEventCommon","symbolLocation":564,"imageIndex":2},{"imageOffset":204392,"symbol":"_BlockUntilNextEventMatchingListInModeWithFilter","symbolLocation":72,"imageIndex":2},{"imageOffset":267548,"symbol":"_DPSNextEvent","symbolLocation":860,"imageIndex":3},{"imageOffset":261652,"symbol":"-[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:]","symbolLocation":1328,"imageIndex":3},{"imageOffset":3093684,"symbol":"-[NSApplication _doModalLoop:peek:]","symbolLocation":308,"imageIndex":3},{"imageOffset":3088292,"symbol":"__35-[NSApplication runModalForWindow:]_block_invoke_2","symbolLocation":72,"imageIndex":3},{"imageOffset":3088192,"symbol":"__35-[NSApplication runModalForWindow:]_block_invoke","symbolLocation":108,"imageIndex":3},{"imageOffset":3086036,"symbol":"_NSTryRunModal","symbolLocation":128,"imageIndex":3},{"imageOffset":3085700,"symbol":"-[NSApplication runModalForWindow:]","symbolLocation":148,"imageIndex":3},{"imageOffset":1513728,"imageIndex":4},{"imageOffset":1549444,"imageIndex":4},{"imageOffset":2381256,"symbol":"-[NSApplication(NSResponder) sendAction:to:from:]","symbolLocation":460,"imageIndex":3},{"imageOffset":3388140,"symbol":"-[NSMenuItem _corePerformAction]","symbolLocation":444,"imageIndex":3},{"imageOffset":3387360,"symbol":"-[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:]","symbolLocation":100,"imageIndex":3},{"imageOffset":3685336,"symbol":"-[NSMenu performActionForItemAtIndex:]","symbolLocation":200,"imageIndex":3},{"imageOffset":3685112,"symbol":"-[NSMenu _internalPerformActionForItemAtIndex:]","symbolLocation":100,"imageIndex":3},{"imageOffset":3684612,"symbol":"-[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:]","symbolLocation":116,"imageIndex":3},{"imageOffset":3272304,"symbol":"NSSLMMenuEventHandler","symbolLocation":728,"imageIndex":3},{"imageOffset":42696,"symbol":"DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*)","symbolLocation":1084,"imageIndex":2},{"imageOffset":39756,"symbol":"SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*)","symbolLocation":356,"imageIndex":2},{"imageOffset":130640,"symbol":"SendEventToEventTarget","symbolLocation":40,"imageIndex":2},{"imageOffset":526448,"symbol":"SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**)","symbolLocation":416,"imageIndex":2},{"imageOffset":678316,"symbol":"SendMenuCommandWithContextAndModifiers","symbolLocation":56,"imageIndex":2},{"imageOffset":678204,"symbol":"SendMenuItemSelectedEvent","symbolLocation":352,"imageIndex":2},{"imageOffset":677736,"symbol":"FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*)","symbolLocation":100,"imageIndex":2},{"imageOffset":1923600,"symbol":"PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, unsigned int, Rect const*, unsigned short, unsigned int, Rect const*, Rect const*, __CFDictionary const*, __CFString const*, OpaqueMenuRef**, unsigned short*)","symbolLocation":1824,"imageIndex":2},{"imageOffset":1920724,"symbol":"_HandlePopUpMenuSelection8(OpaqueMenuRef*, OpaqueEventRef*, unsigned int, Point, unsigned short, unsigned int, unsigned int, Rect const*, unsigned short, Rect const*, Rect const*, __CFDictionary const*, __CFString const*, OpaqueMenuRef**, unsigned short*)","symbolLocation":612,"imageIndex":2},{"imageOffset":558496,"symbol":"_HandlePopUpMenuSelectionWithDictionary","symbolLocation":380,"imageIndex":2},{"imageOffset":5098428,"symbol":"SLMPerformPopUpCarbonMenu","symbolLocation":1796,"imageIndex":3},{"imageOffset":3659872,"symbol":"_NSSLMPopUpCarbonMenu3","symbolLocation":848,"imageIndex":3},{"imageOffset":3658784,"symbol":"-[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOptions:]","symbolLocation":392,"imageIndex":3},{"imageOffset":3409356,"symbol":"-[NSSegmentedCell trackMouse:inRect:ofView:untilMouseUp:]","symbolLocation":1204,"imageIndex":3},{"imageOffset":2361616,"symbol":"-[NSControl mouseDown:]","symbolLocation":632,"imageIndex":3},{"imageOffset":2354560,"symbol":"-[NSWindow(NSEventRouting) _handleMouseDownEvent:isDelayedEvent:]","symbolLocation":4528,"imageIndex":3},{"imageOffset":1777920,"symbol":"-[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:]","symbolLocation":2444,"imageIndex":3},{"imageOffset":1774860,"symbol":"-[NSWindow(NSEventRouting) sendEvent:]","symbolLocation":348,"imageIndex":3},{"imageOffset":1770676,"symbol":"-[NSApplication(NSEvent) sendEvent:]","symbolLocation":2780,"imageIndex":3},{"imageOffset":4628724,"symbol":"-[NSApplication _handleEvent:]","symbolLocation":76,"imageIndex":3},{"imageOffset":204808,"symbol":"-[NSApplication run]","symbolLocation":636,"imageIndex":3},{"imageOffset":14076,"symbol":"NSApplicationMain","symbolLocation":1132,"imageIndex":3},{"imageOffset":501536,"imageIndex":4},{"imageOffset":20620,"symbol":"start","symbolLocation":520,"imageIndex":5}]},{"id":810658,"name":"com.apple.NSEventThread","frames":[{"imageOffset":6320,"symbol":"mach_msg_trap","symbolLocation":8,"imageIndex":0},{"imageOffset":7456,"symbol":"mach_msg","symbolLocation":76,"imageIndex":0},{"imageOffset":545472,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":372,"imageIndex":1},{"imageOffset":538480,"symbol":"__CFRunLoopRun","symbolLocation":1180,"imageIndex":1},{"imageOffset":535348,"symbol":"CFRunLoopRunSpecific","symbolLocation":600,"imageIndex":1},{"imageOffset":1761536,"symbol":"_NSEventThread","symbolLocation":196,"imageIndex":3},{"imageOffset":29292,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":6},{"imageOffset":8332,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}]},{"id":810928,"frames":[{"imageOffset":8312,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":810985,"frames":[{"imageOffset":8312,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"triggered":true,"id":811009,"threadState":{"x":[{"value":0},{"value":0},{"value":0},{"value":0},{"value":6507405557},{"value":6099478880},{"value":110},{"value":1},{"value":4139069042270648184},{"value":4139069038403061624},{"value":512},{"value":11},{"value":11},{"value":6512976621},{"value":6507405595},{"value":14413282},{"value":328},{"value":8018818688},{"value":0},{"value":6},{"value":6099480576},{"value":43527},{"value":6099480800},{"value":0},{"value":0},{"value":6099480800},{"value":8000160256,"symbolLocation":1152,"symbol":"_dispatch_root_queues"},{"value":6099480960},{"value":1535}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6507675360},"cpsr":{"value":1073745920},"fp":{"value":6099478736},"sp":{"value":6099478704},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6507457944,"matchesCrashFrame":1},"far":{"value":5135333648}},"queue":"NSOperationQueue 0x142defb70 (QOS: UNSPECIFIED)","frames":[{"imageOffset":40344,"symbol":"__pthread_kill","symbolLocation":8,"imageIndex":0},{"imageOffset":28384,"symbol":"pthread_kill","symbolLocation":288,"imageIndex":6},{"imageOffset":500544,"symbol":"abort","symbolLocation":168,"imageIndex":7},{"imageOffset":72456,"symbol":"abort_message","symbolLocation":132,"imageIndex":8},{"imageOffset":6480,"symbol":"demangling_terminate_handler()","symbolLocation":336,"imageIndex":8},{"imageOffset":135968,"symbol":"_objc_terminate()","symbolLocation":144,"imageIndex":9},{"imageOffset":69284,"symbol":"std::__terminate(void (*)())","symbolLocation":20,"imageIndex":8},{"imageOffset":69184,"symbol":"std::terminate()","symbolLocation":64,"imageIndex":8},{"imageOffset":16840,"symbol":"_dispatch_client_callout","symbolLocation":40,"imageIndex":10},{"imageOffset":30320,"symbol":"_dispatch_continuation_pop","symbolLocation":500,"imageIndex":10},{"imageOffset":27868,"symbol":"_dispatch_async_redirect_invoke","symbolLocation":584,"imageIndex":10},{"imageOffset":88296,"symbol":"_dispatch_root_queue_drain","symbolLocation":396,"imageIndex":10},{"imageOffset":90372,"symbol":"_dispatch_worker_thread2","symbolLocation":164,"imageIndex":10},{"imageOffset":13092,"symbol":"_pthread_wqthread","symbolLocation":228,"imageIndex":6},{"imageOffset":8320,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":6}]},{"id":811061,"frames":[{"imageOffset":8312,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":811062,"frames":[{"imageOffset":8312,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":811072,"frames":[{"imageOffset":8312,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":811073,"frames":[{"imageOffset":8312,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":811074,"frames":[{"imageOffset":8312,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":811076,"frames":[{"imageOffset":8312,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":811077,"frames":[{"imageOffset":8312,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":811080,"name":"com.apple.NSURLConnectionLoader","frames":[{"imageOffset":6320,"symbol":"mach_msg_trap","symbolLocation":8,"imageIndex":0},{"imageOffset":7456,"symbol":"mach_msg","symbolLocation":76,"imageIndex":0},{"imageOffset":545472,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":372,"imageIndex":1},{"imageOffset":538480,"symbol":"__CFRunLoopRun","symbolLocation":1180,"imageIndex":1},{"imageOffset":535348,"symbol":"CFRunLoopRunSpecific","symbolLocation":600,"imageIndex":1},{"imageOffset":2537016,"imageIndex":11},{"imageOffset":378380,"symbol":"NSThread__start","symbolLocation":808,"imageIndex":12},{"imageOffset":29292,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":6},{"imageOffset":8332,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}]}],
"usedImages" : [
{
"source" : "P",
"arch" : "arm64e",
"base" : 6507417600,
"size" : 229376,
"uuid" : "d5cdde7e-7037-3a70-9ce4-9e3847da6ce0",
"path" : "/usr/lib/system/libsystem_kernel.dylib",
"name" : "libsystem_kernel.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6507970560,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.CoreFoundation",
"size" : 5533696,
"uuid" : "1643f3d9-7049-37e4-b844-c0c0a42bde3b",
"path" : "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation",
"name" : "CoreFoundation",
"CFBundleVersion" : "1866"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6655361024,
"CFBundleShortVersionString" : "2.1.1",
"CFBundleIdentifier" : "com.apple.HIToolbox",
"size" : 3358720,
"uuid" : "7112f6f2-a77e-39db-83c8-f627b8a49df8",
"path" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox",
"name" : "HIToolbox"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6553751552,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.AppKit",
"size" : 15437824,
"uuid" : "07bc3607-552a-3eb9-a941-4911c589dbc5",
"path" : "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit",
"name" : "AppKit",
"CFBundleVersion" : "2113.60.148"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4369678336,
"CFBundleShortVersionString" : "1.6.0",
"CFBundleIdentifier" : "app.mp3tag.Mp3tag",
"size" : 3588096,
"uuid" : "5a4d52af-d8e5-3f41-9f61-01f807a16cda",
"path" : "/Applications/Mp3tag.app/Contents/MacOS/Mp3tag",
"name" : "Mp3tag",
"CFBundleVersion" : "63"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 4377509888,
"size" : 393216,
"uuid" : "75627683-a780-32ad-ae34-cf86dd23a26b",
"path" : "/usr/lib/dyld",
"name" : "dyld"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6507646976,
"size" : 53248,
"uuid" : "f32ff902-ba43-30b0-ad43-a2a8a9ff69fe",
"path" : "/usr/lib/system/libsystem_pthread.dylib",
"name" : "libsystem_pthread.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6506364928,
"size" : 532480,
"uuid" : "93fc2587-038e-31e1-b16b-369979e72cb1",
"path" : "/usr/lib/system/libsystem_c.dylib",
"name" : "libsystem_c.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6507319296,
"size" : 98304,
"uuid" : "a260a581-f4a9-3036-bb4f-16a9c6cc54d5",
"path" : "/usr/lib/libc++abi.dylib",
"name" : "libc++abi.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6506098688,
"size" : 253952,
"uuid" : "3d936842-5903-31ad-b1ae-1de4f4b448a6",
"path" : "/usr/lib/libobjc.A.dylib",
"name" : "libobjc.A.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6505807872,
"size" : 290816,
"uuid" : "035d23d9-4cb5-3759-9059-1f7878f89fee",
"path" : "/usr/lib/system/libdispatch.dylib",
"name" : "libdispatch.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6587723776,
"CFBundleShortVersionString" : "1335.0.3",
"CFBundleIdentifier" : "com.apple.CFNetwork",
"size" : 4935680,
"uuid" : "f0720ccf-fe46-3541-8835-dbaa254cef61",
"path" : "/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork",
"name" : "CFNetwork",
"CFBundleVersion" : "1335.0.3"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6523715584,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.Foundation",
"size" : 4136960,
"uuid" : "59ff845a-05b2-3b64-ae06-6ef1d6aee83e",
"path" : "/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation",
"name" : "Foundation",
"CFBundleVersion" : "1866"
}
],
"sharedCache" : {
"base" : 6504349696,
"size" : 3144712192,
"uuid" : "f8ab76fb-504c-32dd-a5db-15a1f2f028f8"
},
"vmSummary" : "ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%)\nWritable regions: Total=449.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=449.1M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 896K 7 \nActivity Tracing 256K 1 \nCG backing stores 4032K 4 \nCG image 1792K 44 \nCG raster data 64K 1 \nColorSync 640K 28 \nCoreAnimation 52.5M 867 \nCoreGraphics 32K 2 \nCoreImage 400K 1 \nCoreServices 624K 2 \nCoreUI image data 4464K 34 \nDispatch continuations 80.0M 1 \nFoundation 64K 2 \nImage IO 32K 1 \nKernel Alloc Once 32K 1 \nMALLOC 183.4M 85 \nMALLOC guard page 288K 14 \nMALLOC_MEDIUM (reserved) 112.0M 1 reserved VM address space (unallocated)\nSQLite page cache 192K 3 \nSTACK GUARD 56.2M 13 \nStack 14.4M 13 \nVM_ALLOCATE 480K 18 \n__AUTH 2523K 298 \n__AUTH_CONST 19.7M 490 \n__CTF 756 1 \n__DATA 15.0M 482 \n__DATA_CONST 17.6M 498 \n__DATA_DIRTY 1724K 205 \n__FONT_DATA 4K 1 \n__LINKEDIT 578.0M 7 \n__OBJC_CONST 3379K 267 \n__OBJC_RO 83.0M 1 \n__OBJC_RW 3168K 1 \n__TEXT 486.3M 516 \n__UNICODE 592K 1 \ndyld private memory 1024K 1 \nlibnetwork 1664K 24 \nmapped file 203.0M 41 \nshared memory 1360K 13 \n=========== ======= ======= \nTOTAL 1.9G 3990 \nTOTAL, minus reserved VM space 1.8G 3990 \n",
"legacyInfo" : {
"threadTriggered" : {
"queue" : "NSOperationQueue 0x142defb70 (QOS: UNSPECIFIED)"
}
},
"trialInfo" : {
"rollouts" : [
{
"rolloutId" : "60186475825c62000ccf5450",
"factorPackIds" : {

  },
  "deploymentId" : 240000026
},
{
  "rolloutId" : "6112dda2fc54bc3389840642",
  "factorPackIds" : {
    "SIRI_DICTATION_ASSETS" : "628bd2fda5168570b594bb52"
  },
  "deploymentId" : 240000135
}

],
"experiments" : [

]
}
}

Model: MacBookPro18,1, BootROM 7459.141.1, proc 10:8:2 processors, 16 GB, SMC
Graphics: Apple M1 Pro, Apple M1 Pro, Built-In
Display: Color LCD, 3456 x 2234 Retina, Main, MirrorOff, Online
Memory Module: LPDDR5
AirPort: Wi-Fi, wl0: Apr 6 2022 05:55:54 version 20.90.45.0.8.7.118 FWID 01-e7138ff2
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB31Bus
USB Device: USB31Bus
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.

Possible to scrap chapter titles?

Hi there. First I want to say thanks for this amazing script! It's been super helpful.

I noticed that, in the readme it says that "TIT2 (TITLE)" tags aren't scraped. Is there a way to change this?

Thanks!

Search By Filename

Is it possible to include a search by filename if there is no author or title in the metadata? But also exclude “part” from the file name search

Some books don’t have metadata but the filename is usually the title. For multiple files, there is usually a part 1 at the end of each file. I’d like for the search to populate the filename if there is no existing metadata to use and exclude part. If the xcluding part can’t be accomplished, I don’t mind manually removing it before searching.

Use for Audible.de

Hi, I would like to work with your guide for Plex/Booksonic. So far I have done everything manually but your script would make my work a lot easier.

Would you be so kind to adapt the script for Audible.de? The original author's script doesn't work properly anymore and I found out that just changing the URL is not enough. Unfortunately I lack the programming skills to solve it myself.

Best regards

Not finding results

Hi, loving the script so far, but having an issue with some books here and there, mostly on non US audible sites. For example im trying to tag my Roald Dahl collection, and a few books are only available on the AU site, so no results are being found. Is there a way around this?

Doesn't work on batch / multiple files

Hello and thank you so much for all your great efforts and amazing work :)

When you apply the search on multiple files, it will only find the first one and overwrite all files with the same tags of the first one. Is there a workaround as I have hundreds of files to fix / fetch updated info from audible.com.

Best regards,
F

Unable to import the full release date

Is it maybe possible to import the audiobook's full release date (MM-DD-YY) from audible and put it into the tag RELEASETIME or YEAR with the universal format (YYYY-MM-DD)?

Entire library

Is there a way to perform this as an automated action on the entire library?

Scraper Potentially not working

Evening,

A potential issue with the scraper not working within MP3 tag as of today. Each time I try to search a title I am presented with a screen like this, lacking all metadata https://i.imgur.com/TjbDF9g.png

This is happening on: .co.uk, .co.jp, .com, .com.au
Working on: .de, .fr

Example working: https://i.imgur.com/1BymGK9.png

Steps to resolve: Fully remove and reinstall the latest MP3Tag. Reconfigure as per the steps in the Plex Audiobook Guide: https://github.com/seanap/Plex-Audiobook-Guide
Issue is still present.

I don't know if this is a change Audible side or local to me. Coincidentally my local Audible app has stopped updating today and not importing new tracks, https://i.imgur.com/ANeu8CT.png

Potentially this is just some downtime/ access issues with Amazon, however, I thought I should raise just incase it is a relevant background change.

I will check again in the morning, and I will close this issue if all is resolved.

Audible not populating fields

I just started using the script and it was working for about 10 books then stopped working. My issue looks similar #8, though no ASIN Error is shown. I can search and select the correct book, but no information is populated on the next window in the tag fields. I found the script error log which contains "ERROR(L316): parameter 1 is not a string". Any ideas what i'm doing wrong?

image

scripterror.log

Search for Audible.de isn't working

I assume this lines are faulty:

Asin

findline "<input type="hidden" id="reviewsAsinUS" value=""
findinline "<input type="hidden" id="reviewsAsinUS" value=""

because, if you use:

Asin

findline "<input type="hidden" name="asin" value=""
findinline "<input type="hidden" name="asin" value=""

this worke.

Audible search will grab info from one release but not another.

I'm trying to tag the Vatta's War series by Elizabeth Moon. Right now, i'm working on tagging the Graphic Audio ones, but for some reason, when 3 options for Graphic audio show up (the album, disc one, and disc two), none of them will give me any metadata. BUT, the unabridged one DOES. Amusingly enough, when clicking "preview" it does link me to the correct album info page for the Graphic Audio release. (LINK)

Scrape audible author ID

Would it be possible/ worth capturing the audible author identifier? I don't see it in the current query scope at the title level.

For context -- I'm working towards a folder structure where the first level folders include the first author (full) name, but want to include an id alongside names to keep folders unique.

Will admit, I'm not overly familiar with Audibles metadata. But it does look like they have a 10 digit string for all authors in their db.

For example, I see Michelle Obama has an id of B07B436TLF -- https://www.audible.com/author/Michelle-Obama/B07B436TLF

Mac now Web Sources Scripts in Mp3Tag 1.6

Mac Now has support in 1.6.:
https://community.mp3tag.de/t/mp3tag-for-mac-v1-6-released/58318

Also requested this support in:
https://community.mp3tag.de/t/ws-audible-albums-and-series/41227/43?u=spowyoda

Managed to install the script.
However I'm getting this error: ERROR(L5398/findinline): text not found.

Is there something i need to change in script to get it to play nice?

Error:
Screenshot 2022-10-01 at 14 54 18

Path for it is grabbed from the App here:
/Users/spowart/Library/Containers/app.mp3tag.Mp3tag/Data/Library/Application Support/Mp3tag/Sources
Screenshot 2022-10-01 at 15 02 54

M1 Mac Mini:
Screenshot 2022-10-01 at 15 14 23

Version of Mp3Tag I'm running is: Version 1.6.3 (66)
Screenshot 2022-10-01 at 15 24 49

Any support on getting this to work would be awesome.

@seanap Appreciate all the work you have done with this the Audible.bundle for Plex and guides

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.