BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 12-02-2010, 01:54 AM   #1
excetara2
New Member
 
Join Date: Dec 2010
Model: 9650
PIN: N/A
Carrier: Vodafone (Verizon Branded)
Posts: 2
Default Script to Copy/Sync Playlists and Music to Blackberry

Please Login to Remove!

This is a script I wrote to copy my playlists and associated Music from rhythmbox over to a blackberry. All my music is in a Music Folder and I output the playlist files from rhythmbox into the Music folder so it uses relative indexing (rhythmbox will use relative if it can so all music in the playlist is contained in that music folder. If not, it will use absolute paths). Then the same directory structure is set up on the blackberry and music is transferred as well as the same playlists in a format blackberry understands.

I may write a rhythmbox plugin for this if I get time because shouldn't be difficult and would fully automate the process. There may already be an easier way to do this I just didn't find one relatively quickly.

Note: If it uses absolute paths so my setup above isn't followed the script would need to be slightly modified.


USAGE:
  1. Change dirBlackMusic to the blackberry mount location (should be '/media/???????/BlackBerry/music/' where ?????? is whatever your system decides)
  2. Change dirCompMusic to your music folder
  3. Set-up so you input playlist without the .m3u etension (make sure to output playlists from rhythmbox as .m3u) and if you just hit enter and input nothing it runs the playlists set in listPlaylist
  4. Note: dirPlayNameBlack was for absolute paths on blackberry but currently not using it in the script because using relative on PC and blackberry.


Need to comment the code below but any questions just ask.

Code:
import os
import shutil

def ensureDir(f):
    d = os.path.dirname(f)
    if not os.path.exists(d):
        os.makedirs(d)
inputPlaylist = raw_input('Enter Name of Playlist:')
inputPlaylist += '.m3u'
if (inputPlaylist == '.m3u'):
    listPlaylist = ['Blackberry.m3u','Acoust.m3u','Country.m3u','LiamTomTom.m3u','New Great.m3u','PowerHour.m3u','That Stanky Shit.m3u','Other Stuff.m3u'] #Works on spaces properly but need \' and \"
else:
    listPlaylist = inputPlaylist
dirCompMusic = '/mnt/data/Music/'
dirBlackMusic = '/media/424D-549E/BlackBerry/music/'
dirBlackPlaylist = dirBlackMusic
dirPlayNameBlack = 'file:///SDCard/BlackBerry/music'
if (os.path.exists(dirBlackMusic)):  
    for namePlaylist in listPlaylist:
        readPlay = open(namePlaylist, 'r')  
        writePlay = open(dirBlackMusic + namePlaylist, 'w')
        for line in readPlay:
            line = line.strip()
            if (line[0] == '#'):
                pass
            else:
                line = line.replace('"','\"')
                line = line.replace("'","\'")
                dirBlackPath = dirBlackMusic + line
                ensureDir(dirBlackPath)
                if (not os.path.isfile(dirBlackPath)):
                    #ospath = line.replace(' ','\\ ')
                    # os.system("cp %s %s" % (ospath, blackberrypath))
                    shutil.copy(line, dirBlackPath)
                playNameBlack = line.replace(' ','%20')
                writePlay.write(playNameBlack + '\n')
        writePlay.close()
        readPlay.close()
else:
    print "Please Mount your Blackberry or Change dirBlackMusic to reflect music Folder"

Cheers
Offline  
Closed Thread


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads for: Script to Copy/Sync Playlists and Music to Blackberry
Thread Thread Starter Forum Replies Last Post
New Blackberry Torch Announced tsac General 9800 Series Discussion - Torch 4 08-03-2010 02:43 PM
More iPhone vs. BB djm2 BlackBerry Versus 116 07-17-2008 09:42 PM
AT&T Blackberry Curve dirtypirate General 8300 Series Discussion - Curve 7 09-30-2007 05:00 PM
RIM Introduces the BlackBerry Curve Smartphone BlackBerryLinks BlackBerry In the News 0 05-03-2007 03:47 AM


A50P800-4 FERRAZ SHAWMUT 500V 800AMP SEMICONDUCTOR FUSE NEW picture

A50P800-4 FERRAZ SHAWMUT 500V 800AMP SEMICONDUCTOR FUSE NEW

$312.00



FWP-250A BUSSMANN Semiconductor Fuse 200A 700V NEW picture

FWP-250A BUSSMANN Semiconductor Fuse 200A 700V NEW

$199.00



Peak, Atlas DCA55 Semiconductor Tester,  picture

Peak, Atlas DCA55 Semiconductor Tester,

$97.99



10x On Semiconductor BS170-D26Z MOSFET Transistor N Channel 500 mA, 60V, 1.2 ohm picture

10x On Semiconductor BS170-D26Z MOSFET Transistor N Channel 500 mA, 60V, 1.2 ohm

$8.75



Silicon Wafer Integrated Circuit CPU Chip Technology Semiconductor Lithography13 picture

Silicon Wafer Integrated Circuit CPU Chip Technology Semiconductor Lithography13

$78.99



Dual Range Transistor Diode Semiconductor & Passive Curve Tracer Tester/Tracker picture

Dual Range Transistor Diode Semiconductor & Passive Curve Tracer Tester/Tracker

$28.49







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.