« get me outta code hell

Better recursive crawler - http-music - Command-line music player + utils (not a server!)
about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorliam4 <towerofnix@gmail.com>2017-05-30 20:09:03 +0000
committerliam4 <towerofnix@gmail.com>2017-05-30 20:09:03 +0000
commit9ab94d9a4ba2896a58db7a2f965808b3bb6ab262 (patch)
tree73a4602cd3322458d495ed4898ae5fd4082cf414 /README.md
parente8fa654bcb8a1b191e1c1ce5853c9f0cb529c11d (diff)
Better recursive crawler
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index db3c69a..7e7478b 100644
--- a/README.md
+++ b/README.md
@@ -8,13 +8,12 @@ It's also decently powerful.
 ```bash
 # On the server; that is, the device that holds the media:
 $ cd my_music_folder
-$ python3 -m http.server 1233
+$ python3 -m http.server <some_port>
 
 # On the client; that is, the device with http-music:
 $ cd http-music
 $ yarn  # to install Node.js dependencies; you'll also need `avconv` and `play` (sox).
-$ node crawl-itunes.js > playlist.json  # Bad script name, right?
-# I think you might need to configure crawl-itunes.js to get the right IP and port..
+$ node crawl-recursive.js <server_ip> > playlist.json
 $ node play.js  # Go!
 ```