| Re: Posting notes - splits, pars - easy & way faster - PostingNote.txt (0/1) - "make-dir.txt" 149 bytes yEnc |
Easynews - www.easynews. .. |
| Old Geek (eldergeekenator@gmail.com) |
2017/08/28 17:27 |
Path: news.nzbot.com!not-for-mail
From: Old Geek <eldergeekenator@gmail.com>
Newsgroups: alt.binaries.multimedia.erotica.amateur
Subject: Re: Posting notes - splits, pars - easy & way faster - PostingNote.txt (0/1) - "make-dir.txt" 149 bytes yEnc
Message-ID: <us89qctppnrimo66gm37olrchk14dakl72@4ax.com>
References: <lvl6qchej1uhmqra0ii2fp1r2r2l7drljn@4ax.com>
User-Agent: ForteAgent/8.00.32.1272
Lines: 62
X-Complaints-To: abuse@easynews.com
Organization: Easynews - www.easynews.com
X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly.
Date: Mon, 28 Aug 2017 18:27:23 -0500
X-Received-Bytes: 3319
X-Received-Body-CRC: 1214430382
Xref: news.nzbot.com alt.binaries.multimedia.erotica.amateur:12346
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"
)
)
|
|
|