Jump to content

Zimmer

Dedicated Members
  • Posts

    670
  • Joined

  • Last visited

Posts posted by Zimmer

  1. GUI HERE FOR REAL!!!!!!!!!!!!!

    Sorry about such a long time between releases.

    For non windows users change the mplayer path in the settings tab.

    Also you can change the default save location (defaults to Music directory in the apps directory)

    http://download838.mediafire.com/l5m1wleem...distrobution.7z

    Well it took me a LOT longer then I was hoping/thinking to make the gui but it is here...

    You need wxPython for the gui app

    - wxPython.org/download.php

    Ideas for next releases:

    Pandora support

    Anything you guys can suggest (I am willing to add pretty much anything (that is not a promise though :-)))

    Tips:

    If you want faster releases, annoy and pester me :).

  2. No the world is not going to end in 2012.

    Oh and what do you guys think of Nostradamus?

    I think he just made so many guesses that where not specific that probability would be with him (also I think humans tend to find patterns in places where they are not (reminds me of an episode of Numb3rs (CBS Fri 10PM Eastern))).

    Also for presidents or anyone in power my motto is... always have a healthy distrust and realize what power and money can lead people to do (I am thinking of lobbyists and the MPAA and RIAA)

  3. it works!!!

    Ok my solution

    write to a file 1024 bytes of the file

    then open it in mplayer

    example (some mp3 I found (the audio I don't necessarily agree about (it is religion)))

    I googled some mp3

    http://www.ccel.org/ccel/anonymous/catacombs/mp3/

    #Play
                    file_ = open('C:/Kibble.mp3', 'wb')
                    f = urllib2.urlopen('SOME URL')
                    while 1:
                        data = f.read(1024)
                        file_.write(data)
                        if not data:
                            break

    then in mplayer

    mplayer.exe "C:/Kibble.mp3" (it works even if the file is still being download)

  4. Well that will work because instead of using wget I can just do

    while 1:

    data = f.read(1024)

    sys.stdout.write(data)

    sys.stdout.flush()

    if not data:

    break

    it will push the data to stdout in 1024 bit chunks as it gets it (then I just pipe it to mplayer)

  5. I would love that, I know some C and C++ and can generally read code I can't program in (well get the gist etc.) so ya any code would be great! Thank you. :) (also is the source code for saver2 open (I am interested (curiosity)))

  6. Ok I have ID3 tags working and am now working on fetching extended ID3 tags from the iTunes Music Store (you won't need iTunes installed for this to work...), Would anyone want me to have it fetch tags from Amazon too (I would then have to find out how).

    Any other features (I am working on having an option to play songs from search results)

×
×
  • Create New...