Difference between revisions of "Earbits"

From Archiveteam
Jump to navigation Jump to search
(→‎Assets (Images mostly): earbits_assets_05 is in the archive)
Line 204: Line 204:
| earbits_assets_03 || Schbirid || Done, 14G || DONE, in archive
| earbits_assets_03 || Schbirid || Done, 14G || DONE, in archive
|-
|-
| earbits_assets_04 || db48x || Uploaded, 16G ||
| earbits_assets_04 || db48x || Uploaded, 16G || DONE, in archive
|-
|-
| earbits_assets_05 || Mithrandir || Done, 14.6GB || DONE, in archive
| earbits_assets_05 || Mithrandir || Done, 14.6GB || DONE, in archive

Revision as of 09:19, 2 July 2014

Earbits
Earbits logo
Earbits homepage screenshot.png
URL http://www.earbits.com/
Status Online!
Archiving status Saved!
Archiving type Unknown
IRC channel #earbite (on hackint)

Earbits is an independent music radio station with no commercials. The website was shutdown on June 16th 2014, but was brought back online on June 19th, 2014.

Shutdown

Earbits will be shutting down June 16th

by Joey Flores

| June 12, 2014 | Online Radio News

To our Earbits Listeners, Artists, and Labels,

It is with heavy hearts that we must announce the shutting down of the Earbits service on June 16th.

Shutting down a company after 4.5 years is going to be painful for anybody but is particularly painful for us here at Earbits. Most startups validate over the course of a few years that their concept is inherently flawed, or that the economics of it would not work out at scale. For Earbits, nothing could be further from the truth. We proved to ourselves and a substantial number of artists and listeners that our concept does work, that our vision is what the industry and larger streaming providers need to be doing in order to create more value, but that we simply needed a lot more capital to pursue such an aggressive mission properly. In trying to build a digital media, two sided marketplace in an already tough industry, it appears we bit off more than we could chew.

That being said, for over four years our team worked tirelessly toward the goal of turning streaming music into a true creator of value for the content community. By showcasing features that allowed our listeners to connect with our artists, we generated for them hundreds of thousands of new mailing list signups and Facebook fans across a relatively small audience. The revenue and other value that our partners generated from these new connections was often ten or twenty times higher than what they receive from ad-supported royalties on major services, and it provides concrete evidence that there is more streaming companies can do to provide the content community with a return for their hard work.

If there is anything that we want to impart on the industry about our experience it’s this. If today’s streaming companies truly care about the creators of their product, they’re going to have to do more than talk about wanting to drive more value. It takes ingenuity and sacrifice to change an industry like the one we are all so passionate about. At Earbits, we have helped to shine a light on new and innovative ways that streaming can bring value to artists and content owners, and to provide an example of the sort of short term sacrifices it takes to begin to truly solve this problem. Though we are hopeful about the future of streaming, two things are clear to us through our conversations throughout the industry. Most companies understand that the types of solutions we built at Earbits are an inevitability for any successful and sustainable streaming provider, but those companies are just not prepared to make those sacrifices today.

We want to take an opportunity to thank every supporter, listener, artist, label and even naysayer who helped to shape the Earbits journey since we started the company in 2010. And more than anything, we want to thank our team and investors who took this risk alongside us. All of you helped us to accomplish more than anyone thought possible and our team is eternally grateful to have been given the chance to pursue this vision and impact artists and music lovers for four great years.

We hope that the connections we enabled between music lovers and our artists will continue long after the Earbits service is gone, so we encourage our listeners to take the next few days to note the bands and songs they bookmarked on the Earbits service.

As we have done from day one, we want to do right by our artists and label partners. All artists or labels who purchased Earbits marketing services can request a pro-rated refund by emailing our client services team by June 18th. More instructions have been sent to paying clients directly.

Thank you again to everybody who played a part in this incredible journey. We are eternally grateful and look forward to staying in touch. If you have any questions or comments, please feel free to email me at joey at earbits dot com.

Thanks for everything.

_____________________________

Joey Flores

CEO, Earbits[1]


"Back online indefinitely"

You spoke. Someone listened. Earbits is back online.

by Joey Flores

| June 19, 2014 | Online Radio News

Dear friends, listeners, artists and labels,

It has been one hell of a week, and we could not be more excited to bring you some truly unbelievable news.

On Friday, we announced that we had run out of funding and would be shutting down the Earbits service. We received countless emails from artists and listeners showing their support for the Earbits vision, and they spoke up on Twitter and across the web. Unfortunately, we had no choice but to go offline two days ago.

The sentiment of the community did not go unnoticed. Since then, a strategic partner has stepped forward and provided the necessary funding to bring Earbits back online indefinitely. The web service and mobile apps have been relaunched, effective immediately. Seriously…go look!! —> www.earbits.com

As is the nature of these things, I can’t provide much more information at this time. What we can say is that we feel truly blessed by the support that we received this week. With the help of our strategic partners, we look forward to not only continuing the services that our fans and artists have come to love but positioning ourselves at the center of a music industry revolution.

We will be sharing any further details with our partners, users and the community just as soon as we can.

