Why we should only use free and open sourced software:
http://yro.slashdot.org/story/09/09/30/159232/Company-Uses-DMCA-To-Take-Down-Second-Hand-Software
You not own what you’ve bought….
Posted by primalcortex on September 30, 2009
Why we should only use free and open sourced software:
http://yro.slashdot.org/story/09/09/30/159232/Company-Uses-DMCA-To-Take-Down-Second-Hand-Software
You not own what you’ve bought….
Posted in All about all, Geral | Leave a Comment »
Posted by primalcortex on September 24, 2009
I’ve just bought one of these ASUS monitor: the VH242H… It’s an huge amazing quality monitor, with all the needed requirements that I was seeking: HDMI for connecting my Canon Legria HF200 and integrated columns to clear desk space, and of course big screen…
I’m using Kubuntu 9.04, and it recognized the monitor and the resolution of 1920×1080 without any problem with the drivers 9.7 from ATI (64 bits). Sound is more than OK for my use, much better than I was thinking based on the net reviews…
At first, the image quality was not very convicing, but I’ve found out that the monitor comes with over sharpness. On the Sharpness menu it was set around 52 and so letters had this bright shadow on them. I’ve pull it down to 27, and it solved all the image quality problems. So no problems at all.
Recommended!
Posted in Geral | Tagged: asus, monitor | Leave a Comment »
Posted by primalcortex on September 21, 2009
Being an 100% Linux user, the software shipped with Canon HF200 is not useful for me because it’s Windows only. Anyway, I’ve tried Pixela Software, the shipped software on a virtual machine, and I wasn’t convinced…
So far on Linux there is a complete lack of tools for management the video files that are produced by this camera, namely the MTS file format, despite being able to play them with no problems, only with small quirks… Right now I’m using VLC, and the x.264 codec downloaded from the sources, not the one shipped with Kubuntu and the quality the video is more or less OK. The latest ATI drivers for my ATI 4870 also improved a lot the visualization of the video. Playing the MTS files on the WD TV works 100%, and the quality is superb.
So I can play the files in my computer, BUT for KDE 4.3 Dolphin, it has no support for thumbnails for MTS (M2TS) files… so I need to open each file to see wich are it’s contents… a painfull task.
It took me a while to solve more or less this issue. It’s not perfect, but it helps:
Using the latest ffmpeg, donwloaded from the sources, I can create JPG thumbnails related to the each MTS file. The idea came from here: http://johannesluderschmidt.de/?p=525
I’ve changed the script so that I can create AVCHD thumbnails:
#!/bin/bash
for FILENAME in *.MTS
do
if test -f “$FILENAME”; then
echo “Create thumbnail of $FILENAME”
ffmpeg -i “$FILENAME” -ss 00:00:01.00 -vcodec mjpeg -vframes 1 -an -f rawvideo -s 180×120 “$FILENAME”.jpg
#cp $FILENAME ~/test1/
else
echo “File $FILENAME not existing.”
fi
done
Save this file with a name like avchdthumb.sh, somewhere on your path, and make it executable with chmod +x avchdthumb.sh
Now you can go to your folder (folders) whre you have stored your MTS files, and just run the command like this for example: /home/primalcortex/tools/avchdthumb.sh
It will take a while, depending of the number of files and the your computer horsepower… I have an I7, so can’t complain…
At the end the result will be for each MTS file a new MTS.jpg file with the initial frame as the thumbnail.
Now I have an idea what’s in the MTS videos.
If thumbnails in video format are needed, like the first 10s, then this URLhttp://code.google.com/p/hdffxvrt/ will do the job. Just change the line for the resolutionof the HF200 to 1920×1080, and execute the script with: hdffxvrt thumb 0001.MTS. This will create a 10s clip in MOV format named 0001.MTS.mov.
This is a good as it gets. Now I’ll I need is Picasa in Linux to support AVCHD
Regarding the camera itself, when connecting through USB to the Kubuntu, there is no problems in detecting and accessing it through Dolphin, but it’s faster to use a SDHC card reader to copy the files. The camera can create thumbnails for the videos when connecting by USB, but in my case it failed to create ALL thumbnails… weird…
Posted in 1 | Tagged: avchd, canon, hf200, kubuntu, Linux | Leave a Comment »
Posted by primalcortex on September 11, 2009
NTFS-3G can consume 100%CPU when a virtual machine is running on an NTFS partition and/or external disk (my case).
With this issue, using Vmware and using a VM machine can be a slow experience when doing high IO operations inside the VM machine. For example trying to uncompress a large zip file on the VM machine, just makes the host 100% CPU on the NTFS-3g process.
To solve this issue, just shutdown the VM machine and add the following line to the vmx file with your favorite text editor:
mainMem.useNamedFile = “FALSE”
Problem solved.
Posted in Linux | Tagged: kubuntu, vmware | Leave a Comment »