On Sun, 27 Aug 2017 17:52:51 -0600, harryh89@yahoo.comx wrote:
>In my posts elsewhere I have been using multipar rather than quickpar
>for posting. I had observed some posters using the multipar tool and
>wanted to understand how it helped. I discovered it helped a lot
>because it automates a lot of the effort in creating the pars and
>splits and is way faster than using the GUI. I created two batch
>files run in a command window to help automate the process and the
>attached text file presents what I use. I place files to receive pars
>only in a directory, open a CMD window for that directory and run a
>batch file using a selected set of parameters. For splitting, I place
>those files in a different folder and run a slightly different batch
>files allowing Multipar to create pars and splits.
>
>We posters know that creating a post requires some effort. Finding
>files to post and preparing for posting by making pars and splits then
>actually posting. The batch files have made some of that easier for
>me. Wish I had discovered the tools sooner, but maybe I can help
>others in their posting effort,
Thanks for passing this info along, I'll have to try it out.
I have been using a different method using a batch file I created
along with a couple of other utilities.
The batch file I wrote is this:
@echo off
for /f "delims=" %%a in ('dir /b') do (
if not "%%~fa"=="%~f0" (
md "%%~na" 2>nul
rem if exist "%%a" move "%%~na.*" "%%~na"
)
)
********************************************************
I place all the files I wish to post in a directory (ie d:\prep)
in that directory I also place make-dir.bat (the file above and
attached as a text file that can simply be renamed from make-dir.txt
to make-dir.bat)
When run make-dir will parse all the file names in the current
directory and create a sub-directory named after the original file,
striping off the extension.
I then sort the files for posting into the respective directory and
run my thumbnail maker on the main directory. I use videothumbsnail
maker and it places the preview file in the same directory with the
original file.
Then I run Autorarpar to split the files for posting into rars and par
them with essentially a single click.
Find autorarpar here, including instructions for use:
https://www.binaries4all.com/autorarpar/
EG.
make-dir.txt
@echo off
for /f "delims=" %%a in ('dir /b') do (
if not "%%~fa"=="%~f0" (
md "%%~na" 2>nul
rem if exist "%%a" move "%%~na.*" "%%~na"
)
)
|
|