Audio overlap loop: Difference between revisions

m
made it a draft task, fixed JavaScript tasks
(submitting another program source code)
 
m (made it a draft task, fixed JavaScript tasks)
Line 1:
{{draft task}}
'''Audio Overlap Loop''' is a program that sets a file (in these code examples, the file is called ''loop.wav'') to a manipulation level. The manipulation level is set to a certain number, and that is the number of times the file loops. In this program, the files overlappingly loop, so it sounds like multiple, overlapping copies of the same file, all going at once.
 
=={{header|JavaScript}}/{{header|HTML}}==
<lang JavaScript>
<nowiki>
<script>
for(i=0, j=prompt("Enter the sound manipulation level you want", ""); i<j; i++){
document.write("<bgsound src='loop.wav'>")} </script>
</nowikilang>
Anonymous user