Originally posted by firemax
View Post
Yaaya.mobi - YouTube Video Searcher And Downloader NEW
Collapse
X
-
header() download
hey firemax,how much do you know about header()/php download?
does all mobile support it?
some of my users said that they cant download youtube videos.i have used header("Content-Length: $size"); line.
do u think this line is the main problem or their mobile doesn't support header()/php download?
Comment
-
yes heade content length not supporting for some poor browsers. (Ex: IE 6 basic) ,
but this is not a problem for downloading. check the value of '$size'. if $size equals to '0', file will not be download.
Free Mobile Web Scripts by me: Free Youtube Downloader, Tweets Reader, Facebook Wall Posts Reader
PHP Tutorials: How to Secure Your PHP Script (PHP SECURITY)
Want to Develop/Edit your WAP/Web Site? Add me to Gtalk (gmail) 'lakshan1989' or PM me.
Comment
-
Originally posted by firemax View Postyes heade content length not supporting for some poor browsers. (Ex: IE 6 basic) ,
but this is not a problem for downloading. check the value of '$size'. if $size equals to '0', file will not be download.
header("Content-Length: ".$length."");
does not works but
header("Content-Length : ".$length."");
works.i mean u need a space between Content-Length and :
Comment
-
oh,but php recommendation is header("Content-Length: ".$length.""); (same as header("Content-Length: $length");)
Free Mobile Web Scripts by me: Free Youtube Downloader, Tweets Reader, Facebook Wall Posts Reader
PHP Tutorials: How to Secure Your PHP Script (PHP SECURITY)
Want to Develop/Edit your WAP/Web Site? Add me to Gtalk (gmail) 'lakshan1989' or PM me.
Comment
-
Guest
Select the Video Format
3gp,Low Quality Error! Retry!
3gp,Medium Quality Error! Retry!
3gp,High Quality Error! Retry!
flv,Low Quality Error! Retry!
flv,Low Quality Error! Retry!
flv,High Quality (320p) Error! Retry!
flv,High Quality (480p) Error! Retry!
mp4,High Quality (480p) Error! Retry!
Comment
-
Originally posted by uNrEaL View PostSelect the Video Format
3gp,Low Quality Error! Retry!
3gp,Medium Quality Error! Retry!
3gp,High Quality Error! Retry!
flv,Low Quality Error! Retry!
flv,Low Quality Error! Retry!
flv,High Quality (320p) Error! Retry!
flv,High Quality (480p) Error! Retry!
mp4,High Quality (480p) Error! Retry!
Free Mobile Web Scripts by me: Free Youtube Downloader, Tweets Reader, Facebook Wall Posts Reader
PHP Tutorials: How to Secure Your PHP Script (PHP SECURITY)
Want to Develop/Edit your WAP/Web Site? Add me to Gtalk (gmail) 'lakshan1989' or PM me.
Comment
-
@firemax, please teach me how to remove name attachment that will not affect its download, I tried to remove it but its not downloading..Im talking about remove not replace with my site url,.ThanksPHP Code:$vn=rand(0,9999);
header("Content-type: application/force-download");
if($_GET['type']==17){
header("Content-Type: video/3gp");
header("Content-Disposition: attachment; filename=\"$vn.3gp\"");
}
else if($_GET['type']==13){
header("Content-Type: video/mp4");
header("Content-Disposition: attachment; filename=\"$vn.mp4\"");
}
else{
header("Content-Type: video/x-flv");
header("Content-Disposition: attachment; filename=\"$vn.flv\"");
}
Free Mobile Web Scripts by me: Free Youtube Downloader, Tweets Reader, Facebook Wall Posts Reader
PHP Tutorials: How to Secure Your PHP Script (PHP SECURITY)
Want to Develop/Edit your WAP/Web Site? Add me to Gtalk (gmail) 'lakshan1989' or PM me.
Comment
-
Ok, I think you can`t help..
Coz With that code If I download (e.g. Charlie bit my finger - again!) video, it`s name will be (random number.3gp)..
What I want is when I download
(e.g. Charlie bit my finger - again!) video, it`s name will be (Charlie bit my finger - again!.3gp)..
I hope someone understands me, sorry for bad english..
Comment
-
don't try to re catch video title from youtube api.try to use an additional get parameter from view.php page.
Free Mobile Web Scripts by me: Free Youtube Downloader, Tweets Reader, Facebook Wall Posts Reader
PHP Tutorials: How to Secure Your PHP Script (PHP SECURITY)
Want to Develop/Edit your WAP/Web Site? Add me to Gtalk (gmail) 'lakshan1989' or PM me.
Comment
-
Originally posted by firemax View Postdon't try to re catch video title from youtube api.try to use an additional get parameter from view.php page.
Comment
Comment