How to Find the Music Source in a Webpage
- 1). Point your browser to the Web page you want to look at.
- 2). Click the "View" menu on your browser and select the "Source," "View Source" or "Page Source" option. This action displays a window containing all the page's code.
- 3). Scroll through the page until you see an "<embed>," "<object>" or "<bgsound>" tag. These HTML elements include music on a Web page.
- 4). Look for the "src=" or "id=" entry in a tag mentioned in the previous step and find the music source after the equal sign. Common music file extensions are MIDI, WAV, MP3 and AIFF. To illustrate:
<embed src="song.mp3">
Source...