Natasha Duncan-Drake with Various Book Covers - Featured Image

Natasha Duncan-Drake – Author

Click here to see all books by Tasha

Pseudonyms: Tasha D-Drake, Tasha Duncan

Bio

Natasha is a British author with Wittegen Press and has been publishing genre fiction since 2011. Her work includes everything from horror to young adult fantasy and she has never met a genre she didn’t like. A prolific producer of short stories and novels alike, Natasha currently has over twenty five titles in her back catalogue with further releases always imminent.

Natasha has been writing since she was a young girl ever since she read The Hobbit at Primary School. She is a big fan of science fiction, fantasy and horror in all their forms and is a big advocate of fanfiction as a great tool for writers to polish their skills in a welcoming and supportive community.

Before establishing Wittegen Press with her twin sister, Sophie Duncan, Natasha was a database and systems consultant. She combines these skills with her writing to create and manage her career in the bold new eBook market.

Press kit downloads: Bio and Contact LinksHiRes Photo | Details of All Tasha’s Books


Contact Information

twitter: @beren_writes | Facebook | G+ | Tumblr | Livejournal | Fanfic on AO3 | Goodreads | Amazon Author Profile | Wattpad

Scroll down to see the most recent posts from Tasha’s Personal Blog and she is also a contributor to the Wittegen Press Blog. Both have free fiction, information about books, reviews of books and films and lots more.

If you would like to email Tasha, please use this Contact Form

Warning
Warning
Warning
Warning

Warning.


Tasha’s Latest Personal Blog Posts

click to see the posts

(to visit the whole blog click here) 

Tasha's Thinkings

Welcome to my blog! Here you will find tips on writing/publishing, recipes, reviews, fiction and more.

Swirling brown background with the words "Make it Quicker" and "How to Efficiently Create Short Vids for Book Promotion on Social Media" on top of it.

How to Efficiently Create Short Vids for Book Promotion on Social Media

So I am still in the stages of implementing the social media strategy outlined by Kate- Alyne Digital and am having to change up because slideshows for books don't seem to be cutting it anymore. It's all about vids now.

Now Kate gives a very comprehensive method for creating the vids in Canva, but it uses functions of Canva which are part of the purchased packages. Now, since I already have Adobe (which I use for many things), I do not want to have to pay for two packages, so I decided to try and figure out the most efficient way of doing it in Adobe.

Unfortunately this is not as easy to automate in Premiere Pro as doing slides was in Photoshop. This is where it becomes obvious that all Adobe products are not made equal, what is easy in one is not easy in another. This YouTube video gives a detailed rundown of how to import information from a CSV file into Photoshop to create many datasets of the same layout with different word content.

BUT we can’t do this in Premiere Pro. One option is to create text PNGs with transparent background in Photoshop using variable and datasets and then importing those into Premiere Pro to overlay the background video. This is perfectly valid, but there is a little faffing to do in Photoshop (repositioning text, adding back in first “ if using dialog because it loses it on the import etc). Only having to faff in one application is better, and having the text editable in Premiere Pro in case of a mistake is much better.

So we have to go around the houses. My solution requires the following steps:
  1. Create text content in Excel
  2. Export the content to individual CSV files
  3. Convert the CSV files into SRT files
  4. Import the SRT files into Premiere Pro
  5. Edit the captions so they show in the manner we wish them to show.
  6. Create vids

1. Create Text Content in Excel

We can use any editor that allows us to output to CSV, I use Excel because I have Office 365. Google Sheets or Open Office should work just as well, but I have not used them, so cannot vouch for them.

1.1 Format for Each Excel Sheet

Each sheet should have 3 columns (no headers):
  1. Start time (00:00:00:00) – where we want the text to start in the timeline
  2. End time (00:00:00:00) – where we want the text to end in the timeline
  3. Text content
We are basically creating all the information needed in an SRT file.
2 Columns of numbers and one column of text in an excel sheet
Format of the CSV file

1.2 Create a Sheet for Each Set of Text

Unlike Kate’s method, we have to have each set of text on a different sheet in the workbook. The easiest way to do this is:
  1. Create the first sheet.
  2. Make a copy of the first sheet.
  3. Change the name of the new sheet to something sensible.
  4. Edit the text in the new sheet.
  5. Rinse and repeat until we have as many sets of text as we need.

