Posting Terbaru

Minggu, 29 Juni 2008

Convert VHS to DVD

Tidak ada komentar :

VHS video is inconvenient in today's digital world, and there are a lot of people who want to convert their older video recordings to DVD. You can certainly find a service that will make this conversion for you, but these transfers can get expensive if you have several tapes to convert. This article will describe two ways to transfer that VHS tape of your graduation, wedding or birthday party to DVD so that you can have a more permanent digital copy to share with family and friends.

Recording with a DVD Recorder: A DVD recorder is a video device specifically designed for consumers to record to DVD, even if they don't own a computer.

Advantages: DVD recorders will normally record from analog sources like VHS players, older video cameras or even cable TV. They will also record from digital sources like camcorders or DVD players. As mentioned, with a DVD recorder you don't need a computer to make recordings of DVDs.

Disadvantages: What DVD recorders will not do is record copy-protected tapes or DVDs. They are often difficult to integrate into a home audio-video entertainment system due to the lack of inputs and outputs on cable boxes and VCRs. They also have very limited editing capability. And one of the biggest drawbacks of all is price. They are not cheap, with the least expensive models starting at about $200 at the time of this writing. They can also be complex and confusing. If you have trouble with a conventional VCR, then a DVD recorder can be a real challenge to hook up and use.
But if you decide to buy or borrow a DVD recorder, it is not too difficult to transfer a VHS recording to DVD.

Connect the DVD recorder to the video source. Use the higher quality S-video cable if you can; otherwise, use standard RCA dubbing cables for both video and audio. Connect from the VHS player output to the DVD recorder input. Connecting to a digital source is different. Consult your recorder's manual.
Select your recording media. Most DVD recorders burn onto DVD-R, DVD-RW, DVD+R and DVD+RW. The -R and -RW formats are normally more compatible with other DVD players, especially older players, but you should record and test to be sure of compatibility. If you are going to record to a DVD-RW or +RW disk that has previously been recorded, you will have to erase it first. Your equipment manual will tell you exactly how to do that.
Set your DVD recorder up to preview the input signal. Normally you will press record and pause.
Position the VHS tape source to the beginning and check the recorder's input. This is a critical step. If you don't get it right, you will waste a blank DVD or will get an inferior recording.
Begin the recording and start playing the VHS source. Don't cut off the beginning by playing before starting to record.
Watch the recording or plan to stop the process at the end. You don't want to continue recording static at the end of the tape.
If desired, add another tape or passage to the recording. You are not limited to just one tape source per disk. If you have a number of short recordings that would go well together, change tapes, and add these to your DVD recording.
Finalize the process. Unlike a VHS recorder, a DVD recorder requires a couple of extra steps before you are done. The DVD cannot be played on a standard player until it is finalized. First, decide if you want to add chapter stops to the recording. I highly recommend that you do. Follow your recorder's manual. Defining chapters is normally as easy as finding the right spots and pressing a button on your remote to define a chapter. Multiple recordings will show up on the DVD player menu as different titles. You will be able to label these titles for playback. When you have finished managing the content of the DVD, you finalize the DVD, the recorder will create the chapter stops and menu on the disk, and you are done.
Recording with a Capture Card: I highly recommend this method of transferring VHS video to DVD. If you already have a DVD burner and large hard drive, this method is much less expensive.

Advantages: Using a capture card is usually the least expensive way to record a VHS tape. This method also allows much more flexible editing. You can edit the recorded video on your hard drive in many different ways with many utilities that may enhance your final product. Capture cards often include TV tuners, so if you wanted to add TV capabilities to your desktop, this is another advantage. The capture card method may also allow you to record a copy protected VHS source. You should do this only if you own the original recording and plan to use the copy only for archival purposes. Do not use this as a method of pirating videos.

