Soundcloud仅从页面URL中嵌入检索,是否可能?

时间:2013-02-24 01:33:39

标签: php mysql api web

所以我能够检索这样的视频嵌入:

iframe style='overflow: hidden; border: 0; width: 720px; height: 506px' src='http://stagevu.com/embed?
width=720&amp;height=450&amp;background=000&amp;uid=ymuqokfxatwt' scrolling='no'></iframe> 

当用户以如下形式输入视频的简单网址链接时: http://stagevu.com/video/ipfmdyadiqgt,使用以下代码:

// code to display StageVu
if (preg_match("/http:\/\/stagevu.com\/video\/([a-z]*)/i", $url, $matches)) {
return '<iframe style="overflow: hidden; border: 0; width: 700px; height: 400px"
   src="http://stagevu.com/embed?width=700&amp;height=400&amp;background=000& amp;uid='
   .$matches[1]. '" scrolling="no">'.
'</iframe>';
}

我想知道这样的链接:https://soundcloud.com/darkelixir/teknian-behemoth-darkelixir

像这样疯狂的嵌入:

iframe width="100%" height="166" scrolling="no" frameborder="no"
  src="https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F80432122"> 
  </iframe> 

如果没有易于使用的ID系统,如何允许通过url嵌入?

1 个答案:

答案 0 :(得分:0)