Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resource required by performance extension is no longer available #246

Open
gutjuri opened this issue Feb 28, 2023 · 0 comments
Open

Resource required by performance extension is no longer available #246

gutjuri opened this issue Feb 28, 2023 · 0 comments

Comments

@gutjuri
Copy link

gutjuri commented Feb 28, 2023

var defaultURL = 'http://cs-people.bu.edu/babman/host/performance.wav';
exports.name = 'performance';
exports.make_jiff = function (jiff_instance, options) {
var url = defaultURL;
if (options != null && options.url != null) {
url = options.url;
}
if (!node) {
var audio = '<audio autoplay loop controls hidden="true" id="performance_audio">';
audio += '<source src="' + url + '" type="audio/wav">';
audio += 'Your browser does not support the audio element.';
audio += '</audio>';
if (options.elementId != null) {
document.getElementById(options.elementId).innerHTML = audio;
} else {
document.body.innerHTML += audio;
}
}

Here, the resource https://cs-people.bu.edu/babman/host/performance.wav is embedded into the client's HTML. However, the resource is no longer available. If I click the link, I get a 404. Is the resource necessary or an easter egg? If it is necessary, would you consider uploading it at a location that is available long-term (e.g. GitHub LFS)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: No status
Development

No branches or pull requests

1 participant