Disadvantages: Quality can suffer during the transfer process. The original analog video will be converted to a digital format, and the signal will be compressed. Both processes can degrade the quality of your video. Use the highest quality setting your capture card allows without filling up your hard drive. Another possible disadvantage of a capture card is the amount of hard drive space you will need. You will need a large hard drive if you want to do much video recording or editing. You obviously also need a DVD burner too, so the total cost of capture card, hard drive and DVD burner may be about the same as a stand-alone DVD recorder. You can get a quite capable card for under $50. You can also pay hundreds. Do a web search for "video capture card reviews" (without the quotes) to get an idea of what will meet your needs.
Let's get started. Follow these steps to transfer your VHS video to DVD.
Configure your capture card. You will normally record to your hard drive in AVI format. Choose a high quality setting, normally 720X480 (standard Digital Video format). Designate a hard drive with a lot of free real estate. You will generate several hundred megabytes, or even over a gigabyte, if your source recording is long. And you will need even more room if editing copies of the resulting file. The other settings will probably be fine at their default, e.g. 29.97 frames per second, etc.
Connect the VHS player to the card. Use the higher quality S-video cable if that is an option; otherwise, use cables with RCA connectors. Use coaxial cable and the card's tuner only as a last resort.
Preview the source and make a practice recording. Play a bit of the tape. Record to hard drive. Then play back the snippet of AVI you just put on disk. Is it the right size? How is the video quality? What about the audio levels?
Make your recording. When you are satisfied that your settings will produce a good quality movie, start recording, then start playing the tape. Keep an eye on the size of the file. Standard AVI files can be a maximum of 2 GB in size. Special formats can overcome this limitation, but then you run into a file system limitation of 4 GB. Your DVD can be any length. Use your burning software to link the 2 GB segments together to make a longer movie on disk. Monitor the recording process. Stop the recording when the source ends.
Edit the AVI as needed. You may want to adjust the volume level or brightness or some other aspect of your recording before burning to DVD. Use a utility like VirtualDubMod.
Burn the AVI to DVD. See the companion article How To Convert AVI to DVD.
Regardless of which method you choose, transferring your VHS movies to DVD will add many years to the life of your videos. You will no longer need to be concerned that the tape will be mangled, and making copies for friends and relatives will be a snap.

Create Arcticle by : ravelstews1983@gmail.com

Sabtu, 28 Juni 2008

Tidak ada komentar :
Technorati Profile

Creating database applications in VB-Part II

Tidak ada komentar :


in article before, you have learned how to create a simple database application using data control. In this lesson, you will work on the same application but use some slightly more advance commands. The data control support some methods that are useful in manipulating the database, for example, to move the pointer to a certain location. The following are some of the commands that you can use to move the pointer around:
data_navigator.RecordSet.MoveFirst ' Move to the first record

data_navigator.RecordSet.MoveLast ' Move to the last record

data_navigator.RecordSet.MoveNext ' Move to the next record

data_navigator.RecordSet.Previous ' Move to the first record

You can also add, save and delete records using the following commands:

data_navigator.RecordSet.AddNew ' Adds a new record

data_navigator.RecordSet.Update ' Updates and saves the new record

data_navigator.RecordSet.Delete ' Deletes a current record

*note: data_navigator is the name of data control

In the following example, you shall insert four commands and label them as First Record, Next Record, Previous Record and Last Record . They will be used to navigator around the database without using the data control. You still need to retain the same data control (from example in lesson 19) but set the property Visible to no so that users will not see the data control but use the button to browse through the database instead. Now, double-click on the command button and key in the codes according to the labels.

Private Sub Command2_Click()
dtaBooks.Recordset.MoveFirst
End Sub


Private Sub Command1_Click()
dtaBooks.Recordset.MoveNext
End Sub


Private Sub Command3_Click()
dtaBooks.Recordset.MovePrevious
End Sub

Private Sub Command4_Click()
dtaBooks.Recordset.MoveLast
End Sub

Run the application and you shall obtain the interface below and you will be able to browse the database using the four command buttons.

Creating database applications in VB-Part I

Tidak ada komentar :
Visual basic allows us to manage databases created with different database programs such as MS Access, Dbase, Paradox and etc. In this lesson, we are not dealing with how to create database files but we will see how we can access database files in the VB environment.
In the following example, we will create a simple database application which enable one to browse customers' names. To create this application, insert the data control into the new form. Place the data control somewhere at the bottom of the form. Name the data control as data_navigator. To be able to use the data control, we need to connect it to any database. We can create a database file using any database application but I suggest we use the database files that come with VB6. Let select NWIND.MDB as our database file. To connect the data control to this database, double-click the DatabaseName property in the properties window and select the above file, i.e NWIND.MDB. Next, double-click on the RecordSource property to select the customers table from the database. You can also change the caption of the data control to anything but I use "Click to browse Customers" here. After that, we will place a label and change its caption to Customer Name. Last but not least, insert another label and name it as cus_name and leave the label empty as customers' names will appear here when we click the arrows on the data control. We need to bind this label to the data control for the application to work. To do this, open the label's DataSource and select data_navigator that will appear automatically. One more thing that we need to do is to bind the label to the correct field so that data in this field will appear on this label. To do this, open the DataField property and select ContactName. Now, press F5 and run the program. You should be able to browse all the customers' names by clicking the arrows on the data control.

