From de05d5ee905e0cb0bc2ed739de87678b40ff0a84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jastrz=C4=99bski?= Date: Thu, 8 Aug 2013 07:33:15 -0700 Subject: [PATCH] Created Automatic output splitting (markdown) --- Automatic-output-splitting.md | 81 +++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 Automatic-output-splitting.md diff --git a/Automatic-output-splitting.md b/Automatic-output-splitting.md new file mode 100644 index 0000000..3208e67 --- /dev/null +++ b/Automatic-output-splitting.md @@ -0,0 +1,81 @@ +Due to limitations of **KindleGen** - tool used by **KCC** to create _MOBI_ files - maximal size of output file is highly limited. + +Fortunately **KCC** will automatically split assigned tasks into multiple _MOBI_ files **if** provided directories with images will have an appropriate structure. + +For now **KCC** support three of them: + +> ├───TitleA +> │ 1.png +> │ 2.png +> │ 3.png +> │ 4.png +> │ 5.png +> │ +> ├───TitleB +> │ ├───Chapter1 +> │ │ 1.png +> │ │ 2.png +> │ │ 3.png +> │ │ 4.png +> │ │ 5.png +> │ │ +> │ ├───Chapter2 +> │ │ 1.png +> │ │ 2.png +> │ │ 3.png +> │ │ 4.png +> │ │ 5.png +> │ │ +> │ └───Chapter3 +> │ 1.png +> │ 2.png +> │ 3.png +> │ 4.png +> │ 5.png +> │ +> └───TitleC +> ├───Volume1 +> │ ├───Chapter1 +> │ │ 1.png +> │ │ 2.png +> │ │ 3.png +> │ │ 4.png +> │ │ 5.png +> │ │ +> │ ├───Chapter2 +> │ │ 1.png +> │ │ 2.png +> │ │ 3.png +> │ │ 4.png +> │ │ 5.png +> │ │ +> │ └───Chapter3 +> │ 1.png +> │ 2.png +> │ 3.png +> │ 4.png +> │ 5.png +> │ +> └───Volume2 +> ├───Chapter1 +> │ 1.png +> │ 2.png +> │ 3.png +> │ 4.png +> │ 5.png +> │ +> ├───Chapter2 +> │ 1.png +> │ 2.png +> │ 3.png +> │ 4.png +> │ 5.png +> │ +> └───Chapter3 +> 1.png +> 2.png +> 3.png +> 4.png +> 5.png + +If none of these structures will be used creating MOBI file might fail. \ No newline at end of file