2. Export the content to individual CSV files

Now the easiest, but slower method to do this the following (the methods in other spreadsheet programs may be slightly different):
  1. Open the workbook
  2. Go to the sheet to export
  3. Go to File > Export > Change File Type
  4. Choose CSV and save
The only problem with this in Excel is that it messes with seeing the original document because CSVs can only cope with one sheet of data, so it can be a right pain. Having to open and close the original document. 
 
Hence, an easier method is as follows (this is Excel specific):
  1. Save the workbook as a macro enabled workbook (xlsm)
  2. Go to View > Macros > View Macros
  3. Type in “ExportAllSheetstoCSV” in the Macro name field, then hit the Create Button

    Screen grab of the Macro dialog from Excel

  4. The MS Visual Basic screen with open with your new empty macro as shown.

    Screen grab of the VBA screen in Excel

  5. Copy the following code and paste it into your macro:
    Dim ws As Worksheet
    Dim path As String
    path = ActiveWorkbook.path & "\" & Left(ActiveWorkbook.Name, InStr(ActiveWorkbook.Name, ".") - 1)
    For Each ws In Worksheets
    ws.Copy
    ActiveWorkbook.SaveAs Filename:=path & "_" & ws.Name & ".csv", FileFormat:=xlCSV, CreateBackup:=False
    ActiveWorkbook.Close False
    Next
    Screen grab of the code as it will be in the VBA editor
  6. Click the save icon and close the VBA editor.
  7. Go to View > Macros > View Macros
  8. Choose “ExportAllSheetstoCSV” (if you only have one macro is will already be selected)
  9. Click Run – and all your sheets will be saved into the same director as you Excel sheet as CSV files. The filenames will be: FilenameoftheExcelSheet_Nameofthesheet.csv – so name the sheets something sensible.

3. Convert the CSV files to SRT

This is the easiest part, there is a free tool by GoTranscript to do this.
  1. Go to this website: https://gotranscript.com/subtitle-converter
  2. Click Upload and choose all the CSV files
  3. Choose “SubRip (.srt)” from the Select Format menu
  4. Click convert and save the zip files it gives you to you harddrive.
  5. Unzip the zip file and there are all your srt files – one for each set of text.

4. Import the SRT files into Premiere Pro

In our Premiere Pro project we can drag and drop the srt file of choice into the media list. Then drop it onto our timeline. Premiere Pro will convert our srt file into captions that we can edit to our hearts content.

This Adobe vid gives lots of info on how to do this: How to Edit Captions in PremierePro.

5. Edit the captions so they show in the manner we wish them to show.

The only problem with captions in Premiere Pro is they can only have a max of 2 lines. When we are creating text for vids like this, we often want more than 2 lines. So we have to make them graphics.
  1. Select all the captions
  2. Go to “Graphics and Captions” in the main top menu
  3. Select “Upgrade Captions to Graphics”
Now all our captions are text boxes.

This Adobe vid talks all about text boxes and how to edit them: How to Add Text to Videos in Premiere Pro.

We don’t need to add text because we’ve already done it, but it talks all about editing text as well.

6. Creating the Vid

Now we have our text we can put anything we want behind it.
  1. Make sure the text is on the top most layer.
  2. Drag and drop our vid background into a layer under the text.
  3. Make sure the vid is the right length.
  4. Add in a music track if required (Incompetech has some great royalty free music) – if posting to TikTok, use their music, but YouTube, Insta etc having music already on there stops the hassle.
  5. Export the vid.
Because we can turn Premiere Pro layers on and off at will, we can load up one project with many sets of text and backgrounds and then just mix and match as required.

7. Summary

Is it easier in Canva – yes most probably.

Kate is a very savvy lass and her courses have lots of useful information, so go check her out if you are an author struggling with social media (her TikTok course is mind blowing). I did not create this post to replace any of hers, I just don’t want to forget how to do all this and if you’re locked into Adobe like me, this is the most efficient way I can come up with without buying third party plugins and having to deal with After Effects as well.
 

Check Out My Fiction YouTube Channel