Kamis, 26 Juni 2008

The Need For an Outdoor Wireless Router

Tidak ada komentar :

Whenever you think of computers, you think of them being inside. However, in today's world we need things that can come with us. That is why you see people all the time in the park with their laptops and things like that. Even on the job site, you see people with computers outside. This is where an outdoor wireless router could come in handy. This is a router that you can have outside, and it is safe to use. This is a great way to keep everything connected to the internet no matter where you are, and you can still be secure. After all, you do not want people to connect to your server and have access to your computer.

The data that gets passed through these outdoor wireless routers are just as good as the inside ones. However, there are a few things that you should know about an outdoor wireless router. First of all, you have to know that having an outdoor wireless router does not mean that you should leave it outside. This means that it can stand up to changes in temperature a lot better than the inside ones. Also, they are usually waterproof. However, this just means that it can get wet and that is fine. So like if it starts to rain, your router is not going to be broken. However, you should not leave it in water for a long time span, because water can get into the system, and it will break it. Having a wireless router outdoors is nice, but you may still need a NIC card for your computer.

Most of the time an outdoor wireless router has a longer range than an indoor one. That is so you can go further away from the router and still use it. However, a lot of times as you go further away, it gets hard for your computer to stay connected to it. That is where a network interface card comes into play, or a NIC. This can help keep you connected to the system, even when you are far away. These routers are secure and safe for you to use.

You do not have to worry about passing data from it to your computer, because it is going to be safe so no one else can look at it. If you have a dying need to be outside and use you computer, then this outdoor wireless router could be just what you are looking for. It would be ale to answer all your needs and work better than your indoor router. In fact, a lot of people buy the outdoor routers for their home just because they work better. However, they do cost more money most of the time.

Kingston Data Traveler 400

Tidak ada komentar :

Safeguarded – includes SecureTraveler2 security software for Windows Enhanced for Windows ReadyBoost on Vista based systems5.
Multifunctional – preloaded with MigoSync data synchronization software Flexible – MigoSync Operating Language support in English, French, Italian, German, Spanish, Japanese, Korean, Simplified Chinese, Traditional Chinese, Russian, Thai, Portuguese and Dutch


Specifications:Capacities3 – 2GB, 4GB, 8GB
Dimensions – 2.57” x 0.71” x 0.41” (65.4mm x 18.0mm x 10.4mm)
Fast – data transfer rates of up to 20MB/sec. read and 10MB/sec. write4
Operating Temperature – 32° to 140° F (0° to 60° C)
Storage Temperature – -4° to 185° F (-20° to 85° C)
Simple – just plug into a USB port
Guaranteed – five-year warranty
Compatibility Table:

Operating System File Transfer Password Protection MigoSync
Windows Vista5 Yes Yes Yes
Windows 2000 (SP4) Yes Yes Yes
Windows XP (SP1 and SP2) Yes Yes Yes
Mac OS (10.2x and above) Yes No No

Kingston Datatraveler 400 flash drive memiliki kecepatan dan fitur software untuk backup dan encrypt tersendiri. Kecepatan tranfer Kingston Datatraveler 400 cukup bagus, berbeda dibanding generasi sebelumnya. Pada data box Kingston Datatraveler 400, flash drive ini menawarkan kecepatan 20MB read dan 10MB write. Selain kecepatan tranfer, Kingston Datatraveler 400 menambahkan 2 software seperti pengaman data dari bundle software dan sistem software untuk backupKeantikan flash drive Kingston Datatraveler 400, tidak lagi mengunakan penutup dibagian USB. Melainkan mengunakan plat besi yang dapat diputar, mungkin menjadi kata awal untuk “tidak pernah lagi kehilangan penutup Flash drive”

