Example:
Link
http://www.ivoox.com/catastrofe-ultravioleta-01-expedicion-audios-mp3_rf_2933514_1.html
Iframe
Example:
Link
http://www.ivoox.com/catastrofe-ultravioleta-01-expedicion-audios-mp3_rf_2933514_1.html
Iframe
Assuming, that the numbers at the end of the URL are used as ID and that the c1 parameter is a cachebuster, this should work:
Regular Expression: https?://(?:.+?\.)?ivoox\.com/[^_]*_rf_(?P<ID>\d+_\d*)\.html
HTML: <iframe id='audio_{$ID}' allowfullscreen='' scrolling='no' height='200' style='border:none; box-sizing:border-box; width:100%;' src="https://www.ivoox.com/player_ej_{$ID}.html"></iframe>
@SoftCreatR something is wrong...
http://www.ivoox.com/catastrof…expedicion-audios-mp3_rf_2933514_1.html
I think only 2933514 is the ID and in the html code is neccesary add _4_1.html at the end. Can you help me to fix the code?
Try that:
Regex: https?://(?:.+?\.)?ivoox\.com/[^_]*_rf_(?P<ID>\d+)_\d*\.html
HTML:<iframe id='audio_{$ID}' frameborder='0' allowfullscreen='' scrolling='no' height='200' style='border:none; box-sizing:border-box; width:100%;' src="https://www.ivoox.com/player_ej_{$ID}_4_1.html"></iframe>
It works perfectly now! Thanks @SoftCreatR.
Only one note. I added all the original style to the iframe.
I've removed the border in the style property, because frameborder is set to 0. However, i'm glad it works now.
Don’t have an account yet? Register yourself now and be a part of our community!