Webarchive (Safari)
From Just Solve the File Format Problem
(Difference between revisions)
(sample files) |
|||
(4 intermediate revisions by 3 users not shown) | |||
Line 5: | Line 5: | ||
}} | }} | ||
'''Webarchive''' is a format used by the Safari browser from Apple to store multiple files saved from a website into one file. It uses a format based on [[Property List/Binary]]. | '''Webarchive''' is a format used by the Safari browser from Apple to store multiple files saved from a website into one file. It uses a format based on [[Property List/Binary]]. | ||
+ | |||
+ | The tool "plutil" on a Mac can be used to convert back and forth between binary plist and XML, "plutil -convert xml1 ExampleBinary.plist" | ||
+ | |||
+ | == Software == | ||
+ | * https://pypi.org/project/pywebarchive/ | ||
+ | |||
+ | == Sample files == | ||
+ | * {{DexvertSamples|archive/appleSafariWebarchive}} | ||
== Links == | == Links == | ||
* [[Wikipedia:Webarchive|Wikipedia article]] | * [[Wikipedia:Webarchive|Wikipedia article]] | ||
+ | * [https://developer.apple.com/documentation/webkit/webarchive Webkit webarchive class] | ||
[[Category:Apple]] | [[Category:Apple]] | ||
[[Category:Archiving]] | [[Category:Archiving]] | ||
+ | [[Category:Web]] | ||
+ | [[Category:Web browser files]] |
Latest revision as of 13:08, 3 December 2024
Webarchive is a format used by the Safari browser from Apple to store multiple files saved from a website into one file. It uses a format based on Property List/Binary.
The tool "plutil" on a Mac can be used to convert back and forth between binary plist and XML, "plutil -convert xml1 ExampleBinary.plist"