Source from : obengware

Data Recovery - How to Recover a Crashed Hard Drive

Tidak ada komentar :

In the course of our hectic lives, hard disk drive problems are sure to happen every now and then. You can never anticipate such an event and you shouldn't blame yourself over it. If your disk drive appeared to be on the not-so-well side or even if it acted as if nothing is wrong, hard disk drives breaking down are a certainty and coping with such a possibility is essential.

Many people have believed, even those who've undergone severe data loss due to disk failure, that their disk drive is safe for the next decade or two. Convinced in the durability of hard disk drives, physical failure is an event many people don't predict or comprehend. The reality is that hard disks nowadays have been designed to run at full speed but at a cost: they overheat and are prone to physical damage. No means of prevention can stop it.

There's a method to keep your wallet from going thin from hard disk drive data recovery services: keep a copy of your data.

So is it the end if you haven't created extra back up for your disk drive? Of course not, specialized recovery services can retrieve your drive' content. A point of notice is that hard disk drive data recovery is ideal for cases where physical drive crashes occur. Given that modern hard disk technology is a handful, it is advisable not to attempt to do hard disk drive data recovery on your own. Data experts should be the ones to perform such a task.

Most experts have started setting up their hard disk drive data recovery as their number one income source. They help people recover their lost data for a living. The pressure of such sensitive information made most firms hire only highly qualified experts that will get you hard disk contents back in no time.

Before contracting any recovery shop, you should opt to look for the cause of the drive's failure.

Here's a list that you can go over before seeking a hard disk drive data recovery service.

- You can't find some files you've saved?

- Is your PC not loading quickly?

- Has your computer made any unusual noise while loading?

- Did you get the infamous "blue screen of death"? Did you get an error when first booting your computer?

Now that you've answered the questions, you are definitely ready to look into a service. With today's technological advancements and plethora of data recovery service companies, choosing the right service can prove to be troublesome. Reviews from your friends or family can prove to be helpful. Many might be astonished by how well-versed hard disk drive data recovery experts can be.

Ciri Orang Melayu (Manusia Indonesia)

Tidak ada komentar :

Inilah ciri – ciri kita sebagai manusia Indonesia (orang Melayu), dan inilah sekarang ini yang sedang dikikis habis oleh manajamen sebuah Kampus yaitu AMIK-D3 Medicom Medan, agar manusia Indonesia semakin baik dan semakin paham tentang siapa sebetulnya orang melayu itu dan bagaimana sebetulnya siftar orang melayu itu khususnya Indonesia yang semakin hari semakin hancur, akibat kebebasan yang tiada batas. lebih baik kita kembali kemasa orde baru tetapi semuanya tidak ada kita dengar pertikaian, perkelahian dan yang paling menyedihkan lagi orang - orang yang merupakan menjadi panutan masyarakat malah menjadi tidak cocok lagi untuk di contoh ibaratkan seorang anak, kalau melihat Ayah dan Ibu mereka selalu berantam di rumah, yang akan terjadikan kerusakan mental sianak juga yang suatu saat dia akan membuat hal yang serupa sepeti yang dibuat oleh orang tua mereka, sayang disayangkan.


Berikut ini penjabaran tentang manusia indonesia sekarang ini yang dikutip dari Mochtra Lubis dan Mahatir Mohammad :

Ciri Kesatu : “Munafik atau Hipokrit”; Ciri utama manusia Indonesia yang cukup menonjol adalah Hipokritis atau Munafik. Suka berpura-pura, lain dimuka, lain dibelakang. Hal ini bisa saja disebabkan oleh paksaan kekuatan-kekuatan luar untuk menyembunyikan apa yang sebenarnya dirasakan, dipikirkan dan dikehendakinya karena takut akan mendapat ganjaran atau hukuman bagi dirinya. Tetapi sebagai manusia Indonesia yang terpelajar harus mengikis sifat buruk ini. Sehingga kita tidak menjadi manusia yang munafik. Lain yang diomongkan lain yang dikerjakan.

Ciri Kedua : “Enggan dan Segan bertanggung jawab”; Di indonesia kita hanya sering memikirkan enaknya saja, tetapi kalau sudah dibebankan sebuah tanggung jawab pasti selalu ada alasan untuk selalu menghindar. kenapa? semua ya itu berbalik kepada diri kita sendiri

