RSS
 

Posts Tagged ‘Videos’

Doing heavy Photoshop work or videos will not impress your laptop battery or a lot

07 Jan

“Most of the pilots who do not want to stop at a service station,” said Rivera, who is about 80 stops a day on a typical route 20 miles. “I’m waiting for,” he said, will be available for a hybrid.

The new additions are CQ61z Compaq Presario notebook PC, which starts from $ 399 to $ 309 Compaq Presario desktop PC 4010f, which includes an AMD Sempron processor, integrated NVIDIA GeForce graphics cards and 250-gigabyte hard drive and 500B Compaq desktop PC that comes with operating system Windows 7 and starts at $ 359.

Check with the first car test, woke Bolio two or three times a night to pass the shop on his street. Since then, means a light for the machine is plugged in and added charges, a thin “shop now” beep and a timer.

In this view, doing heavy Photoshop work or videos will not impress your laptop battery or a lot. While not the kind of game that the murderer might be, still carries the processor pretty hard, what to draw more power as a result. Finally, the reproduction of DVD or Blu-ray Apple a1175 battery life is also a good way of killing even a laptop, at least, tend to be semi-optimized for this. These tasks more power, by virtue of having to turn the optical drive, and if Blu-ray can be very aggressive tax the CPU and video cards.

Starting with the visual side of things, if the white models we reviewed before was good, the great-titled ‘Empire Black One “seem even better. It is still brilliant, so fingerprints will be a problem, but a glossy finish on a Netbook seems almost inevitable in recent days.

The company added that the new laptops offer a choice of four cells (4 hours) or six cells (8 hours) cells and Technology Cargo Express allows four to six batteries that 80% recharge in 60 minutes.

Semtech, a supplier of semiconductor analog and mixed signal, has introduced the SC824, a linear, triple-mode, a single lithium ion battery in a a1175 battery of ten MLPD lead 2×2mm package for handheld devices.

The U130 and U135 Netbook will also reflect the MSI exclusive ECO Engine Technology to the table, enhancing skills of the Atom N450 and significantly increase the duration of these netbooks can be used. With the ECO engine technology, users can choose between 5 different modes of supply of energy – Gaming, Movie, presentations, documents, and Turbo Laptop Battery. Each method provides a more effective balance the longevity of the battery and performance for each scenario.

 

How to Add Mp4 Videos Onto Your Flv (flash) Video Site for Free

04 Jan

I will start by stating what is required for this to work for you.  Any website containing videos in a flash format (typically ending in .flv) that can be accessed via FTP (file transfer protocol) hosted on a machine with PHP scripting capability.  This covers the majority of the linux/unix webhosting out there that let you install or add on a pre-made video script such as PHP-motion. The second prerequisite a desktop computer running windows XP or Vista that has a cable / DSL internet connection.

If you are using windows hosting I don’t know if this will work.  If it is windows hosting that also has PHP it might work but that has never been tested.

The primary focus of this article will deal with how I did this on my site http://www.funnyvideoguy.com and hopefully it will get you started if you wish to do the same.

A basic overview of how it will work is this:

1) The original videos in FLV format reside on the server in whatever directory the video script uploads them into when they are added to your site. DCU (Download, Upload, Convert) software connects to the server via FTP and compares the files on the server to determine which of the original videos in FLV format have a file of the same name in MP4 format. For example if the video filename is 1.flv it checks to see if 1.mp4 exists.

2) If 1.mp4 does not exist download a copy of the original 1.flv file and convert it into 1.mp4

3) Upload the newly converted 1.mp4 back up to the server.

 

To make this happen the first thing to do is get DCU (Download, Convert, Upload) software for free from FVG software by right-clicking then choosing ‘Save Link As’ on the following link

http://www.fvgsoftware.com/DCU/DCU.msi

Once, the file has finished downloading double click it or right-click then choose install to install it.

When installation has completed start DCU from the start menu or the icon on your desktop. Enter your ftp server info into the boxes at the top and click the TEST button to check if the connection is working.

If you have any problems with this login to your webhosting account/control panel and look for an FTP option there. Info for connecting via FTP client should be there somewhere.  This info will include server name, something like ftp.your-host-name.com, port number 21 and username and password.

Once that the FTP connection is working select both radio buttons labeled ‘Remote Directory via FTP’ under ‘Get files to convert from:’ and ‘Put converted files into:’ The textbox below the radio buttons should both contain a forword slash ‘/’ indicating the root directory of your ftp account.  Then, find the directory the original video files are located in, for my installation of PHPmotion script the location of the original video files is in /public_html/uploads. To move up and down in the directories on the server double-click on the directory names shown in the listbox.  The names in bold are directory names and the non-bold are the files in the current directory. Use the double dots ‘..’ to move back up a directory.  Once you find the directory the original files are located in and you have choosen the output directory I recommend using the same directory in which the original files are stored.

The listbox in the lower-left shows the files that need to be downloaded, converted, and uploaded. And, the listbox on the lower-right is a log of converted files.

All that is left is to click the ‘Convert Files’ button to get the converting of files underway.

Ok, one more thing is needed for this to work out well. In the template folder edit the play.php file but by adding this code to the code.

$download_url = “Sorry, No MP4 is available for this video.” ;

$newname = ‘uploads/’ . $result["video_id"] . ‘.mp4′ ;

if (file_exists($newname)) { $download_url = “Right-click to download this in MP4 format” ;

and put it in just before this bit of code.

//get members personal information

$sql = “SELECT * FROM member_profile WHERE user_id = $member_id”;

$query = @mysql_query($sql);

@$result = @mysql_fetch_array($query);

$member_username = $result["user_name"];