illustrate
Products            Buy            Support Forum            Registrations            Professional            About           
 

Discussion of Automated CD Loaders

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • CBQ
    replied
    Re: Discussion of Automated CD Loaders

    Thank you Brendan. I appreciate you taking the time to share your knowledge and experience.

    CBQ

    Leave a comment:


  • bhoar
    replied
    Re: Discussion of Automated CD Loaders

    Originally posted by CBQ
    Well this stinks. I just purchased a used Rimage DTP 4000. And it is the SCSI model. I guess I am doubly screwed. It has a worthless/fickle picker and the SCSI interface is unsupported. :(
    Don't feel too bad. I've got three of the SCSI DTP-4000s and three of the SCSI DTP-1000s. :(

    On the SCSI-only models, if you can hack together your own RS-232 serial cable and connect it to the four pin test connector on the control board, you can try using something like the following and see if it works "well enough":

    Code:
    	Suggestion 9: RImage DTP-800/DTP-1000/DTP-4000 Older SCSI using debug port serial connection (double check speed) - UNTESTED
    	
    	Pre-Batch.exe 	--drive=G --comport=COM2 --comspeed=19200 --close --command=MU --bindresetall --sleep=2
    	Load.exe		--drive=G --comport=COM2 --comspeed=19200 --close --command=CR --command=OI  --command=MD  --command=R  --command=MU --open --command=MD  --command=P  --command=MU --close --sleep=10
    	Unload.exe		--drive=G --comport=COM2 --comspeed=19200 --open --command=CR --command=CI  --command=MD  --command=R  --command=MU --close --command=MD  --command=P  --command=MU
    	Reject.exe		--drive=G --comport=COM2 --comspeed=19200 --open --command=CR --command=MD  --command=R  --command=MU --close  --command=OR --command=MD  --command=P  --command=MU --command=CR
    	Post-Batch.exe	--drive=G --comport=COM2 --comspeed=19200 --close --command=MU
    Originally posted by CBQ
    Do either you or Spoon need a SCSI Rimage DTP 4000 to experiment with?
    I'm good.

    Originally posted by CBQ
    Brendan, I have read your wiki and the majority of the threads here, but I am new to cd ripping so please bear with me. Please tell me if my understanding is correct.

    There are two primary interfaces when ripping with robotics.
    1. The data interface for the music/rip
    2. The control interface for the robotics and drive

    Currently, if I understand you correctly, only firewire and serial are supported for the robotics control interface? No USB or SCSI support for the robotics?
    The DTP series came in two flavors: the older SCSI models and the newer firewire+serial models. The older SCSI models used SCSI for both the data (drive) interface as well as the control (robot) interface over a single cable. The newest DTP units used a combination of firewire for the data (ATAPI drives with firewire bridgeboards) and serial for the control (robot) (two cables).

    Note that the robot control board inside the unit always had both a SCSI and serial connector. Unfortunately, only the later revisions that used serial for the command interface had a "robust" control language available via serial.

    USB was never used on any of the DTP models (neither drive or robot).

    Originally posted by CBQ
    As for the data interface, on your wiki your write -
    "USB limitations on ATA/ATAPI command support, including examples where you would likely run into problems.
    USB (mis)handling of unusual calls (e.g. for secure ripping)
    USB (and firewire) problems with secure CD ripping/damaged discs."

    I am assuming you are referring to the data interface. But now that I read it again, perhaps I am wrong. Perhaps you are referring to the control interface via USB???
    I'm talking about the data (drive) interface. USB to ATAPI bridge chipsets are notoriously bad when it comes to secure ripping. Firewire to ATAPI bridge chipsets are less bad.

    Originally posted by CBQ
    I had really hoped to do secure ripping with a robotic setup. Is this not possible?
    It sure is. Using a firewire to ATAPI bridge is probably the best bet.

    -brendan

    Leave a comment:


  • CBQ
    replied
    Re: Discussion of Automated CD Loaders

    Originally posted by bhoar
    Re: DTP serial units - I support only the serial-connected (w/ firewire) ones for now. And even then, prepare to be disappointed. From my testing, the pickers on DTP units cannot handle much variance in hub-type and thickness. After five or so audio CDs, the two DTP units I tested almost invariably got stuck trying to pick because by that point the top two CDs in the input stack had somewhat "complementary" hub styles that the picker fingers can't grab between. I think the DTP units were engineered for the hub-type of blank CD-Rs in the late 90s...and are just not a great tool for random audio CD picking. It's possible the units I tested were defective or badly adjusted?

    Re: DTP SCSI units. I might end up try to support for them via the debug connector on the robot controller board. Maybe. Not sure how well that will work out, though. But really, as above, I currently doubt they're useful for CD ripping.

    Re: multiple robots

    There's no multiple device limitation in spoon's batch ripper. You associate each drive with the right device and provide the correct command line options in the batch config (if necessary - e.g. for serial-based ones you'd need to provide the com port(s)).

    There are some limitations related to the devices, however, and those relate to the manufacturer's drivers, firmware, etc.

    1. Sony Changers (firewire using a somewhat broken scsi changer interface) - I seem to recall hearing about issues with addressing multiple units in windows, so you might be limited to one of those at a time (due to a bug in the changer device firmware - I suspect that under some circumstances, it thinks it should talk to the drive inside the next changer device instead of the one inside it's own). This might be remedied by not chaining them and, instead, putting them on separate firewire buses.

    2. Minicubis/Baxter/DupliQ/Pico units (proprietary USB driver) - last I heard, they too were limited to one unit per system, due to driver issues. a future device driver revision from datatronics might remedy this. Note that the datatronics driver documentation seems to show support for multiple units, I suspect they just haven't properly implemented it.

    3. Serial-connected changers (mf-digital, discmakers, mediatechnics, amtren, etc.) - at least two devices, probably more. The serial library I use only allows two open devices at a time. However, each serial port is in use for only a short while. I'd need to experiment more to see if there's going to be a problem with more than 2 units.

    On the plus side, I doubt there'd be a problem using several manual load drives, a baxter, a sony changer and two serial robots all at once.

    Caveat: It's all experimental, no guarantees. e.g. my drivers still don't do the right thing at the end of a batch at the moment.

    -brendan
    Well this stinks. I just purchased a used Rimage DTP 4000. And it is the SCSI model. I guess I am doubly screwed. It has a worthless/fickle picker and the SCSI interface is unsupported. :(

    Do either you or Spoon need a SCSI Rimage DTP 4000 to experiment with?

    Brendan, I have read your wiki and the majority of the threads here, but I am new to cd ripping so please bear with me. Please tell me if my understanding is correct.

    There are two primary interfaces when ripping with robotics.
    1. The data interface for the music/rip
    2. The control interface for the robotics and drive

    Currently, if I understand you correctly, only firewire and serial are supported for the robotics control interface? No USB or SCSI support for the robotics?

    As for the data interface, on your wiki your write -
    "USB limitations on ATA/ATAPI command support, including examples where you would likely run into problems.
    USB (mis)handling of unusual calls (e.g. for secure ripping)
    USB (and firewire) problems with secure CD ripping/damaged discs."

    I am assuming you are referring to the data interface. But now that I read it again, perhaps I am wrong. Perhaps you are referring to the control interface via USB???

    I had really hoped to do secure ripping with a robotic setup. Is this not possible?

    CBQ

    Leave a comment:


  • bhoar
    replied
    Re: Discussion of Automated CD Loaders

    Originally posted by CBQ
    Spoon listed experimental support for the Rimage DTP. I think those came in two different models. One model had a SCSI interface and the other model was Firewire (with a serial port maybe?).

    Is the experimental support for both models or just one?

    Also curious about multiple robots connected to one system. I have seen bhoar's youtube video and it is amazing. Kudos brendan.

    Are there any limitations on multiple robots connected to one computer? Can I connect two USB robots, and one SCSI robot, and two Firewire robots to the same computer?
    Re: DTP serial units - I support only the serial-connected (w/ firewire) ones for now. And even then, prepare to be disappointed. From my testing, the pickers on DTP units cannot handle much variance in hub-type and thickness. After five or so audio CDs, the two DTP units I tested almost invariably got stuck trying to pick because by that point the top two CDs in the input stack had somewhat "complementary" hub styles that the picker fingers can't grab between. I think the DTP units were engineered for the hub-type of blank CD-Rs in the late 90s...and are just not a great tool for random audio CD picking. It's possible the units I tested were defective or badly adjusted?

    Re: DTP SCSI units. I might end up try to support for them via the debug connector on the robot controller board. Maybe. Not sure how well that will work out, though. But really, as above, I currently doubt they're useful for CD ripping.

    Re: multiple robots

    There's no multiple device limitation in spoon's batch ripper. You associate each drive with the right device and provide the correct command line options in the batch config (if necessary - e.g. for serial-based ones you'd need to provide the com port(s)).

    There are some limitations related to the devices, however, and those relate to the manufacturer's drivers, firmware, etc.

    1. Sony Changers (firewire using a somewhat broken scsi changer interface) - I seem to recall hearing about issues with addressing multiple units in windows, so you might be limited to one of those at a time (due to a bug in the changer device firmware - I suspect that under some circumstances, it thinks it should talk to the drive inside the next changer device instead of the one inside it's own). This might be remedied by not chaining them and, instead, putting them on separate firewire buses.

    2. Minicubis/Baxter/DupliQ/Pico units (proprietary USB driver) - last I heard, they too were limited to one unit per system, due to driver issues. a future device driver revision from datatronics might remedy this. Note that the datatronics driver documentation seems to show support for multiple units, I suspect they just haven't properly implemented it.

    3. Serial-connected changers (mf-digital, discmakers, mediatechnics, amtren, etc.) - at least two devices, probably more. The serial library I use only allows two open devices at a time. However, each serial port is in use for only a short while. I'd need to experiment more to see if there's going to be a problem with more than 2 units.

    On the plus side, I doubt there'd be a problem using several manual load drives, a baxter, a sony changer and two serial robots all at once.

    Caveat: It's all experimental, no guarantees. e.g. my drivers still don't do the right thing at the end of a batch at the moment.

    -brendan

    Leave a comment:


  • CBQ
    replied
    Re: Discussion of Automated CD Loaders

    Spoon listed experimental support for the Rimage DTP. I think those came in two different models. One model had a SCSI interface and the other model was Firewire (with a serial port maybe?).

    Is the experimental support for both models or just one?

    Also curious about multiple robots connected to one system. I have seen bhoar's youtube video and it is amazing. Kudos brendan.

    Are there any limitations on multiple robots connected to one computer? Can I connect two USB robots, and one SCSI robot, and two Firewire robots to the same computer?

    Thanks in advance for any help/guidance,
    CBQ
    Last edited by CBQ; December 09, 2007, 10:34 PM.

    Leave a comment:


  • bhoar
    replied
    Re: Discussion of Automated CD Loaders

    Eli - At the current ebay prices, I haven't been able to justify adding one to my collection, so I don't have a Max unit here (just the Composer XL/Pro units).

    I did, however, download the RoboPrint v1.3 utility (1.3 is for Composer-Max, 2.0 is for ADL-Max) and used Portmon to find that it seeks the robot by sending "_SV" and "_MOVE:S" on the serial port (not sure of the speed yet). This indicates to me that the command set for the Max is probably different from the Composer XL/Pro units (though it seems to share a common heritage, as "SV" is shared).

    I suspect you're the only present (or technically...future) owner of one on the forum (so far), so you might be the one experimenting with the RoboPrint/Filemon combination (and later, hyperterminal) to document the command set.

    -brendan

    Leave a comment:


  • EliC
    replied
    Re: Discussion of Automated CD Loaders

    I am working to aquire a new one since the original ComposerMax was lost by fedex. No worries as it was there fault, the shippent was insured, and my purchase price has been refunded.

    I do plan to get a Primera Composer Max. Is there anyone that has used this with the current batch ripper? Are there any issues before implementation for this device will be complete?

    Leave a comment:


  • bhoar
    replied
    Re: Discussion of Automated CD Loaders

    Originally posted by EliC
    The package containing the guts of the robot (arm, control board...) was lost by fedex....
    That would make me totally flip out.

    -brendan

    Leave a comment:


  • EliC
    replied
    Re: Discussion of Automated CD Loaders

    The package containing the guts of the robot (arm, control board...) was lost by fedex....

    Leave a comment:


  • bhoar
    replied
    Re: Discussion of Automated CD Loaders

    Originally posted by EliC
    One of my criteria is to be able to use a plextor drive
    So Eli, how's the hardware acquisition and rebuild going?

    FYI, I've started up a wiki to document robotic command sets here



    Maybe you can help to fill this one in soon?





    -brendan

    Leave a comment:


  • Spoon
    replied
    Re: Discussion of Automated CD Loaders

    If you have a Sony XL1Bx email me please:

    Leave a comment:


  • EliC
    replied
    Re: Discussion of Automated CD Loaders

    One of my criteria is to be able to use a plextor drive

    Leave a comment:


  • bhoar
    replied
    Re: Discussion of Automated CD Loaders

    Originally posted by EliC
    Are parts available to consider building a ripper yourself? The cost of these "robots" seems outrageous. It doesnt have to look pretty, but I would imagine that it can be done.
    Short answer: no, not unless you are a masochist.

    IMHO, the best do-it-yourself approach would be to get the Sony XL1B (aka XL1B2 aka XL1B3) changer, which can be had for ~$200 from time to time. It's big, but you can pre-load 200 CDs. Then:

    a) Lobby Spoon to support it the changer.
    b) Use the MediumChanger GUI software, links can be found in the AVS Forum website.
    and/or
    c) Write your own batch files using the windows version of MTX (which now supports the XL1B series) and a command line ripper (perhaps db power amp, if all the features you need are supported at the command line).

    -brendan

    Leave a comment:


  • EliC
    replied
    Re: Discussion of Automated CD Loaders

    Brendan,
    Are parts available to consider building a ripper yourself? The cost of these "robots" seems outrageous. It doesnt have to look pretty, but I would imagine that it can be done.

    Leave a comment:


  • bhoar
    replied
    Re: Discussion of Automated CD Loaders

    Originally posted by EliC
    -small camera on robot arm to photograph the disc being ripped
    Heh. Weibetech already repackaged the Baxter 25-disc device with a webcam,



    ...and then increased the price to $2400 (a $1600 forensics premium, well I guess you get some custom software too).

    You could do the same, with some elbow grease, if spoon added the ability to run post-"Accept" (or pre-"Insert" depending on ease of camera placement) batch files.

    -brendan

    Leave a comment:

Working...