Ciri Ketiga : “Bersikap Perilaku Feodal”; Ciri ketiga utama manusia Indonesia adalah jiwa feodalnya. Meskipun salah satu tujuan revolusi kemerdakaan Indonesia ialah juga untuk membebaskan manusia Indonesia dari feodalisme, tetapi feo – dalisme dalam bentuk –bentuk baru main berkembang dalam diri dan masyrakat manusia Indonesia. Sikap – sikap feodalisme ini dapat kita lihat dalam tatcara upacara resmi kenegeraan, dalam hubungan – hubungan organisasi kepegawai (umpamanya, jelas dicerminkan dalam bersenjata), dalam pencalonan istri pembesar negeri dalam daftar pemilihan umum. Istri komandan, istri menteri otomatis jadi ketua, bukan berdasarkan kecakapan dan bakat leadershipnya, atau pengetahuan dan pengalamanya, atau perhatiannya dan pengabdiannya. .

Ciri ke Empat : “Percaya Takhyul”; Ini adalah sebuah ciri yang sudah mengakar dalam kehidupan bangsa. Dulu, dan sekarang hal ini masih terjadi. Masih banyak manusia Indonesia percaya kepada batu, gunung, pohon yang besar, atau benda – benda seperti pedang, keris dan lain – lain yang dikatakan mempunyai kekuatan gaib dan keramat sehingga manusia wajib mengatur hubungan khusus dengan ini semua. Untuk menyenangkan mereka agar jangan memusuhi manusia, sehingga mereka dipuja, diberikan sesajen dan lain – lain. Padahal hal – hal sperti itu seharusnya tidak boleh terjadi lagi.

Ciri Ke Lima : “Arstistik”; Ciri manusia Indonesia yang ke-5 adalah artistik yang memiliki bakat seni yang tinggi dekat dengan alam. Bakat seni yang dimiliki bangsa indonesia dituangkan dalam segala rupa ciptaan artistik dan kerajinan yang indah – indah dan serba aneka ragam variasi serta warna warni. Di Medicom, kami juga melatih beauty/ penampilan yang baik, modis dan menarik kepada mahasiswa/i kita. Disatu sisi salah satu kelebihan kita sebagai bahasa indonesia. Kita terkenal santun dalam berbahasa, lemah – lembut. Banyak pantun, pusi dan lagu – lagu indah yang menyentuh sukma.

Tetapi disisi lain ini jugalah merupakan kelemahan manusia Indonesia karena : dia hidup lebih banyak dengan naluri, dengan perasaan, dengan perasaaan – perasaan sensual. Sehingga lebih kuat naluri/ perasaan dalam tindakannya daripada rasio/ logika/ pola pikir yang rasional

Ciri Ke Enam : “Lemah Watak”; Karakter kurang kuat. Manusia Indonesia kurang kuta mempertahankan atau memperjuangkan keyakinannya. Untuk menghilangkan sifat lemah watak ini tentunya harus dipedomani kunci sukses yang selalu berkata “Saya bisa”. Tentunya ini didapat melalui pengetahuan yang baik sehingga menimbulkan rasa percaya diri yang baik pula. Selallu menjadikan sebauh persoalan sebagai tantangan bukan sebagia beban dan selalu mempunyai sikap memberikan yang terbaik bagi lingkungan atau komunitas dimanapun berada.

Ciri Orang Melayu “Cepat Puas”





