Business Card CD

CD-ROM / DVD Replication
in super low
wholesale prices

Reciprocal Link ExchangeCD-ROM Related Resources
The CD-ROM/DVD Replication Wholesaler
HomeAbout UsServicesTestimonyCD-ROM FAQDownload Templates and SoftwareContact Widsomedia.comView Your Shopping Cart
spacer
spacer
spacer

Replication:
Regular Sized CD (650MB)Regular Sized CD-ROM Replication
Mini CD (185MB)Mini CD Replication
Hockey Rink CD (50MB) Hockey Rink CD Replication
Rectangular CD (50MB) Rectangular CD Replication
DVD-5 (4.7GB) / DVD-9 (9.4GB)DVD-5 DVD-9 Replication
Custom Shaped CD (50MB) Shaped CD Replication

Silkscreen/Offset Preprinted
Recordable Media:

Regular Sized CDR (700MB, 40x)silkscreen/offset pre-printed regular sized  cdr
Mini CDR (185MB, 40x)Silkscreen/Offset Preprinted Mini CDR
Hockey Rink CDR (50MB, 40x) Silkscreen/Offset Hockey Rink Business Card Pre-printed CDR
Rectangular CDR (50MB, 40x)
Custom Shaped CDR (50MB, 40x)
DVD-R (4.7GB 4x)silkscreen/offset preprinted dvd-r

CDR Duplication (24-Hour):
Regular Sized CD (700MB)Regular Sized CDROM Duplication
Mini CD (185MB)Mini CD Duplication
Hockey Rink CD (50MB) Hockey Rink Business Card CD-ROM Duplication
Rectangular CD (50MB) Rectangular Business Card CD-ROM Duplication
DVD-5 (4.7GB)DVD Duplication

Blank Recordable Media:
Regular Sized CDR (700MB, 40x)Blank Regular Sized CDR
Mini CDR (185MB, 40x)Blank Mini CDR
Hockey Rink CDR (50MB, 40x) Blank Hockey Rink Business Card CDR
Rectangular CDR (50MB, 40x) Blank Rectangular Business Card CDR
DVD±R (4.7MB, 4x)Blank DVD-R

Packaging/Fulfillment:
Full-Color CD Sleeves
Jewel Cases w/ Color Inserts
Full-Color Mini CD Sleeves
DVD Amaray Cases

Accessories:
Rectangular Labels Rectangular CD-ROM Labels
Hockey Rink Labels Business Card CDROM Labels
Regular Sized LabelsRegular Sized CD-ROM Labels
Mini CD LabelsMini CD Labels
Label Applicator CD Label Applicator
CD Duplicator CD Duplicator
DVD Duplicator DVD duplicator

This FAQ is meant to answer most questions related to creating content for CD-ROM, CDR, DVD, and DVD±R. For the technical aspect of these media please refer to other FAQ's such as Andy McFadden's CD-Recordable FAQ.

Feel free to contact us if your question is not answered here.

Q 1 With all the available media, how can I know which medium best suit my needs?
A.

We can answer this question from different angles. i.e. capacity, content formats, and intended audience.
The capacify of a CD-ROM is dependent upon the size of the CD. A standard regular size CD-ROM has 650MB stroage. Along the evolution, we now have 700MB and and 870MB CD-ROMs. But the original CD-ROM standard stipulated in the Orange Book was 650MB. Mini CD has capacity ranging from standard 185MB to 210MB. The capacity of the so called shaped CD (including business card CDs) also varies from 30MB to 100MB. If your content is purely data or software, then your options are bounded by the total amount of data you need to put on the media. You can always use a media with larger capacity, though it may be a little bit wasteful. If your content is either video or audio, then your options will be dictated by how you encode your content. For instance, a video file can be encoded as asf (wmv), mpeg-1, mpeg-2, div-x, or the extreme large avi format. In that case you should know the streaming rate of each format. As an example, a hockey rink CD with 50MB can hold up to 20min of quality video when encoded in wmv format. If encoded as avi, 50MB can barely hold few seconds of video.
If your intended audience are computer users, then you should avoid DVD as there are still many computers out there without DVD-ROM drives. You can, however, in the case of video encoded your video in Mpeg-1 as a VCD. Mpge-1 files can be played on PC by Windows Media Player and by QuickTime on a Mac. The same VCD disc can also be played by most DVD players. If you demand higher video quality then Mpeg-1, then there is another format in between DVD and VCD, called S-VCD. S-VCD is a standard promoted by the People's Republic of China Government. Most DVD players on the market now can play S-VCD, as most DVD players are made in China anyway.

Q. 2 How can I make my CD-ROM work on both PC and Mac?
A. To the novices, they think just copying files on a CD-ROM and the files should be seen by both PC and Mac. By and large it's true. If you copy your HTML files or text files onto a CD-R with any CD burning software and put the CD into a Mac, the Mac can probably read the data and display them. If, however, you copy the Mac version of a Flash projector file created on a PC to a CD-R, the file with hqx extension won't work on a Mac. The resaon being PC and Mac use different file system. To solve this problem, you will have to create a hybrd CD. There are CD authoring software on the market for that purpose. Just google "Hybrid CD" will give you a bunch of results.
Q. 3

How can I make my CD-ROM AutoRun?

A.

