On Sat, 23 Jun 2018 12:32:22 -0400, FKW <nospam@nospam.org> wrote:
>Thanks, but I wsa wondering the procedure that folks are using to
>create the spots. I wanted to know if there is a specia decoding
>method to the postings in the main alt.binaries.multimedia.erotica
>group. Or do the spotters have to download everything and then create
>the spots, which would seem a painfully ardurious task.
>
>On Sat, 23 Jun 2018 13:38:17 +0100, "Michael" <yeahasif.com> wrote:
>
>>Well as you`re posting in this group I presume you`re after lesbian porn. The spot postings in here usually have .jpg previews and then NZB files, just check the preveiws and use the NZB file to grab the files of the films you like. I usuall keep an eye on them as you get ALL the PAR files as well which sometimes are unnecesary.
>>
>>
>>--------------= Posted using GrabIt =----------------
>>------= Binary Usenet downloading made easy =---------
>>-= Get GrabIt for free from http://www.shemes.com/ =-
Last year I posted an MS Access database which imports the .sfv files
and outputs the actual file names. If you haven't got MS Access, you
can download the MS Access Runtime, which allows you to use but not
modify Access databases. Look for the thread 'Anyone worked out new
naming convention on a.b.e.?' in this group, around 25 November last
year.
For it to work, the .sfv files need to be renamed to .txt and
truncated to no more than 50 characters. I use a batch file for this:
copy *.sfv *.txt
@echo off
::pause
:: short240.bat Tue 15-02-2011 13:36:34.66
@echo off & setLocal enableDELAYedeXpansion
for /f "tokens=* delims= " %%a in ('dir /b *.txt') do (
set F=%%~Na
set F=!F:~0,50!
move /y "%%a" "!F!%%~Xa"
)
::pause
for /f "delims=" %%a in ('dir /b *.txt') do call :dot "%%a"
pause
::goto :EOF
:dot
set "var=%~n1"
set "var=%var:.=_%"
ren %1 "%var%%.txt"
::pause
If you have Forte Agent, you can automatically download the .sfvs into
a separate folder. Instructions on this can be found in a post by
Ralph Fox in alt.usenet.offline-reader.forte-agent on 24 November, in
a thread titled 'Automatic Download of Headers'.
It's a bit of a palaver to set up, but it's pretty quick when it's all
working.
Ed
|
|