Showing posts with label music. Show all posts
Showing posts with label music. Show all posts

Friday, February 26, 2010

Legitimate Free Chinese Music Downloads!

So a few years ago while in Hong Kong I discovered a website called http://www.top100.cn/ this place is amazing!!

With this site you can download unlimited amounts of Chinese and other popular music for free... legally! No way right? Yes way son! However there is a catch, the site only allows ip-address from china to actually download and listen to the music. What if you are not in china but want to use this wonderful resource? Just use a proxy that is based in china!
It may be troublesome to find a good proxy that is in china since a lot of the Chinese actually want proxies outside of china to bypass government censorship...but don't lose hope there are still proxies in china that we can use :)

What you have to do:
(I recommend doing all this with firefox because it is easy to turn the proxy on and off)
Get latest version of firefox here: download
  1. Find a China based http proxy - http://www.xroxy.com/proxy-country-CN.htm
  2. Configure your browser (see below).
  3. Navigate to http://www.top100.cn/
  4. Download away!
Configuring your browser to use the http proxy (assuming firefox):
  1. Tools>Options>Advanced>Network tab
  2. Under connection choose "Settings"
  3. Choose "Manual Proxy Configuration"
  4. In the http box paste/type in the proxy ip you want to use
  5. In the port box enter the proxy's port.
  6. Press "OK"
  7. Done :)
Now when you choose to download some music at top100.cn the site will think that your accessing the site in the country of china.

Have fun!

Wednesday, January 27, 2010

VLC: Setting up a default directory.

So i was experimenting with the vlc remote app in the android market today and found it to be quite entertaining. Mind you i have never messed with a vlc remote before on any platform, so this was a new experience for me :]

Youtube video I created for this tutorial: http://www.youtube.com/watch?v=Kim5QM0nKfQ

I found it nice to control my whole media library during a party while lounging on my deck enjoying company from other party guests (yep...). However with this vlc remote it's quite tedious to always browse your computer on the phone in search of a particular file.

Solution 1 - Playlist method:
Put together a playlist of all your media and have it vlc load it by default at start up.

Disadvantages to solution 1:
1. Its a static list of your media which means you have to recreate the playlist every time you get some new stuff.
2. If you have 50,000+ song...making a playlist is not really efficent..not efficent at all. It also seems that vlc is buggy with playlist making and large number of files.

Solution 2 - Loading entire directorys semi-dynamicly:
This is semi-dynamic because it only updates. When vlc starts. To do this we actually need to make a custom playlist file that points to your desired directory and have it load when vlc starts.

The custom playlist file:
Fortunatly vlc uses the xspf format for it's playlist standard which is pretty straight forward. Here is what our custom playlist is basically going to look like
<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/">
    <title>Playlist</title>
    <trackList>
        <track>
            <location>K:\</location>
        </track>
    </trackList>
</playlist>
So create a new text file and paste that into it. Replace "K:\" with whatever directory you want it to point to (can also be a folder) and save it as "playlistname.xspf"

Now once out playlist file is made we can now open up VLC - I'm using v1.0.3 (download latest) and configure VLC to automatically load this playlist when it starts.

Auto-load playlist:
1. Tools>Preferences (or simply CTRL-P)
2. Choose to show all settings (bottom left)
3. Playlist>"Default stream" textbox
4. Type the full location of the playlist file here. (i.e. C:\Program Files (x86)\VideoLAN\VLC\playlistname.xspf )
5. Save
6. Exit and reopen VLC and your directory should be queued in the VLC's playlist.

Ideas for using this:
1. Auto-load preinserted CD/DVD's
2. Semi-dynamic listing of contents of a folder, partition, memory card.

My VLC set up:
Auto-start VLC+http interface with windows>Auto-scan the DVD drive and queue found music>Auto-scan my media HDD and queue found media>control it via VLC remote on my phone>uploads recently played track's data to my last.fm account (so people at the party can check out my last.fm if they want to know what songs played). So my media library is ready to go basically right after logging into windows.

Perfect party solution!  :]