私が読んだiBooksにはたくさんのハイライトとメモがあり、それらを1つにまとめて使いやすいものにしたいと思っています。フォーマットを操作します(例:論文の執筆や引用の引用)。

たとえば、このようなハイライトが欲しいのですが

何かを生成するために(たとえば、 CSVで)

Quod me nutrit me destruit –私を支えているものも私を破壊します14、タンバレインパート1と2、クリストファーマーロウ、アンソニーB 。Dawsoned。、Bloomsbury、 https://itun.es/us/qSrZ0.l

iBookの「共有」機能(またはもちろんコピーアンドペースト)を使用して、これを(ある種の)面倒に一度に1つのメモで行う方法はわかりますが、方法がわかりません。まとめて、本のすべてのメモ、またはすべての本について。

これを実現する方法はありますか。たとえば、Apple Scriptを使用したり、Automatorを使用したりしますか?またはテキストがあります。または、メモを含み、解析するスクリプト(できればPythonで)を記述できることを強調したXMLファイル。

コメント

  • 解決策、それ(多くの場合のように)Appleを置き去りにすることであることが判明しましたそして、ハイライトとメモのエクスポートを強力にサポートしているKindleに切り替えます。

回答

iBooksはしませんAppleScriptをサポートしています。 アノテーションはSQLiteファイルに保存されます~/Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotation/

解析を試みることができますそれ。 この回答は、 Digested へのリンクを提供します。このリンクは、そのデータベースを読み取り、エクスポートできるようにします。 Evernoteへの注釈ですが、どのようなフォーマットになるのか、Evernoteをいじりたいのかわかりません。

1つの(おそらく)簡単な解決策は、iOS用のiBooksで本を開くことです。次に、注釈をまとめて自分宛てに電子メールで送信できます。

  1. 本を開く
  2. 「リストボタン」を押して目次を表示します
  3. [メモ]タブに切り替えます
  4. [共有]ボタンを押します
  5. [メモの編集]を選択します
  6. すべて選択
  7. メールで共有します。

編集:

実際、 aを読んだ後redditへのコメント、OSXのiBookからもすべてをエクスポートする方法があるようです:

メモをエクスポートできます[メモ]-> [すべて選択]-> [共有]からの電子メールで(選択を保持するには、右クリックする間、ctrlを押し続ける必要があります)。ハイライトされた部分は、メモとともに電子メールにコピーされ、適切にフォーマットされます。不思議なことに、Macの場合、アプリケーションは本がコピー防止されているかどうかを気にしません。常に強調表示された部分をコピーします。iOSアプリケーションは確かに区別します。本がコピー防止されている場合、章名のみが共有されます。残念ながら、それが唯一の方法のようです。:/

ラップトップのトラックパッドを使用して、トラックパッドをタップしているときに、選択を保持したままコンテキストメニューを表示します。

コメント

  • これは非常に役立ちます。 'は、注釈をCSVまたはその他の便利な形式にすることからはまだ遠いです。 ' SQLデータベースから何も作成できません。メールは見栄えがしますが、プログラムでアクセスできません。'