Tales with Tasha - YouTube

Each week we have a theme and so there will be something for all tastes.
  • 🎤Micro stories/ jokes as YouTube Shorts Monday - Sunday- for fun quick viewing
  • 🕮A longer story every now and then for story time, over coffee or before going to bed

Tasha's Social Media

📚Join My Newsletter📚


Receive 2 FREE eBooks just for signing up and a free short stories on Free Fiction Fridays.


Two books covers - one with a woman firing guns above the title "Assassin's Blood" the other with a woman screaming and glowing with the title "Curse of a Banshee"

List hosted on MailChimp, information will only be used for Newsletter contact, and we do not send spam.
Author: Tasha Duncan-Drake
Posted: August 7, 2025, 9:51 am
Publishing Slideshows to TikTok for Book Promotion

Slideshow Book Promotion on TikTok

Prerequisites: Windows 10 or 11, Android phone

So I am dipping my toe into TikTok these days (oh woe is me 😆) and I'm trying out a strategy from this successful young lady over here: Kate- Alyne Digital. It involves posting TikTok slideshows with significant scenes from a book to get readers hooked, and make them want to buy the book.

She has many YouTube vids about it, so if you want all the details check out her channel.

This post is simply a cheat sheet of everything I have learned through trial and error about posting slideshows on TikTok and what a pain in the proverbial it is! Please be aware there are many other ways to do it, but this is the easiest for what I have available.

Each slideshow should have between 25-35 slides for Kate's process - so it takes some work to get everything ready.

As Kate points out, TikTok does not mind word content being repeated, as long as something significant changes in each slideshow. For us this means changing the background and the music on each slideshow. The same scene can be used over and over again because TikTok has such a large audience it could be any instance of it that catches attention.

Choose the Backgrounds

The first thing I do is go and find my backgrounds. The following sites are really good for royalty free, free to use images:
  • Unsplash - just make sure to select the free licence option
  • Pexels - has stills and vids
  • Pixabay - just watch out for the AI created content which is usually tagged
Search for topics close to the theme of your book and choose the aesthetically pleasing ones. We don't want to misrepresent our books to our audience because then those seeing it won't buy it, so go with the right genre.
N.B. Kate mentions to avoid having people in the pictures because sometimes the TikTok algo can misconstrue what it is seeing, especially with romance titles and shadow ban the slideshow.

Having all my background chosen before I begin putting the slides together makes it a much faster process.

Choose the Music

Each slideshow needs different music, so I go to the "Unlimited Sounds" library in TikTok Studio and hunt out the tunes that feel like they go with the scenes I have chosen. Again this is very much to do with personal preference and genre choices.
Screen shot of Tiktok's unlimited sounds library
TikTok Unlimited Sounds Library

Click the bookmark icon next to selected tunes to mark them as favourites to easily find them again later.

I also write everything down in a spreadsheet so I know what I have chosen, but then I'm a nerd 🤓😝.

I reuse tunes on different content, but not on those vids that contain the same scene. I have no idea if TikTok would object if I did, but I prefer not to take chances.

Create the Slides

Each slide has between 10 and 15 words except for the first one which is a hook slide rather than part of the chosen scene.

I've created myself a base file in Photoshop with has pre-numbered layers for all the text, and I place my chosen image at the bottom as the background.

Then using the script I found and have written its own post about - How to Batch Save Layers in Photoshop - I save all the text layers with the same background.
#1 Note: There is also a plugin for Gimp that can be used to get a similar output: Batcher. And I am sure there must be a way of doing it in Canva, but I'm afraid I do not know what it is.

Change Create and Modified Dates of Slides

This is optional, but it saves me a lot of time when creating the slideshows on TikTok, so I am sharing it. TikTok does not allow sorting by name, only but created/modified date when adding files to a slideshow, so I use this method to make sure I can do it inside TikTok if I need to for any reason (I don't often - you'll see why later, but I still do this on the off chance since it takes seconds).

What I have found when copying files from Windows to my phone to upload to TikTok is that getting them in the right order is a headache, and flipping around to add them in the correct order for a slideshow takes forever if they are out of sequence. Hence why I take this step.

