Quote:
Originally Posted by eschwartz
Perhaps you could try the command-line version of fetch news? Write a batch file to process each recipe you need.
Fetch News uses the ebook-convert executable, interestingly. You can feed it the .recipe format as the input file.
|
Quote:
Originally Posted by JayKindle
If that is what I will end up doing, can you help me write up this batch file?
|
If you're still interested, here's what I used to do for my comics feed:
Code:
@echo on
set logfile="createcomics-bat.log"
echo "Start %date% %time%" >> %logfile%
ebook-convert Gocomics_test.recipe .epub --output-profile pocketbook_900
set filename="GoComics [%date% %time%]"
echo %filename%
echo "filename %filename%" >> %logfile%
ebook-meta Gocomics_test.epub -t %filename%
calibredb add -d Gocomics_test.epub
echo "End %date% %time%" >> %logfile%
This adds the ebook to Calibre with the date and time appended as the title. I just ran it and it added this epub to Calibre - "GoComics [Sun 05/25/2014 2:57:27.64]"