li>

  • それは私だけですか、それとも新しいバージョンのiBooksでは不可能ですか? ' [メモの編集]ボタンが表示されなくなりました。その場合、すべてのメモをエクスポートするにはどうすればよいですか?
  • @incandescentman It 'はiOS8.4にあります。
  • @ incandescentman上記の私の答えの番号付きのステップはiOS用でした。答えの最後の部分、つまり"編集"の後のセクションは、OSX用です。これはYosemiteでも機能します。
  • それで、私は今エルキャピタンに' mしていますが、そのredditコメントからの指示はまだ私のために働きます。 'マウスとトラックパッドのどちらを使用しているかによって、プロセスは少し異なると思います。外部キーボード/マウスなしでラップトップを使用し、[すべて選択]を使用してコメントを選択した後、Ctrlキーを押しながらShiftキーを押しながらトラックパッドをタップします。これにより、スクリーンショットが表示されます。章全体のコメントが選択されます。
  • 回答

    この目的のためにメモを抽出するスクリプトを作成しましたMacからEvernoteエクスポートファイルを出力し、ダブルクリックする準備ができています。目的に正確に合わない場合は、スクリプトを変更できます。

    つまり、次のSQLiteデータベースを読み取ります。/Library/Containers/com.apple.iBooksX/Data/Documents/BKLibrary ./Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotations

    …そしてこの場合、それらをエクスポートしますEvernoteの.enex形式に変換します。

    https://github.com/jorisw/ibooks2evernote/

     <?php /* * iBooks notes to Evernote converter * by Joris Witteman <[email protected]> * * Reads the iBooks Annotations library on your Mac and exports * them, tagged with their respective book title and imported in * separate notebooks. * * Usage: * * Move this script to the top of your personal home directory on your Mac. * This is the folder that has your name, which the Finder opens if you * click on the Finder icon in the Dock. * * To export your notes to Evernote: * * 1. Run the following command in the Terminal: * * php ./ibooks2evernote.php * * 2. Open the newly created "iBooks exports for Evernote" folder from your * home folder, open each file in there, Evernote will open and start * importing your notes. * */ // Default file locations for required iBooks data define("RESULT_DIRECTORY_NAME","iBooks exports for Evernote"); define("BOOKS_DATABASE_DIRECTORY","./Library/Containers/com.apple.iBooksX/Data/Documents/BKLibrary"); define("NOTES_DATABASE_DIRECTORY","./Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotation"); if(file_exists(RESULT_DIRECTORY_NAME)){ die("The destination folder for the exports already exists on your Mac.\nPlease move that one out of the way before proceeding.\n"); } // Verify presence of iBooks database if(!file_exists(BOOKS_DATABASE_DIRECTORY)){ die("Sorry, couldn"t find an iBooks Library on your Mac. Have you put any books in there?\n"); }else{ if(!$path = exec("ls ".BOOKS_DATABASE_DIRECTORY."/*.sqlite")){ die("Could not find the iBooks library database. Have you put any books in there?\n"); }else{ define("BOOKS_DATABASE_FILE",$path); } } // Verify presence of iBooks notes database if(!file_exists(NOTES_DATABASE_DIRECTORY)){ die("Sorry, couldn"t find any iBooks notes on your Mac. Have you actually taken any notes in iBooks?\n"); }else{ if(!$path = exec("ls ".NOTES_DATABASE_DIRECTORY."/*.sqlite")){ die("Could not find the iBooks notes database. Have you actually taken any notes in iBooks?\n"); }else{ define("NOTES_DATABASE_FILE",$path); } } // Fire up a SQLite parser class MyDB extends SQLite3 { function __construct($FileName) { $this->open($FileName); } } // Retrieve any books. $books = array(); $booksdb = new MyDB(BOOKS_DATABASE_FILE); if(!$booksdb){ echo $booksdb->lastErrorMsg(); } $res = $booksdb->query(" SELECT ZASSETID, ZTITLE AS Title, ZAUTHOR AS Author FROM ZBKLIBRARYASSET WHERE ZTITLE IS NOT NULL"); while($row = $res->fetchArray(SQLITE3_ASSOC) ){ $books[$row["ZASSETID"]] = $row; } $booksdb->close(); if(count($books)==0) die("No books found in your library. Have you added any to iBooks?\n"); // Retrieve the notes. $notesdb = new MyDB(NOTES_DATABASE_FILE); if(!$notesdb){ echo $notesdb->lastErrorMsg(); } $notes = array(); $res = $notesdb->query(" SELECT ZANNOTATIONREPRESENTATIVETEXT as BroaderText, ZANNOTATIONSELECTEDTEXT as SelectedText, ZANNOTATIONNOTE as Note, ZFUTUREPROOFING5 as Chapter, ZANNOTATIONCREATIONDATE as Created, ZANNOTATIONMODIFICATIONDATE as Modified, ZANNOTATIONASSETID FROM ZAEANNOTATION WHERE ZANNOTATIONSELECTEDTEXT IS NOT NULL ORDER BY ZANNOTATIONASSETID ASC,Created ASC"); while($row = $res->fetchArray(SQLITE3_ASSOC) ){ $notes[$row["ZANNOTATIONASSETID"]][] = $row; } $notesdb->close(); if(count($notes)==0) die("No notes found in your library. Have you added any to iBooks?\n\nIf you did on other devices than this Mac, make sure to enable iBooks notes/bookmarks syncing on all devices."); // Create a new directory and cd into it mkdir(RESULT_DIRECTORY_NAME); chdir(RESULT_DIRECTORY_NAME); $i=0; $j=0; $b=0; foreach($notes as $AssetID => $booknotes){ $Body = "<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE en-export SYSTEM "http://xml.evernote.com/pub/evernote-export3.dtd"> <en-export export-date="".@strftime("%Y%m%dT%H%M%S",time())."" application="iBooks2Evernote" version="iBooks2Evernote Mac 0.0.1">"; $BookTitle = $books[$AssetID]["Title"]; $j = 0; foreach($booknotes as $note){ $CappedText = null; $TextWithContext = null; // Skip empty notes if(strlen($note["BroaderText"]?$note["BroaderText"]:$note["SelectedText"])==0) continue; $HighlightedText = $note["SelectedText"]; // Cap the titles to 255 characters or Evernote will blank them. if(strlen($HighlightedText)>255) $CappedText = substr($note["SelectedText"],0,254)."…"; // If iBooks stored the surrounding paragraph of a highlighted text, show it and make the highlighted text show as highlighted. if(!empty($note["BroaderText"]) && $note["BroaderText"] != $note["SelectedText"]){ $TextWithContext = str_replace($note["SelectedText"],"<span style=\"background: yellow;\">".$note["SelectedText"]."</span>",$note["BroaderText"]); } // Keep some counters for commandline feedback if($j==0)$b++; $i++; $j++; // Put it in Evernote"s ENEX format. $Body .=" <note><title>".($CappedText?$CappedText:$HighlightedText)."</title><content><![CDATA[<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"> <en-note> <div> <p>".($TextWithContext?$TextWithContext:$HighlightedText)."</p> <p><span style="color: rgb(169, 169, 169);font-size: 12px;">From chapter: ".$note["Chapter"]."</span></p> </div> <div>".$note["Note"]."</div> </en-note> ]]></content><created>".@strftime("%Y%m%dT%H%M%S",@strtotime("2001-01-01 +". ((int)$note["Created"])." seconds"))."</created><updated>".@strftime("%Y%m%dT%H%M%S",@strtotime("2001-01-01 +". ((int)$note["Modified"])." seconds"))."</updated><tag>".$BookTitle.".</tag><note-attributes><author>[email protected]</author><source>desktop.mac</source><reminder-order>0</reminder-order></note-attributes></note>"; } $Body .=" </en-export> "; file_put_contents($BookTitle.".enex", $Body); } echo "Done! Exported $i notes into $b separate export files in the "".RESULT_DIRECTORY_NAME."" folder.\n\n"; 

    回答

    1. 無料のをインストールしますSQLite用のDBブラウザ
    2. iBooks注釈フォルダに移動します:~/Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotation/
    3. ファイルをどこかに(デスクトップなど)保存して、元のファイルを安全に保ちます。
    4. DBブラウザでファイルを開きます。
    5. データを参照して、ターゲットブック内のメモを見つけます。 。
    6. ZANNOTATIONASSETIDでフィルタリングして、ターゲットブックのメモのみを表示します。
    7. 必要な注釈をコピーして、Numbersまたは任意のアプリケーションに貼り付けます。

    コメント

    • Apple 'の有名な使いやすさ!
    • @raxacoricofallapatorius:真剣に。 'は、強調表示した語彙のリストを取得するためのいくつかのリグマロールです。

    コメントを残す

    メールアドレスが公開されることはありません。 * が付いている欄は必須項目です