This code sorts files by name and then edits the files' created and modified dates to be 1min apart from the starting time specified, so they will definitely appear in order when sorted by date.

Using Windows Powershell (right click on the windows icon and it's in the list), copy and paste in the following code:

# --------------------------  CONFIGURE  --------------------------
$folder      = 'C:\DIR-OF-SLIDES' # your directory of JPGs
$startDate   = Get-Date '2025-05-25 12:00:00'   # first file’s “Date Created”
#              ? EDIT THIS to pick any starting moment you like
# ----------------------------------------------------------------

# 1.  Collect and order the files once (static array keeps order stable)

$files = Get-ChildItem -Path $folder -Filter *.jpg -File | Sort-Object Name

# 2.  Loop through the list, adding one second per iteration

for ($i = 0; $i -lt $files.Count; $i++) {
    $newStamp = $startDate.AddMinutes($i)   # +0 min, +1 min, +2 min, ...
    $files[$i].CreationTime = $newStamp     # write Date Created
    # Optional: keep LastWriteTime in sync
    $files[$i].LastWriteTime = $newStamp
    Write-Host "[$($i+1)/$($files.Count)] $($files[$i].Name) ? $newStamp"
}     

Make sure to edit the folder and startDate (bits in bold) at the top of the code so it can find your files and sets them to a sensible date. You can edit before you copy and paste the code, or in Powershell, if you paste then hit the up arrow and then left and right arrows you can navigate to the right place in the code to edit it in situ.

Upload the Files to the Phone

My phone is Android - I can only assume Apple gives you a way to do this too, but I'm afraid Apple products mystify me.
  1. First of all - use a USB and open your phone so you can see the file system. It is the safest and quickest way.
  2. Zip your slideshow into one file. If you do not do this, all the files will be copied over in a random order and the changing file times you did above will be worthless.
  3. Copy the zip file to your phone in a sensible place so you can find it again.
  4. Open "My Files" on the phone.
  5. Click on the zip file and choose the extract option.
  6. Now all your files are on the phone in the right order for addition to TikTok.
#2 Note - If you have Windows and Android, using "Phone Link" is so much easier for the next parts. Just remember to activate "Cross device copy and paste" in the Settings>Features, for ease of use.

Creating the Slideshow

As I mentioned above, you can create the slideshow inside the TikTok ap, but this is the slow way. It show you low-res previews of the files which are impossible to see properly and is a right royal pain.

The quick way is as follows:
  1. Open "My Files"
  2. Navigate to the right folder.
  3. If you did the step with Powershell they should already be in the right order, otherwise select "name" from the sort option.

    Screen shot of "My Files" showing how to order by "Name"

  4. Select all the files in order starting from the top and going down (I think it works if you choose select all, by I am paranoid of technology my nature, so I take the few seconds to click each file in order to make sure that is the order they are added).
  5. Click "share" and choose "TikTok"

    Screen shot of My Files showing where the sharing option for TikTok is

  6. TikTok will open will all your files in a slideshow.
  7. It will already be playing music, but you can change this by clicking on the button at the top of the screen with the musical note:

    Screen shot of the TikTok main upload screen

  8. Go the favourites tab to find the music you selected previously.

    Screen shot of sounds library inside TikTok and the "favourites" tab

  9. If the music is not audible when returning to the main screen after selecting a track there is a volume option under the settings at the side, it's just hidden. Click the little down arrow and you should see it.

    Screen shot of TikTok main screen showing where to find the volume option.

  10. Click the "Next" button and go to the details screen where there are spaces for the Title and description. Add these in - I find it easiest to write out all my titles and descriptions in a word processor first, then copy and paste them in. If using "Phone Link" I can do this right from the doc straight into TikTok.
    #3 Note - we cannot type on a proper keyboard when filling in these fields, even when using "Phone Link" - TikTok just keeps losing focus and only takes one letter at a time before you have to reclick into the box. I tried it in "Phone Link" and via a dedicated Bluetooth keyboard with the same result.
    Screen shot of the details editing page on TikTok

  11. Now we can post immediately by choosing the "post" option, but I like to upload all my slideshows at the same time and post on different days, so I save to "drafts".
    #4 Note - while TikTok allows us to schedule vid posts via TikTok studio, it does not allow us to schedule slideshow posts. Hence we have to come back and post our drafts when the time comes. This is annoying, but only takes one click. HOWEVER - do not delete any files from your phone until your draft is posted - TikTok does not upload anything until you post it it is only saved on your phone.
There are some services that allow you to schedule slideshows, but I tried a few and they either don't have certain options, or the free ones only allowed me to upload 10 slides. I would suggest checking them out yourself if you wish to go that route.

And that is it - slideshows uploaded to TikTok. I am sure there are other, probably more efficient ways to do it, especially if you have specialist software to upload, but this is the way I do it and it now takes me a minute or two to upload rather than forever. Hope this is of some help, if anyone is running into the same roadblocks I did.


Check Out My Fiction YouTube Channel

Tales with Tasha - YouTube

Each week we have a theme and so there will be something for all tastes.
  • 🎤Micro stories/ jokes as YouTube Shorts Monday - Sunday- for fun quick viewing
  • 🕮A longer story every now and then for story time, over coffee or before going to bed

Tasha's Social Media

📚Join My Newsletter📚


Receive 2 FREE eBooks just for signing up and a free short stories on Free Fiction Fridays.


Two books covers - one with a woman firing guns above the title "Assassin's Blood" the other with a woman screaming and glowing with the title "Curse of a Banshee"

List hosted on MailChimp, information will only be used for Newsletter contact, and we do not send spam.
Author: Tasha Duncan-Drake
Posted: May 28, 2025, 1:54 pm
Three different images with a red background all with different text with the words Save Layers from Photoshop - FAST over the top.

How to Batch Save Layers in Photoshop

There is an option to save each layer as its own image in Photoshop, which is very useful if each layer is its own complete image.

File > Export > Layers to File

However, if, for example, we have lots of text layers we wish to save, all with the same background/foreground (see below), or we have lots of different icons we want to save all with the same background, this is not sufficient.

Three different images with a red background all with different text.
Example of text layers with the same BG

If we use the Layers to File option, we will end up with one image that is the background and all out text layers either without a background if we save with transparency, or with a plain background if we save without transparency.

Now we could faff around with Photoshop to create our own script to do what we actually want, but we don't have to, because a very nice person has already done it for us.

Photoshop-Export-Layers-to-Files-Fast

  1. Go to the above link and download the zip file.
    Screenshot from Github to show where to download the file.
  2. Extract the zip file into its own directory.
  3. Copy the following 2 files from the directory:
    Export Layers To Files (Fast).jsx
    Export Layers To Files (Fast)-progress_bar.json
  4. Navigate to the Photoshop Scripts directory, probably something like this:
    \Program Files\Adobe\Adobe Photoshop 2025\Presets\Scripts
  5. Paste the files into the scripts directory.
  6. Start Photoshop
  7. The script can be found in the following menu:
    Files > Scripts

When we run the script we get this screen:

Snapshot of Export Layers to Files Fast

As you can see there are lots of options.

  • We can have a background and/or a foreground
  • We can export all layers (except the background and/or foreground if we have selected them)
  • or a Group of layers
  • or just the visible layers
  • and we can pick what format to export to
  • plus much more.
This takes what can be a 15 min job:
  1. turning on the right foreground layer,
  2. exporting the layer with the background
  3. rinse and repeat
Into a 30 second job of clicking a few buttons.

It has saved me so much time, I had to share it. Hope you are having a great week.


Check Out My Fiction YouTube Channel

Tales with Tasha - YouTube

Each week we have a theme and so there will be something for all tastes.
  • 🎤Micro stories/ jokes as YouTube Shorts Monday - Sunday- for fun quick viewing
  • 🕮A longer story every now and then for story time, over coffee or before going to bed

Tasha's Social Media

📚Join My Newsletter📚


Receive 2 FREE eBooks just for signing up and a free short stories on Free Fiction Fridays.


Two books covers - one with a woman firing guns above the title "Assassin's Blood" the other with a woman screaming and glowing with the title "Curse of a Banshee"

List hosted on MailChimp, information will only be used for Newsletter contact, and we do not send spam.
Author: Tasha Duncan-Drake
Posted: May 12, 2025, 7:30 am
Scroll to Top