Wednesday, 23 February 2011
Friday, 25 June 2010
How to Manage WBFS Partitions in Ubuntu Linux
A previous post of mine, How To Play Nintendo Wii Games from a USB HD, deals only with the Windows OS. Suppose you'd like to load Wii games from a USB HD, but you're using, say, Ubuntu Linux? Well then you would need an alternative WBFS partition manager.
Enter Wiithon.
Wiithon is python-based GUI linux application for managing WBFS partitions. It's clean, simple to use, and even supports remote updates of game info, pictures, etc. If your external HD doesn't already have a WBFS partition, Wiithon can create one. The application can even copy wii games from one partition to another...
The current stable version is 1.1 and I believe development might be at a standstill (the latest repo is Karmic), but it works great on Lucid. To install, simply run the following commands from Terminal:
This will add the Wiithon repository to your /etc/apt/source.list, and download and install the program. Once installed, you can launch from the Applications > Games > Wiithon menu, but you must be in sudo mode to do so!
If you'd like to give the current user permission to launch (recommended), simply run
You can now launch Wiithon from the Applications menu using your current user profile!
Posted by andrew at 12:36 24 comments
Labels: applications, hardware, how-tos, linux, nintendo wii, ubuntu
Tuesday, 22 June 2010
How to Convert MTS to AVI in Linux
I played in an Ultimate tournament yesterday and thought it would be great to take some team video and create a highlights/bloopers reel. However, this requires some editing on the computer and I was filming with my Sony HDR-SR10, which records in full HD 1080 AVCHD. This results in an bunch of .MTS files on your computer, and though some media players will play these files, they video quality is chopping and full of weird horizontal lines.
Clearly these video files must be converted to a more workable format....
I've tried many different scripts and packages, including m2tstoavi and handbrake without success. After some fiddling, it seems that the best option is a customised ffmpeg. Here's how it worked for me:
1. Download the Necessary Packages
2. Grab Most Recent FFMPEG
3. Compile the Source Code
./configure --enable-gpl --enable-libmp3lame --enable-libxvid --enable-libfaac --enable-nonfree
make
sudo make install
This will probably take a little while...
4. Configure FFMPEG to Your Camera
Run ffmpeg and pass it one of your .MTS video files to the program. This will allow you to see some basic info about the video/audio formats your camera uses. Then, tailor ffmpeg to your camera (assuming you only have one of these super-hd video cameras). I'm using a sample video called 00451.MTS.
The important output will be near the bottom:
Duration: 00:00:24.54, start: 1.000033, bitrate: 5510 kb/s
Program 1
Stream #0.0[0x1011]: Video: h264, yuv420p, 1440x1080 [PAR 4:3 DAR 16:9], 59.96 fps, 59.94 tbr, 90k tbn, 59.94 tbc
Stream #0.1[0x1100]: Audio: ac3, 48000 Hz, 5.1, s16, 448 kb/s
Stream #0.2[0x1200]: Subtitle: pgssub
There are 3 streams: video, audio, and subtitle. I'm not sure what subtitle is, but let's ignore it for now. Video is in 1440x1080 resolution, pixel aspect ratio is 4:3, display aspect ratio is 16:9, and 59.96 frames per second, at 5510 kb/s. Audio is in ac3 at 448 kb/s.
5. Use FFMPEG
Now ffmpeg can be used to convert video. If you only have one or two files to convert, simply navigate to the proper directory, and enter the following comand in your terminal:
But if you have many files you may want to use a batch conversion script. Create a gedit file in your favourite scripts directory... /usr/share/myscripts will do fine. Save the following text file to the directory:
for a in `ls *.MTS` ; do ffmpeg -i $a -vcodec libxvid -b 18000k -acodec libmp3lame -ac 2 -ab 320k -deinterlace -s 1440x1080 `echo "$a" | cut -d'.' -f1`.avi ; done
exit
Call it ConvertMTS or something. When run, this script will convert any .MTS files in the current directory to .AVI and save the new files in the same directory. To use the script, navigate to your MTS folder in terminal:
.... Sit back and wait :-)
Posted by andrew at 07:40 146 comments
Labels: applications, how-tos, linux, tips and tricks, ubuntu, video
Thursday, 17 June 2010
How to Play DVDs in Ubuntu Linux
Ubuntu linux comes ready to do many things out of the box, but DVD playback isn't one of them. However, it's quite easy to enable this feature by following the steps below.
To play DVDs in a movie player like VLC or Totem Movie Player (Ubuntu default) you require a package called libdvdcss2. You can't get this package directly from the repositories, probably for legal reasons, but it can be downloaded via the libdvdread4 package.
Now run the libdvdcss2 install script:
This is all you need to play DVDs....Just open via Totem, VLC, or your favourite movie player. I had to restart the system before it would take effect.
Posted by andrew at 11:24 3 comments
Labels: how-tos, linux, tips and tricks, ubuntu, video
Search All Posts
About Me
|
|
Hi, I'm Andrew. Short version: I started this blog to document things I thought were obvious, but that I kept forgetting how to do. Over time it has evolved to cover many different technical, atheltic, and other categories. Long Version: Click Here |


.png)