To make an autorun CD-ROM you need to include a file called "autorun.inf" in the root directory of the CD-ROM. You can create the file with a simple text editor such as Notepad. Make sure to quote your filename when you save the file otherwise Notepad will save the file as "autorun.inf.txt" instead of "autorun.inf". In its simplest form the file only needs two to three lines. For example:

[autorun]
open=program_to_be_run.exe
icon=icon_to_be_shown.ico

You should replace program_to_be_run.exe with your own program and icon_to_be_shown.ico with your own icon. The requirement for this to work is that program_to_be_run.exe must be a self-executable file. Simply put "open=index.html" trying to open up a webpage won't work.

Q. 4 How to AutoRun my Flash animation or Director Movie?
A.

This is relatively simple. All you need is to create a projector for your Flash or Director movie. A projector is a self-executable file that does not require the Flash or Director player. Simply put the filename of the projector file in the "open=" statement in the autorun file we presented in Question 3. For example, if you flash projector file is called presentaton.exe, then the autorun.inf content would be:

[autorun]
open=program_to_be_run.exe

You can ignore the icon line if you don't have an icon. By default the icon will the the same as the .exe file; the Flash player icon in this case. But if you do have an icon called icon.ico, say, then just add the following line to the file.

icon=icon.ico

Q. 5 How can I AutoRun an HTML page?
A. Remember in Question 3 we mentioned that the requirement for autorun is to have a self-executable file. Since HTML file by itself is not self-executable. For example, if you type "index.html" under DOS prompt your page won't come up. To solve this problem, you can pass the name of the page you want to start to a self-executable program that will fire up the default browser to display your page. The program you need to start is called, believe it or not, "start". So if you need to autorun an HTML file called mypage.html, then substitute the "open=" statement in Question 3 as "open=start.exe mypage.html". Just be safe, remember to copy the "start.exe" file from your c:\windows\command directory to your CD-ROM. One disadvantage of this method is that it will display a transient DOS window before the default browser fires up. To solve this program, you can use some other third party programs to replace start.exe. We have written a simple program just for that purpose. You can download it from our Download area.
Q. 6 How to AutoRun my PowerPoint presentation?
A.

Same as HTML file, a PowerPoint file is not self-executable. You may be tempted to think that the same tactics to handle HTML file should work for PowerPoint. In most cases it will, provide that the users' systems have PowerPoint installed. In case the viewer's system does not have PowerPoint, the method will fail badly.

You do have several options to make a full-coverage autorun for PowerPoint. Microsoft offers a PowerPoint Viewer which you can include on your CD-ROM. The viewer is royalty free and can be download from Microsoft. However, there is one little defect on using the PowerPoint Viewer -- the viewer cannot render transparent graphics very well. Images may appear jagged on transparent layer. If you have to use the PowerPoint Viewer you'd better avoid using any transparent graphics.

Alternatively, you can import PowerPoint into Macromedia's Director and then save the Director movie as a projector. The projector is a self-executable file so it is qualified to be autorun. Although it sounds "beat around the bush"; it may make sense if you need to combine other multimedia contents. Another downside is that Macromedia Director only takes PowerPoint 4.0 files. So you will have to down grade your PowerPoint file in order to be imported by Director.

There is also a quick and dirty solution. Simply save your PowerPoint presentation as webpages under the "Save As" options of PowerPoint. Make sure to experiment and set the proper web options to make the webpage work on both IE and Netscape. Once you have the HTML file, just configure it as described in Question 5.

Q. 7 How to AutoRun a video file?
A.

No matter how you encode your video, be it Mpeg-1 or Mpeg-2, wmv or mov, you will need a player to show the video. If the player is a self-excutable exe file then you have solved the problem. Just put the name of the player to the Open line of the autorun.inf file. Of course you will need some way to pass the name of the video to the player. Windows Media Player can play most of the file format. If you need Windows Media Player to be the player for your video, you will need to contact Microsoft directly to get the royalty free permission. Microsoft will ask you to fill out an online form and you should get approval within two weeks.
You can also download a video player from our download area. Our video player can play asf, wmv, mpeg video format. If also has a customizable left pane for you to put your slogan, and below the video two buttons for your website and email.

Q. 8 Can I make the CD-ROM icon more meaningful on "My Computer" or "Windows Explorer?"
A. If you don't do anything to the CD-ROM, the default icon shown on "My Computer" or "Windows Explorer" will be an icon of a CD-ROM with a magic number only Bill Gates knows what it means. Remember the icon line in autorun file we created in the previous question? You can design your own 32 x 32 icon with some icon editing software such as Microangelo and then save the icon file to the root directory of the CD-ROM. Simply put your icon filename in the autorun file will replace the default icon with your own. To replace the meaningless number, you need a "Volume Label". You have probably seen the volume label but never paid attention to it. When you use your CD burner software such as Adaptec Easy CD Creator or Nero the similar number usually appears on the left pane of the file explorer. You can single click that number and replace it with a more meaningful name just as if you'd change file names on "Windows Explorer". Now you have the right icon and right Volume Label, the icon will make much more sense.

 

New Cyberian Systems, Inc.
1919 O'Toole Way, San Jose, CA 95131, USA
Tel: (408) 922-0682   Fax: (408) 884-2257   Email: sales@wisdomedia.com
© 2004 Widsomedia.com