Thank you to everyone who came out in support of Earbits and our team. It was the most heartwarming show of support anyone could have asked for. Thanks to you, our future is now looking brighter than ever.

Joey Flores

CEO, www.earbits.com[2]

Site structure

It's a site for streaming indie music. ~140,000 tracks.

API

Streaming via MP3 is handle through an API. UPPERCASE below marks variables.

# First you need to acquire a client_token Cookie by simply visiting the site:
client_token=$(curl -I www.earbits.com | grep -Po 'client_token=.*?;' | sed 's/.*=//' | sed 's/;//')

# Then you can query the site about information on an artist (same URL as with the browser but the response is JSON)
curl 'http://www.earbits.com/artists/ARTISTNAME' -H 'Cookie: client_token=YOURCLIENTTOKEN; ' -H 'Accept-Encoding: gzip,deflate,sdch' -H 'Accept: application/json, text/javascript, */*; q=0.01' -H 'Referer: http://www.earbits.com/' -H 'X-Requested-With: XMLHttpRequest' -H 'Connection: keep-alive' --compressed

# MP3 Track URLs can be acquired per track via:
curl  'http://streaming.earbits.com/api/v1/track.json?callback=_jqjsp&stream_id=STREAMID' -H 'Accept-Encoding: gzip,deflate,sdch' -H 'Accept: */*' -H 'Referer: http://www.earbits.com/' -H 'Cookie: client_token=YOURCLIENTTOKEN; ' -H 'Connection: keep-alive' --compressed

Unfortunately we do not know how to construct the STREAMID. It looks like a md5 hash. It is not ID from the artist json. You can get stream IDs by looking at your browser's network traffic while streaming.

Archive

Website

Arkiver is done running a Heritrix crawl of the following domains:

The warc's are uploaded to the arkiver packs.


Schbirid stopped crawl accidentaly.

Music

http://media-http-prod-0.earbits.com/ lists 1000 files, we were unsuccessful in getting a full list. These 1000 links are being downloaded by Arkiver using the program Heritrix and by Schbirid via wget.

We can download arbitrary tracks now because http://streaming.earbits.com/api/v1/track.json?slug=TRACKTITLE returns the file URL. We have downloaded ~130k mp3s.

You grabbed the music and now you need to dump it somewhere? RSYNC IT!

rsync -avt --progress media-http-prod-0.earbits.com trackjson* *.log rsync://ams1.megawarc.org/eargrab/YOURNICKNAME

Dont forget to change YOURNICKNAME..

Inputfile Member Status
tracks_00 Schbirid Done, rsync done
tracks_01 Schbirid Done, rsync done
tracks_02 deathy Done. rsync done
tracks_03 joepie Done. rsync done
tracks_04 zyce Done. rsync done
tracks_05 joepie Done. rsync done
tracks_06 joepie Done. rsync done
tracks_07 deathy Done. rsync done
tracks_08 joepie Done. rsync done
tracks_09 Schbirid Done, rsync done
tracks_10 Mithrandir Done, rsync done
tracks_11 deathy Done. rsync done
tracks_12 joepie Done. rsync done
tracks_13 joepie Done. rsync done
tracks_14 joepie Done. rsync done
tracks_15 joepie Done. rsync done
tracks_16 joepie Done. rsync done
tracks_17 joepie Done. rsync done
tracks_18 joepie Done. rsync done
tracks_19 joepie Done. rsync done
tracks_20 ByMe Done. rsync done
tracks_21 ByMe Done. rsync done
tracks_22 ByMe Done. rsync done
tracks_23 joepie Done. rsync done
tracks_24 joepie Done. rsync done
tracks_25 joepie Done. rsync done
tracks_26 joepie Done. rsync done
tracks_27 Midas Done. rsync done
tracks_28 Midas Done. rsync done
tracks_29 Midas Done. rsync done

Assets (Images mostly)

We have lists of files to download. Come to IRC to take part. Needs a recent wget with warc support.

NUMBER=XX; wget -x -a earbits-assets-production-0.s3.amazonaws.com_${NUMBER}_$(date +%Y%m%d).log -nv -nH --directory-prefix=earbits-assets-production-0.s3.amazonaws.com_${NUMBER}_$(date +%Y%m%d) --warc-file=earbits-assets-production-0.s3.amazonaws.com_${NUMBER}_$(date +%Y%m%d) --warc-cdx -i earbits_assets_${NUMBER}

XX is your inputfile number(IRC explains it all!)

Inputfile Member Status S3
earbits_assets_00 Schbirid Done, 11G DONE, in archive
earbits_assets_01 Schbirid Done, 9.4G DONE, in archive
earbits_assets_02 Schbirid Done, 15G DONE, in archive
earbits_assets_03 Schbirid Done, 14G DONE, in archive
earbits_assets_04 db48x Uploaded, 16G DONE, in archive
earbits_assets_05 Mithrandir Done, 14.6GB DONE, in archive
earbits_assets_06 midas Done DONE, in archive
earbits_assets_07 midas Done 18GB DONE, in archive
earbits_assets_08 midas Done DONE, in archive

Finished Archive

https://archive.org/search.php?query=earbits

External links

References