wget fail to save audio files in a page -
i running wget, able save (css, html, images, relative path reference etc) webpage, except audio (alert.mp3, alert.ogg)
is due limitation of wget when come getting audio format?
<?php exec("wget --no-parent --timestamping --convert-links --page-requisites -erobots=off http://webpage/index.html"); ?> <html> <body> bla bla bla <audio autoplay="autoplay" preload=""><source src="alert.mp3" type="audio/mpeg"><source src="alert.ogg" type="audio/ogg"></audio> </body> </html>
Comments
Post a Comment