Menurut mahatir Mohammad, salah satu ciri – ciri manusia melayu adalah cepat puas. Di indonesia kita masih sering melakukan suatu pekerjaan tetapi belum maksimal tetapi kita sudah merasa cepat puas dan langsung di hura - hurakan. Itu artinya kita tidak boleh cepat puas dengan apa yang sudah kita miliki. Prinsip kita adalah kita harus belajar terus – menerus, tidak ada batasan waktu, usia untuk belajar bahkan diagamapun kita tahu bahwa kita harus menuntut ilmu dari ayunan sampaiu ke liang lahat. Begitu juga dalam agama kristen juga disebutkan dengan segala daya upanya carilah pengertian. misalnya Jadi sebagai pembimbing kita harus selalu membenahi kompetensi kita dengan cara belajar terus – menerus karena pepatah mengatakan lancar kaji karena diulang, ada bisa belajar biasa. Sebagai dosen pembimbing kita tidak boleh hanya bergantung pada penguasaan catatan mahasiswa saja, kita harus memiliki dan membaca dari berbagai refrensi apalagi ilmu pengetahuan terus berkembang. Sebagai contoh, dulu kita sangat bangga menguasai windows, lotus atau ws, tetapi ini program tersebut tidak digunakan lagi sama sekali. Dulu kita snagat bangga mapu mengetik dengan menggunakan mesin ketik, tetapi saat ini mesin ketik hampir tidak digunakan lagi. Jadi intinya kita harus terus bekerja, belajar dan jangan cepat puas . terima kasih.

Ciri Orang Melayu “Tidak Tahu Berterima kasih”; Salah satu ciri orang melayu menurut mahathir mohammad adalah kurang mempunyai rasa berterima kasih. Dari awal datang ke Medicom kalian terus dilatih dan diajari, diberi tempat untuk berlatih bahkan selama proses berlatih diberi beasiswa. Tetapi masih banyak yang mengganggap bahwa itu merupakan honor apabila itu berarti kurang mempunyai rasa berterima kasih, seharusnya apabila kita yang diajari kita yang membayar tapi dalam hal ini kata yang dalam hal ini kata yang diajari kita yang dibayari sudah sepantasnya kita berterima kasih, kita hanya tetap memiliki ciri keterpelajaran, karena salah satu ciri keterpelajaran adalah rendah hati dan tahu berterima kasih.

Ciri Orang Melayu “Pemalas” ; Sejak dibangku sekolah dasar kita sudah hapal arti pepatah yang mengatakan rajin pangkal panda, malas pangkal bodoh. Apapun yang kita inginkan untuk dikuasai hanya bisa terpenuhi dengan cara rajin mengulang – ulang sampai mahir. Rajin mengulang pelajaran dirumah pasti pre test dan post test lulus. Rajin praktek komputer pasti mahir komputer, rajin praktek bahasa inggris pasti bisa ngomong bahasa inggris, rajin tulis ulang ulang sistem nilai pasiti mudah menghapalnya, selanjutnya kerjakanlah. Jadi bagi kita tidak ada alasan untuk malasa bahkan dalam agama pun diajarkan sipemalas adalah kawan siperusak. Nenek moyang kita rajin, bisa kita lihat dari berbagai peninggalan meraka dimasa lalu, misalnya berbagai ragam budaya dan kesenian yang indah adalah bukti mereka rajin. Kata orang melayu itu malas, tapi di Medicom melayunya beda karena melayu di Medicom tahu ciri – ciri keterpelajaran dan mengarahkan diri untuk memiliki ada keterpelajaran tersebut.

Ciri Orang terdidik “Not Conflict but Consensus”; Jika ada hal – hal yang kurang jelas baik cara membimbing dilokal, menjawab pre test maupun post test, jadual mengajara, jadwal diskusi dan sebagainya, kita harus mendiskusikan terlebih dahulu kepada supervisor bidang stuid, managemen ataupun yayasan sehingga tidak sampai menyalahkan artinya nantinya.

Ciri Orang terdidik “Hormat Aturan”; Dalam setiap tempat lingkungan kita pada ada aturan, termasuk kami di Medicom ini ada aturan bagaimana membimbing yang baik, kalau mau ujina kompetensi I maka aturannya harus bisa menguasai 5 topik mata kuliah yang dibawakan, harus menghafal kunci sukses, ciri – ciri orang melayu menurut muktar lubis, mahathir mohammad harus, lineur. Kalau mau ujian kompetensi II maka aturannya harus mengusai 7 topik mata kuliah yang di bawakan, angket harus aman, bisa menghafal aturannya 75% mata kuliahnnya harus dikuasai, angket aman, menghafal sistem nilai, kesemua aturan tersebut agar kita bisa menjadi pembimbing yang terampil

Setelah kita siap membaca artikel diatas mungkin mulai dari sekarang kita sudah bisa berpikir siapa diri kita sebenarnya.

diposting oleh : Robby Sugara Silaen; sugara.wordpress.com