youtube video download
-
Can anybody please tell me how to get youtube video url through asp.net.It can be done with php easily.but i am not able to do the same with classic asp.
-
Can anybody please tell me how to get youtube video url through asp.net.It can be done with php easily.but i am not able to do the same with classic asp.
-
yes. i need the virtual path of the flv file from youtube site.
-
yes. i need the virtual path of the flv file from youtube site.
hi, Hmm... Check out below url http://chiragrdarji.wordpress.com/2008/09/16/integrate-youtube-in-aspnet Regards Anil Pal
-
hi, Hmm... Check out below url http://chiragrdarji.wordpress.com/2008/09/16/integrate-youtube-in-aspnet Regards Anil Pal
Thanks for your reference. Is it possible to get flv file(or virtual path of the video in youtube site) of youtube video by supplying the youtube url.
-
Can anybody please tell me how to get youtube video url through asp.net.It can be done with php easily.but i am not able to do the same with classic asp.
Subarna4D wrote:
It can be done with php easily.but i am not able to do the same with classic asp.
Well if it can be done in php, what is preventing you from doing it in asp? smells fishy!
Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]
-
Subarna4D wrote:
It can be done with php easily.but i am not able to do the same with classic asp.
Well if it can be done in php, what is preventing you from doing it in asp? smells fishy!
Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]
Thanx for ur reply. Can you please give me the equivalent classic asp(vb scrpt) code for the php code below.
<?php
if (isset($_GET['url'])) {
// Get page
$url = $_GET['url'];
$data = implode("", file($url));
// Get content items
if (preg_match_all("/&t=[^&]*/", $data, $matches))
{
$t = $matches[0][0];
$t = preg_split("/=/", $t);
$t = $t[1];
$v = $url;
$v = preg_split ("/\?v=/", $v);
$v = $v[1];
$youtubepath = "http://www.youtube.com/get\_video.php?video\_id=" . $v . "";
$youtubepath2 = "t=". $t . "";
echo "$youtubepath&$youtubepath2&.flv";
} else {
echo "null";
}
} else {
echo "No YouTube URL to process";
}?>
I am searching it from last 2 months. Thanks in advance.
-
Thanx for ur reply. Can you please give me the equivalent classic asp(vb scrpt) code for the php code below.
<?php
if (isset($_GET['url'])) {
// Get page
$url = $_GET['url'];
$data = implode("", file($url));
// Get content items
if (preg_match_all("/&t=[^&]*/", $data, $matches))
{
$t = $matches[0][0];
$t = preg_split("/=/", $t);
$t = $t[1];
$v = $url;
$v = preg_split ("/\?v=/", $v);
$v = $v[1];
$youtubepath = "http://www.youtube.com/get\_video.php?video\_id=" . $v . "";
$youtubepath2 = "t=". $t . "";
echo "$youtubepath&$youtubepath2&.flv";
} else {
echo "null";
}
} else {
echo "No YouTube URL to process";
}?>
I am searching it from last 2 months. Thanks in advance.
Subarna4D wrote:
I am searching it from last 2 months.
2 months :omg: :wtf: what a waste, you could have learned php to the point you could have understood the code.
Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]