Come raccolgo tutti i miei appunti e i punti salienti di iBooks?

11

Ho un sacco di evidenziazioni e note in iBooks che ho letto e vorrei essere in grado di raccoglierle in un formato facile da usare e manipolare (ad esempio per scrivere articoli e citazioni).

Ad esempio, mi piacerebbe un momento saliente come questo

per produrre qualcosa (ad es. in CSV) come

Quod me nutrit me destruit – that which sustains me also destroys me,14,Tamburlane Parts One and Two,Christopher Marlowe,Anthony B. Dawson ed.,Bloomsbury,https://itun.es/us/qSrZ0.l

Riesco a vedere come farlo (una specie) faticosamente, una nota alla volta, usando la funzione di "condivisione" di iBook (o copia e incolla, ovviamente) ma non vedo alcun modo di farlo alla rinfusa , per tutti i miei appunti di un libro o anche tutti i miei libri.

C'è un modo per farlo, con un Apple Script o usando Automator per esempio? O forse c'è un file di testo o XML contenente le mie note e l'evidenziazione che potrei scrivere uno script (in Python, preferibilmente) per analizzare.

    
posta orome 04.11.2014 - 00:25
fonte

3 risposte

9

Gli iBooks non hanno il supporto AppleScript. Le annotazioni sono memorizzate in un file SQLite : ~/Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotation/ .

Potresti provare ad analizzarlo. Questa risposta fornisce un link a Digestato , che legge quel database e quindi ti consente di esportare le tue annotazioni su Evernote, ma non so quale formattazione avranno o se vorrai rovinare Evernote.

Una soluzione (forse) semplice sarebbe quella di aprire il libro in iBooks per iOS. Potresti quindi inviare per email le annotazioni in blocco a te stesso.

  1. Apri il libro
  2. Premi il "pulsante elenco" per visualizzare il sommario
  3. Passa alla scheda Note
  4. Premi il pulsante Condividi
  5. Seleziona Modifica note
  6. Seleziona tutto
  7. Condividi via email.

Modifica:

In realtà, dopo aver letto un commento su reddit , sembra esserci un modo per esportarli tutti da iBooks su OS X:

You can export your notes in an email from Notes -> Select All -> Share (you need to hold ctrl while you right click to retain your selection). Your highlighted portions will be copied into the email with your notes and formatted nicely. Strangely, on the Mac the application doesn't care about whether the book is copy protected—it will always copy the highlighted portion. The iOS application indeed discriminates though. If your book is copy protected, then only the chapter name will be shared. That seems to be the only way to do it unfortunately. :/

Usando il trackpad del mio portatile, ho dovuto tenere premuto ctrl + shift mentre toccavo il trackpad per richiamare il menu contestuale mentre mantenevo la selezione.

    
risposta data 04.12.2014 - 17:47
fonte
3

Ho scritto uno script per questo scopo che estrae le note dal tuo Mac ed emette i file di esportazione Evernote, pronti per il doppio clic. Forse potresti modificare il mio script se non soddisfa esattamente i tuoi scopi.

In breve, legge i database SQLite in: ./Library/Containers/com.apple.iBooksX/Data/Documents/BKLibrary ./Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotations

... e in questo caso, li esporta nel formato .enex di Evernote.

link

    <?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";
    
risposta data 22.04.2015 - 19:26
fonte
3
  1. Installa il DB Browser per SQLite gratuito.
  2. Vai alla cartella delle annotazioni di iBooks: ~/Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotation/
  3. Copia il file .sqlite da qualche parte (come Desktop) per mantenere l'originale al sicuro.
  4. Apri il file con DB Browser.
  5. Trova alcune note nel tuo libro di destinazione sfogliando i dati.
  6. Filtra per lo ZANNOTATIONASSETID per mostrare solo le note nel libro di destinazione.
  7. Copia e incolla le annotazioni che vuoi in Numeri o qualsiasi altra applicazione tu preferisca.
risposta data 11.07.2016 - 23:04
fonte

Leggi altre domande sui tag