電書協ガイドEPUB用試し読みファイル生成スクリプト
電子書籍の制作時に、コンテンツファイルと同時に納品が求められるものに「試し読みファイル」があります。これは例えばAmazonであれば画面右側の「1-Clickで今すぐ買う」ボタンの下にある「今すぐ無料サンプルを送信」ボタンから各端末に配信することで読める「試し読み用コンテンツ」のことで、通常冒頭の10%程度を読むことができます。BookLiveなどでは現在ブラウザ画面内で試し読みが出来るようです。
この「試し読みファイル」は、各配信ストアや電子取次がサービスとして作成することを行っている場合もあるようなのですが、まだ別途必要とするストアもあるようで、現状まだ納品が求められます。また、各配信ストアや電子取次の作った試し読みファイルは出版社に支給されるわけではないため、自社サイトでのプロモーション用途には別途ファイルを用意する必要がある、といった事情もあるのではないかと思います。
このため、コンテンツファイル完成後に試し読みファイルを制作する必要があるのですが、単純な読み物的なコンテンツならまだしも、画像やリンクが多数含まれるようなリフロー型のEPUBコンテンツを加工して試し読みファイルを制作するのは、実は結構面倒な作業です。
そこでこの部分を自動化すべくスクリプト化を図っていたのですが、完成し、私の所属する会社から公開の許可も得られましたので公開させていただきます。
なお、このスクリプトは「電書協ガイド仕様のリフロー型EPUB」用として作っております。例えばでんでんコンバーターやRomancerなどで生成した、仕様の異なるEPUBでは、処理後にEPUBソースの手直しが必要になると思われます(おそらく階層化した目次まわり)。あらかじめご了承ください。
使用方法
あらかじめZIP展開したEPUBフォルダ内の文書XHTMLファイル内に「++Trial reading is so far++」もしくは「++試し読みここまで++」という表記をコメント文等で記述しておきます。その後ターミナル等で
perl makesampleepub.pl(このスクリプトのソースファイル) 展開したEPUBのフォルダのパス 「試し読みはここまで」などと記載されたXHTMLファイルのパス
と入力して実行すると、展開したEPUBのフォルダと同一の階層に試し読みファイルが生成されます。ファイルがデスクトップにあるなら
perl /Users/username/Desktop/makesampleepub.pl /Users/username/Desktop/testepubfile /Users/username/Desktop/試し読みはここまで.xhtml
のような感じです。usernameのところは環境に合わせて差し替えてください。また、XHTMLファイルはあらかじめ作成しておく必要があります。
処理内容の詳細
- EPUBコンテンツを先頭から読んでゆき、「++Trial reading is so far++」もしくは「++試し読みここまで++」という文が含まれる行が出てきたらそこでファイルを分割、以後のコンテンツを削除
- 必要のなくなったXHTML文書ファイル、画像ファイルを削除
- OPFファイル内の消去したXHTML文書ファイル、画像ファイル関連の記述を削除、書名に「【試し読み版】」の記述を追記
- 文書ファイル消去により無効になったコンテンツ内リンクの消去
- 文書ファイル消去により無効になったHTML目次項目のリンクの消去
- 文書ファイル消去により無効になった論理目次項目の消去
- 「試し読みはここまで」などと記載されたXHTMLファイルをコンテンツ末尾に挿入、OPFにファイル情報を追記
- 以上の処理を行い、試し読みEPUBファイルを生成
ソースファイル
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 |
#! /usr/bin/perl use utf8; use Encode qw/encode decode/; use File::Basename qw/basename dirname/; use File::Path; use File::Find; #EPUBフォルダのパスを取得、インポート my $epubFolderPath = $ARGV[0]; $epubFolderPath = decode('UTF-8', $epubFolderPath); #「この続きは〜」記述ファイルのパスを取得、インポート my $pSampleFilePath = $ARGV[1]; $pSampleFilePath = decode('UTF-8', $pSampleFilePath); ###################EPUBフォルダを作業用フォルダにコピー################### my $epubFileName = basename $epubFolderPath; my $epubWorkFolderPath = '/tmp/' . "sample_" . $epubFileName; my $epubFolderCopyCommand = "cp -R " . '"' . $epubFolderPath . '"' . " " . '"' . $epubWorkFolderPath . '"'; system $epubFolderCopyCommand; ###################各ファイルへのパス/ファイル名取得################### #EPUB出力先のパスを取得 my $epubExportPath = dirname $epubFolderPath; #OPF、Xhtml、imageの各ファイルへのパスを取得 my @opfFilePath; my @xhtmlFilePath; my @imageFilePath; find(\&getEachFile, $epubWorkFolderPath); #OPFファイルへのパス取得 my $opfFilePath = $opfFilePath[0]; #論理目次ファイルのファイル名取得 my $navFileName = &getNavFileName($opfFilePath); #論理目次ファイルの絶対パス取得 my @navFilePathList; find(\&getNavFile, $epubWorkFolderPath); my $navFilePath = $navFilePathList[0]; #OPFのSpine指定をもとにEPUB内表示順にXHTMLファイルへのパスの配列を取得 my @spineFileList = &getSpineFileList($opfFilePath); ###################不要なファイルの削除処理################### #XHTMLファイルを表示順で展開し、試し読み指示テキストが出てくる箇所でXHTMLファイルを分割/それ以後のXHTMLファイルを削除 my @existAndDeletedFileList = &cutXhtmlFile(@spineFileList); #消さなかったXHTMLファイルのフルパス/消したXHTMLファイルのファイル名の各リストを取得 my @existFilePathList = @{$existAndDeletedFileList[0]}; my @deletedXhtmlFileList = @{$existAndDeletedFileList[1]}; #消さなかったXHTMLファイルを順番に展開し、リンクされているイメージファイルへのフルパスをリストとして取得 my @eachArray = (\@existFilePathList,$epubWorkFolderPath); my @linkedImageFilesPathList = &getLinkedImageFile(@eachArray); #要らないイメージファイルを消去 my @eachArray = (\@imageFilePath,\@linkedImageFilesPathList); #消した画像ファイルのファイル名リストを取得 my @deletedImageFileList = &deleteUnlinkedImageFile(@eachArray); ###################不要なOPF行の削除処理################### #OPFのManifest、Spineの整理、Titleへの「試し読み」文言挿入 my $xhtmlFolderPath = dirname $existFilePathList[0]; my @deletedAllFileList = (\@deletedXhtmlFileList,\@deletedImageFileList,$opfFilePath,$xhtmlFolderPath); &opfCleanUp(@deletedAllFileList); ###################切れたリンクの削除処理################### my @eachArray = (\@existFilePathList,\@deletedXhtmlFileList,$navFilePath); &unmatchedLinkFix(@eachArray); ###################試し読みはここまでファイルの自動挿入処理################### my $copySpotPath = $xhtmlFolderPath . "/p-sample.xhtml"; my @eachPath = ($pSampleFilePath,$copySpotPath,$opfFilePath); &insertPsampleXhtml(@eachPath); ###################epubファイル作成処理################### #出力先パスを取得 my $outputEpubName = basename $epubWorkFolderPath; my $syscommand = 'cd ' . '"' . $epubWorkFolderPath . '"' . ';zip -0 -X '. '"../' . $outputEpubName . '.epub"' . ' mimetype;zip -r ' . '"../' . $outputEpubName . '.epub' . '"' . ' * -x mimetype */.DS_Store */*/.DS_Store */*/*/.DS_Store'; system $syscommand; my $epubMoveTargetPath = dirname $epubFolderPath; my $epubPreGenaratePath = $epubWorkFolderPath . $outputEpubName . '.epub'; my $epubMoveCommand = 'mv -f ' . '"' . $epubWorkFolderPath . ".epub" . '"' . " " . '"' . $epubMoveTargetPath . '"'; system $epubMoveCommand; ###################作業ファイルの削除処理################### rmtree($epubWorkFolderPath); exit; #サブルーチン sub getEachFile { my $file = $_; my $path = $File::Find::name; push(@opfFilePath,$path) if ($path =~ /^(.*?)\.opf$/); push(@xhtmlFilePath,$path) if ($path =~ /^(.*?)\.xhtml$/i); push(@imageFilePath,$path) if ($path =~ /^(.*?)\.(jpg|jpeg|png|gif)$/i); } sub getNavFile { my $file = $_; my $path = $File::Find::name; push(@navFilePathList,$path) if ($path =~ /^.*?\/$navFileName$/); } sub getSpineFileList { my $opfFilePath = $_[0]; open(IN,"$opfFilePath"); #改行コードの統一処理 @eachLineOpfTxts = <IN>; $eachLineOpfTxt = join("",@eachLineOpfTxts); $eachLineOpfTxt =~ s@\x0D\x0A@\x0D@g; $eachLineOpfTxt =~ s@\x0A@\x0D@g; @eachLineOpfTxts = split("\x0D",$eachLineOpfTxt); close (IN); #SPINEのidrefを取得 my @idrefList; foreach my $line(@eachLineOpfTxts) { if ($line =~ /^.*?idref=\"(.*?)\".*?$/){ $line =~ s@^.*?idref=\"(.*?)\".*?$@$1@; push(@idrefList,$line); } } #SPINEのidrefをキーに各XHTMLファイルへのパスを取得 my $itemPath = dirname $opfFilePath; my @spineFileList; foreach my $idref(@idrefList){ my @href = grep /id=\"$idref\"/,@eachLineOpfTxts; my $hrefPath = $href[0]; $hrefPath =~ s@^.*?href=\"(.*?)\".*?$@$1@; $hrefPath = $itemPath . "/" . $hrefPath; push(@spineFileList,$hrefPath); } return @spineFileList; } sub cutXhtmlFile { my @spineFileList = @_; our $sampleFileOutputFlag = "yet"; our @existFilePathList; our @deletedFileList; foreach $eachFilePath(@spineFileList){ $eachFilePath = encode('UTF-8', $eachFilePath); #サンプルファイルがすでに出力されていたらファイルを削除する処理 if ($sampleFileOutputFlag eq "dune"){ #消去ファイルのリストにpush $deleteFileName = basename $eachFilePath; push(@deletedFileList,$deleteFileName); unlink $eachFilePath; } else { #存在ファイルのリストにpush $existFileName = basename $eachFilePath; push(@existFilePathList,$eachFilePath); open(IN,"$eachFilePath"); #改行コードの統一処理 @mySPLITFILEtxts = <IN>; $mySPLITFILEtxts = join("",@mySPLITFILEtxts); $mySPLITFILEtxts =~ s@\x0D\x0A@\x0D@g; $mySPLITFILEtxts =~ s@\x0A@\x0D@g; $mySPLITFILEtxts = decode('UTF-8', $mySPLITFILEtxts); @eachLine = split("\x0D",$mySPLITFILEtxts); close (IN); #「++Trial reading is so far++」もしくは「++試し読みここまで++」という文が含まれる行が出てきたらそこまでの行を出力 my @outputTxt = (); foreach $line (@eachLine){ if ($line =~ /(\+\+Trial reading is so far\+\+|\+\+試し読みここまで\+\+)/){ open(OUT,"> $eachFilePath"); foreach (@outputTxt){ $_ = encode('UTF-8', $_); print OUT $_ . "\r\n"; } close (OUT); #html tidyで閉じタグ自動補正 my $fixXhtmlCommand = "tidy -xml -utf8 -m -q " . '"' . $eachFilePath . '"'; system $fixXhtmlCommand; #tidyで修正後の改行コード関係修正 open(IN,"$eachFilePath"); #改行コードの統一処理 @myTxts = <IN>; my $myTxts = join("",@myTxts); $myTxts =~ s@\x0D\x0A@\x0D@g; $myTxts =~ s@\x0A@\x0D@g; @myTxts = split("\x0D",$myTxts); $myTxt = join("\x0D\x0A",@myTxts); $myTxt = decode('UTF-8', $myTxt); close (IN); #改行コード削除処理 my @blockObjectArray = qw/address center dir dl fieldset h1 h2 h3 h4 h5 h6 hr isindex menu noframes noscript ol p pre ul/; my @inlineObjectArray = qw /a abbr acronym applet b basefont bdo big br button cite code dfn em font i iframe img input kbd label map object q s samp script select small span strike strong sub sup textarea tt u var/; foreach $object(@blockObjectArray){ $myTxt =~ s@<$object([^<>]*?)>\x0D\x0A@<$object$1>@g; $myTxt =~ s@\x0D\x0A</$object>@</$object>@g; } foreach $object(@inlineObjectArray){ $myTxt =~ s@\x0D\x0A<$object([^<>]*?)>\x0D\x0A@<$object$1>@g; $myTxt =~ s@<$object([^<>]*?)>\x0D\x0A@<$object$1>@g; $myTxt =~ s@\x0D\x0A<$object([^<>]*?)>@<$object$1>@g; $myTxt =~ s@\x0D\x0A</$object>\x0D\x0A@</$object>@g; $myTxt =~ s@\x0D\x0A</$object>@</$object>@g; $myTxt =~ s@</$object>\x0D\x0A@</$object>@g; } $myTxt =~ s@\"\x0D\x0A@\" @g; $myTxt =~ s@<body([^<>]*?)>@\x0D\x0A<body$1>\x0D\x0A@g; #再出力 open(OUT,"> $eachFilePath"); $myTxt = encode('UTF-8', $myTxt); print OUT $myTxt; close (OUT); $sampleFileOutputFlag = "dune"; last; } else { push(@outputTxt,$line); } } } } my @existAndDeletedFileList = (\@existFilePathList,\@deletedFileList); return @existAndDeletedFileList; } sub getLinkedImageFile { my @existFilePathList = @{$_[0]}; my $epubFolderPath = $_[1]; my @linkedImageFilesList; my @linkedImageFilesPathList; foreach $eachExistFilePath(@existFilePathList){ open(IN,"$eachExistFilePath"); #改行コードの統一処理 @mySPLITFILEtxts = <IN>; $mySPLITFILEtxts = join("",@mySPLITFILEtxts); $mySPLITFILEtxts =~ s@\x0D\x0A@\x0D@g; $mySPLITFILEtxts =~ s@\x0A@\x0D@g; $mySPLITFILEtxts = decode('UTF-8', $mySPLITFILEtxts); @eachLine = split("\x0D",$mySPLITFILEtxts); my $joinedTxt = join("\x0D\x0A",@eachLine); close (IN); my @imageFileNames = ($joinedTxt =~ /([^\/]+\.jpg|[^\/]+\.JPG|[^\/]+\.jpeg|[^\/]+\.JPEG|[^\/]+\.png|[^\/]+\.PNG|[^\/]+\.gif|[^\/]+\.GIF)/g); foreach $imageFileName (@imageFileNames){ find(\&getImageFilePath, $epubFolderPath); sub getImageFilePath { my $file = $_; my $path = $File::Find::name; push(@linkedImageFilesPathList,$path) if ($path =~ /.*?\/$imageFileName$/); } } } #重複削除 my %hash; @hash{ @linkedImageFilesPathList } = (); my @linkedImageFilesPathList = keys %hash; return @linkedImageFilesPathList; } sub deleteUnlinkedImageFile { my @imageFilePath = @{$_[0]}; my @linkedImageFilesPathList = @{$_[1]}; #配列の差分を出す my %cnt = (); map { $cnt{$_}-- } @linkedImageFilesPathList; my @UnlinkedImageFilePathList = grep { ++$cnt{$_} == 1 } @imageFilePath; my @deletedImageFilesList; #いらなくなった画像ファイルを消す foreach $UnlinkedImageFilePath (@UnlinkedImageFilePathList){ my $UnlinkedImageFileName = basename $UnlinkedImageFilePath; push(@deletedImageFilesList,$UnlinkedImageFileName); unlink $UnlinkedImageFilePath; } #消したファイル名を返す return @deletedImageFilesList; } sub opfCleanUp { my @deletedXhtmlFileList = @{$_[0]}; my @deletedImageFileList = @{$_[1]}; my $opfFilePath = $_[2]; my $xhtmlFolderPath = $_[3]; #######OPFのSPINE要素内の不要となったXHTMLファイルの宣言を削除####### #OPFファイルを開く open(IN,"$opfFilePath"); #改行コードの統一処理 @eachLineOpfTxts = <IN>; $eachLineOpfTxt = join("",@eachLineOpfTxts); $eachLineOpfTxt =~ s@\x0D\x0A@\x0D@g; $eachLineOpfTxt =~ s@\x0A@\x0D@g; @eachLineOpfTxts = split("\x0D",$eachLineOpfTxt); close (IN); #不要となった各XHTMLファイルに対応するidrefの取得 our @deletedIdrefList; foreach my $eachDeletedFile(@deletedXhtmlFileList){ my @idrefLine = grep /(<item .*?id ?= ?\"(.*?)\"\ .*?href ?= ?\".*?$eachDeletedFile\".*?\/>|<item .*?href ?= ?\".*?$eachDeletedFile\" .*?id ?= ?\"(.*?)\".*?\/>)/,@eachLineOpfTxts; my $idrefName = $idrefLine[0]; $idrefName =~ s@^.*?id ?= ?\"(.*?)\".*?$@$1@; push(@deletedIdrefList,$idrefName); } #OPFのテキストを連結 our $joinedOpfText = join("\x0D\x0A",@eachLineOpfTxts); $joinedOpfText = decode('UTF-8', $joinedOpfText); #manifest(XHTML)の削除 foreach my $eachDeletedFile(@deletedXhtmlFileList){ $joinedOpfText =~ s@<item .*?href ?= ?\".*?$eachDeletedFile\".*?\/>\x0D\x0A@@; } #manifest(IMAGE)の削除 foreach my $eachDeletedFile(@deletedImageFileList){ $joinedOpfText =~ s@<item .*?href ?= ?\".*?$eachDeletedFile\".*?\/>\x0D\x0A@@; } #spineの削除 foreach my $eachIdrefName(@deletedIdrefList){ $joinedOpfText =~ s@<itemref .*?idref ?= ?\"$eachIdrefName\".*?\/>\x0D\x0A@@; } #Titleに「試し読み版」表記を追加 $joinedOpfText =~ s@<dc:title([^>]*?)>(.*?)</dc:title>@<dc:title$1>【試し読み版】$2</dc:title>@; #manifestのxhtml部分に「p-sample.xhtml」追記 my $opfFileDirName = dirname $opfFilePath; if ($opfFileDirName eq $xhtmlFolderPath){ $joinedOpfText =~ s@/>.*?(\x0D\x0A\x0D\x0A|\x0D\x0A).*?</manifest>@/>\x0D\x0A<item media-type="application/xhtml+xml" id="p-sample" href="p-sample.xhtml" />\x0D\x0A\x0D\x0A</manifest>@; } else { my $xhtmlFolderName = basename $xhtmlFolderPath; $joinedOpfText =~ s@/>.*?(\x0D\x0A\x0D\x0A|\x0D\x0A).*?</manifest>@/>\x0D\x0A<item media-type="application/xhtml+xml" id="p-sample" href="$xhtmlFolderName/p-sample.xhtml" />\x0D\x0A\x0D\x0A</manifest>@; } #spine末尾に「p-sample」追記 $joinedOpfText =~ s@/>.*?(\x0D\x0A\x0D\x0A|\x0D\x0A).*?</spine>@/>\x0D\x0A<itemref linear="yes" idref="p-sample" />\x0D\x0A\x0D\x0A</spine>@; #修正後のOPFファイルの出力 open(OUT,"> $opfFilePath"); $joinedOpfText = encode('UTF-8', $joinedOpfText); print OUT $joinedOpfText; close (OUT); } sub unmatchedLinkFix { my @existFilePathList = @{$_[0]}; my @deletedXhtmlFileList = @{$_[1]}; my $navFilePath = $_[2]; #######################id名、リンク先ファイル名ピックアップ処理####################### my @idList; #フォルダ内各XHTMLファイルを開く繰り返し処理 foreach $eachXhtmlFilePath(@existFilePathList){ open(IN,"$eachXhtmlFilePath"); #改行コードの統一、各行をリストに収録 my @myTxts = <IN>; my $myTxts = join("",@myTxts); $myTxts =~ s@\x0D\x0A@\x0D@g; $myTxts =~ s@\x0A@\x0D@g; @myTxts = split("\x0D",$myTxts); $myTxt = join("\x0D\x0A",@myTxts); close (IN); #id名をリストに収録 my @matchList = ($myTxt =~ /id=\"(.*?)\"/gs); foreach $matchString(@matchList){ push (@idList,$matchString); } } #######################論理目次ファイルのテキスト置換処理####################### open(IN,"$navFilePath"); #改行コードの統一、各行をリストに収録 my @myNavTxts = <IN>; my $myNavTxts = join("",@myNavTxts); $myNavTxts =~ s@\x0D\x0A@\x0D@g; $myNavTxts =~ s@\x0A@\x0D@g; @myNavTxts = split("\x0D",$myNavTxts); $myNavTxt = join("\x0D\x0A",@myNavTxts); close (IN); #消去済みのファイルへのリンクを削除 foreach $deletedXhtmlFile (@deletedXhtmlFileList){ $myNavTxt =~ s@<li><a.*?href=\"xhtml/$deletedXhtmlFile.*?\">.*?</a></li>\x0D\x0A@@; } #修正済みファイル出力処理 open(OUT,"> $navFilePath"); print OUT $myNavTxt; close (OUT); #######################各XHTMLファイルのテキスト置換処理####################### #リンク元ファイルを検索、リンクに突き当たったら処理 foreach $eachXhtmlFilePath(@existFilePathList){ open(IN,"$eachXhtmlFilePath"); #改行コードの統一、各行をリストに収録 my @myTxts = <IN>; my $myTxts = join("",@myTxts); $myTxts =~ s@\x0D\x0A@\x0D@g; $myTxts =~ s@\x0A@\x0D@g; @myTxts = split("\x0D",$myTxts); $myTxt = join("\x0D\x0A",@myTxts); close (IN); #アンカー指定されているリンクのアンカー部分をリストで取得 my @anchorLinkList = ($myTxt =~ /href ?= ?\".*?\#(.*?)\"/g); #IDのリストにないアンカー指定されているリンクを削除 foreach $anchorID(@anchorLinkList){ unless (grep {$_ eq $anchorID} @idList){ $myTxt =~ s@<a.*?href ?= ?\".*?\#$anchorID\".*?>\x0D?\x0A?(.*?)\x0D?\x0A?<\/a>@$1@; } } #消去済みのファイルへのリンクを削除 foreach $deletedXhtmlFile (@deletedXhtmlFileList){ $myTxt =~ s@<a.*?href=\"$deletedXhtmlFile.*?\">\x0D?\x0A?(.*?)\x0D?\x0A?</a>@$1@; } #修正済みファイル出力処理 open(OUT,"> $eachXhtmlFilePath"); print OUT $myTxt; close (OUT); } } sub getNavFileName { my $opfFilePath = $_[0]; open(IN,"$opfFilePath"); #改行コードの統一処理 @eachLineOpfTxts = <IN>; $eachLineOpfTxt = join("",@eachLineOpfTxts); $eachLineOpfTxt =~ s@\x0D\x0A@\x0D@g; $eachLineOpfTxt =~ s@\x0A@\x0D@g; @eachLineOpfTxts = split("\x0D",$eachLineOpfTxt); close (IN); #navファイルへのパスを取得 my @navFileNameList; foreach my $line(@eachLineOpfTxts) { if ($line =~ /properties ?= ?\"nav\"/){ $line =~ s@^.*?href=\"(.*?)\".*?$@$1@; push(@navFileNameList,$line); } } $navFileName = $navFileNameList[0]; $navFileName = basename $navFileName; return $navFileName; } sub insertPsampleXhtml { my $pSampleFilePath = $_[0]; my $copySpotPath = $_[1]; my $opfFilePath = $_[2]; ##############OPFを展開してタイトルを取得############## #OPFファイルを開く open(OPFIN,"$opfFilePath"); #改行コードの統一処理 @eachLineOpfTxts = <OPFIN>; $eachLineOpfTxt = join("",@eachLineOpfTxts); $eachLineOpfTxt =~ s@\x0D\x0A@\x0D@g; $eachLineOpfTxt =~ s@\x0A@\x0D@g; @eachLineOpfTxts = split("\x0D",$eachLineOpfTxt); $eachLineOpfTxt = join("\x0D\x0A",@eachLineOpfTxts); close (OPFIN); $eachLineOpfTxt = decode('UTF-8', $eachLineOpfTxt); my $titleName = $eachLineOpfTxt; $titleName =~ s@^.*?<dc:title[^>]*?>【試し読み版】(.*?)<\/dc:title>.*?$@$1@s; ##############コピー元ファイルを展開############## open(SAMPLEIN,"$pSampleFilePath"); #改行コードの統一処理 @eachLineSampleTxts = <SAMPLEIN>; $eachLineSampleTxt = join("",@eachLineSampleTxts); $eachLineSampleTxt =~ s@\x0D\x0A@\x0D@g; $eachLineSampleTxt =~ s@\x0A@\x0D@g; @eachLineSampleTxts = split("\x0D",$eachLineSampleTxt); $eachLineSampleTxt = join("\x0D\x0A",@eachLineSampleTxts); close (SAMPLEIN); $eachLineSampleTxt = decode('UTF-8', $eachLineSampleTxt); #タイトル行を置換 $eachLineSampleTxt =~ s@<title>.*?</title>@<title>$titleName</title>@; #修正済みファイル出力処理 open(SAMPLEOUT,"> $copySpotPath"); $eachLineSampleTxt = encode('UTF-8', $eachLineSampleTxt); print SAMPLEOUT $eachLineSampleTxt; close (SAMPLEOUT); } |
ダウンロードはこちら↓
makesampleepub.zip
1 file(s) 4.82 KB
このスクリプトを利用したことによる損害等に関しまして、私としては一切責任を負いかねますので、あくまで自己責任にてご利用ください。
転載・改訂等はご随意に。なお、改訂して再配布される際には@JunTajimaまでご一報いただけると嬉しいです。といいますか誰かスゴい人、汎用EPUB用コードに直しちゃってください。
なお、先日KADOKAWAさんのTw-ePub発表直後にこんな記事が流れてきてましたので、記事のとおりBiB/iを使って、生成した試し読みファイルをTwitterに流してみました。
試し読みEPUBファイルBiB/i投稿てすと。
https://t.co/sfqBMdm0gh
— Jun Tajima (@JunTajima) 2014, 7月 15
意外と簡単でしたし、何よりTwitter経由でのコンテンツとの偶然の出逢いはずっと電子書籍の課題として挙げられ続けてきた「ディスカバラビリティ」の補完策になります。ライトコンテンツのプロモーション用としては結構有効と思いますので、活用を検討されてみてはいかがでしょうか。
(2014.7.16)
2019/08/03 07:45
It is english language possible to write? Sorry for my proor eng