The MP3 Is Officially Dead, According To Its Creators
- ken
- Roosevelt
- Posts: 3905
- Joined: Sat Sep 25, 2004 6:10 pm
- Instruments: Guitar, bass, drums, keys
- Recording Method: MOTU 828x, Cubase 10
- Submitting as: Ken's Super Duper Band 'n Stuff
- Pronouns: he/him
- Location: oakland, ca
- Contact:
The MP3 Is Officially Dead, According To Its Creators
http://www.npr.org/sections/therecord/2 ... s-creators
What will this mean for Songfight? Can we finally submit high quality WAV files instead of mp3s?!?!?
What will this mean for Songfight? Can we finally submit high quality WAV files instead of mp3s?!?!?
Ken's Super Duper Band 'n Stuff - Berkeley Social Scene - Tiny Robots - Seamus Collective - Semolina Pilchards - Cutie Pies - Explino! - Bravo Bros. - 2 from 14 - and more!
i would just like to remind everyone that Ken eats kittens - blue lang
i would just like to remind everyone that Ken eats kittens - blue lang
- jb
- Roosevelt
- Posts: 4197
- Joined: Sat Sep 25, 2004 10:12 am
- Instruments: Guitar, Cello, Keys, Uke, Vox, Perc
- Recording Method: Logic X
- Submitting as: The John Benjamin Band
- Pronouns: he/him
- Location: WASHINGTON, DC
- Contact:
Re: The MP3 Is Officially Dead, According To Its Creators
At least nobody is still using MP3s...
Man they should tell every podcaster about this too eh?
JB
Man they should tell every podcaster about this too eh?
JB
blippity blop ya don’t stop heyyyyyyyyy
- Lunkhead
- Rosselli
- Posts: 8404
- Joined: Sat Sep 25, 2004 12:14 pm
- Instruments: many
- Recording Method: cubase/mac/tascam4x4
- Submitting as: Berkeley Social Scene
- Pronouns: he/him
- Location: Central Oregon
- Contact:
Re: The MP3 Is Officially Dead, According To Its Creators
I know one music streaming service that's still using mp3 ... 
Also, maybe we should focus on making high quality music before we worry about high quality audio?

Also, maybe we should focus on making high quality music before we worry about high quality audio?

- Chumpy
- Twilight Sparkle
- Posts: 703
- Joined: Sat Apr 18, 2015 2:06 pm
- Instruments: Vocals, guitar, bass
- Recording Method: Logic
- Submitting as: Jerkatorium, Chumpy
- Pronouns: he/him
- Location: Seattle, WA
- Contact:
Re: The MP3 Is Officially Dead, According To Its Creators
You don't think this has anything to do with all the patents on mp3 running out in 2017 do ya?
"I don't recommend ending on a bad joke." --ken
- fluffy
- Eisenhower
- Posts: 11191
- Joined: Sat Sep 25, 2004 10:56 am
- Instruments: sometimes
- Recording Method: Logic Pro X
- Submitting as: Sockpuppet
- Pronouns: she/they
- Location: Seattle-ish
- Contact:
Re: The MP3 Is Officially Dead, According To Its Creators
Chumpy wrote:You don't think this has anything to do with all the patents on mp3 running out in 2017 do ya?
Translation: yes.The Fraunhofer Institute for Integrated Circuits, a division of the state-funded German research institution that bankrolled the MP3's development in the late '80s, recently announced that its "licensing program for certain MP3 related patents and software of Technicolor and Fraunhofer IIS has been terminated."
- Lunkhead
- Rosselli
- Posts: 8404
- Joined: Sat Sep 25, 2004 12:14 pm
- Instruments: many
- Recording Method: cubase/mac/tascam4x4
- Submitting as: Berkeley Social Scene
- Pronouns: he/him
- Location: Central Oregon
- Contact:
Re: The MP3 Is Officially Dead, According To Its Creators
On a more serious note, it looks like support for the "HTML5" audio tag is pretty widespread now, even on mobile browsers. What would folks think of a slight revamp of the songfight.org homepage to use the audio tag to provide players for each song right on the homepage...? There would still be download links too, so, no functionality we be removed/lost. The added benefit would be that you could listen to the songs without navigating away from the homepage.
- fluffy
- Eisenhower
- Posts: 11191
- Joined: Sat Sep 25, 2004 10:56 am
- Instruments: sometimes
- Recording Method: Logic Pro X
- Submitting as: Sockpuppet
- Pronouns: she/they
- Location: Seattle-ish
- Contact:
Re: The MP3 Is Officially Dead, According To Its Creators
Using something like jPlayer Jukebox would definitely be nice, yeah.
- Lunkhead
- Rosselli
- Posts: 8404
- Joined: Sat Sep 25, 2004 12:14 pm
- Instruments: many
- Recording Method: cubase/mac/tascam4x4
- Submitting as: Berkeley Social Scene
- Pronouns: he/him
- Location: Central Oregon
- Contact:
Re: The MP3 Is Officially Dead, According To Its Creators
Do we even need to get that fancy? I was thinking it might be more in the spirit of the songfight.org homepage's lo-fi/old-school esthetic to just splat the browser generated players on the page, no JS library involved. ¯\_(ツ)_/¯
- jast
- Niemöller
- Posts: 1335
- Joined: Tue Jul 29, 2008 7:03 pm
- Instruments: Vocals, guitar
- Recording Method: Cubase, Steinberg UR44
- Submitting as: Jan Krueger
- Pronouns: .
- Location: near Aachen, Germany
- Contact:
Re: The MP3 Is Officially Dead, According To Its Creators
The browser-generated players take up quite a lot of space if you put a bunch of them in a list, though.
I just made a minimalist script to set up players for all MP3 links on the page, no dependencies and works in all browsers back to IE9:
I just made a minimalist script to set up players for all MP3 links on the page, no dependencies and works in all browsers back to IE9:
Code: Select all
document.addEventListener('DOMContentLoaded', function() {
if (typeof Audio !== 'function') return;
var links = document.querySelectorAll('a[href$=".mp3"]');
var active;
var setupPlayer = function(link) {
var btn = document.createElement('a');
btn.innerHTML = "\u25ba";
btn.style.cursor = 'pointer';
btn.style.fontSize = '80%';
btn.style.padding = '2px';
btn.style.marginRight = '1ex';
btn.style.border = 'solid 1px '+ btn.style.color;
btn.style.borderRadius = '2px';
btn.style.textDecoration = 'none';
btn.addEventListener('click', function(e) {
if (active) {
active.button.style.display = 'inline';
active.player.parentNode.removeChild(active.player);
active = null;
}
btn.style.display = 'none';
var player = document.createElement('audio');
player.setAttribute('autoplay', '');
player.setAttribute('controls', '');
player.setAttribute('src', link.getAttribute('href'));
player.style.display = 'block';
link.parentNode.appendChild(player);
active = {
player: player,
button: btn
};
});
link.parentNode.insertBefore(btn, link);
}
for (var i = 0; i < links.length; i++) {
setupPlayer(links[i]);
}
});
- Lunkhead
- Rosselli
- Posts: 8404
- Joined: Sat Sep 25, 2004 12:14 pm
- Instruments: many
- Recording Method: cubase/mac/tascam4x4
- Submitting as: Berkeley Social Scene
- Pronouns: he/him
- Location: Central Oregon
- Contact:
Re: The MP3 Is Officially Dead, According To Its Creators
That's pretty cool! We maybe just need to give more of the page width to the center column to make room for the players, and less width to the right column to make room. I have never understood anyway why the right column was so wide when the real focus of the page is to my mind supposed to be the center column with the songs.