<![CDATA[Latest posts for the topic "Download nhạc trên baihatvang.nhacso.net"]]> /hvaonline/posts/list/27.html JForum - http://www.jforum.net Download nhạc trên baihatvang.nhacso.net http://baihatvang.nhacso.net/ Mấy bài nhạc ở đây hay phết các bác ạh, file mp3 mỗi bài khoảng > 5Mb. Bác nào thích chạy cái script này để download tất cả bài nhạc đó (bản Original, ko phải bản có đọc lời bình) (phải có python +wget nha) :D Code:
Usage:
$./nhacso.py
.... rồi ngồi chờ thằng wget nó lấy hết về ]]>
/hvaonline/posts/list/27248.html#166400 /hvaonline/posts/list/27248.html#166400 GMT
Re: Download nhạc trên baihatvang.nhacso.net

Nhạc mp3 chất lượng cao, nghe ngon ra phết :D ]]>
/hvaonline/posts/list/27248.html#166404 /hvaonline/posts/list/27248.html#166404 GMT
Re: Download nhạc trên baihatvang.nhacso.net /hvaonline/posts/list/27248.html#166410 /hvaonline/posts/list/27248.html#166410 GMT Re: Download nhạc trên baihatvang.nhacso.net /hvaonline/posts/list/27248.html#166414 /hvaonline/posts/list/27248.html#166414 GMT Re: Download nhạc trên baihatvang.nhacso.net

secmask wrote:
vào thấy cái counter vẫn là 0 times, thấy tội nghiệp anh gamma95 quá nên click vậy ;)) mà cái script này download cả mẻ 100 bài luôn chứ không phải mở từng bài ra đâu bác napoleon_tq. 
Nếu mà là script để down xxx thì chắc giang hồ click mỏi tay rồi :D. Lần sau rút kinh nghiệm, sẽ đặt tên mấy cái script này có dạng free_porn.py chắc ăn khách hơn (:-P . Thanks secmask]]>
/hvaonline/posts/list/27248.html#166418 /hvaonline/posts/list/27248.html#166418 GMT
Re: Download nhạc trên baihatvang.nhacso.net sudo chmod +x nhacso.py  là chạy được luôn, không biết cái ubuntu trên vmware này còn chỗ trống không :D]]> /hvaonline/posts/list/27248.html#166453 /hvaonline/posts/list/27248.html#166453 GMT Re: Download nhạc trên baihatvang.nhacso.net Code:
#!/usr/bin/perl
require HTTP::Request;
require LWP::UserAgent;
use LWP::Simple;
$head = 'http://baihatvang.nhacso.net/index.php?id=';
for ($i=1; $i<100; $i++)
{
   $dest = $head.$i;
   $request = HTTP::Request->new(GET => $dest);
   $usrAgent = LWP::UserAgent->new;
   $response = $usrAgent->request($request);
   if($response->is_success)
   {
      $s = $response->content;
      $s=~/(http:\/\/210.245.126.171\/Music\/BHV\/Original\/\w+.\w+\.mp3)/i;
      if ( $1 eq "")
      {
         print "Link not found!\n";
      }
      else
      {
         $tmp = 'wget '.$1;
         system($tmp);
      }
   }
   else
   {
      print "error in connection \n";
   }
}
print "\n";
Thay: Code:
#!/usr/bin/perl
tương ứng. Chạy: Code:
perl <tên file>
Có gì mong các bác góp ý giúp.]]>
/hvaonline/posts/list/27248.html#166459 /hvaonline/posts/list/27248.html#166459 GMT
Re: Download nhạc trên baihatvang.nhacso.net nhacso.net và nhacdinh.com: http://www.whatvn.com/data/tools/GetLink1.6.zip Ko viết cho vụ BHV ;)]]> /hvaonline/posts/list/27248.html#166461 /hvaonline/posts/list/27248.html#166461 GMT Re: Download nhạc trên baihatvang.nhacso.net /hvaonline/posts/list/27248.html#166469 /hvaonline/posts/list/27248.html#166469 GMT Re: Download nhạc trên baihatvang.nhacso.net

Z0rr0 wrote:
Nhân tiện quảng cáo tool nhỏ cho mấy bồ sài Windows hỗ trợ down tại nhacso.net nhacdinh.com: http://www.whatvn.com/data/tools/GetLink1.6.zip Ko viết cho vụ BHV ;) 
Em vừa thử down bài "Lời người ra đi" không được bác ạ:
Rõ ràng link mms có thấy đuôi .wma rồi nhưng bấm add to IDM thì hiện thông báo trên. ]]>
/hvaonline/posts/list/27248.html#166556 /hvaonline/posts/list/27248.html#166556 GMT
Re: Download nhạc trên baihatvang.nhacso.net /hvaonline/posts/list/27248.html#166906 /hvaonline/posts/list/27248.html#166906 GMT Download nhạc trên baihatvang.nhacso.net _http://pastebin.com/f7127e0fe]]> /hvaonline/posts/list/27248.html#203630 /hvaonline/posts/list/27248.html#203630 GMT Download nhạc trên baihatvang.nhacso.net

PhanPhungTien wrote:
Edit tí code của anh g4mm4 cho phù hợp :D _http://pastebin.com/f7127e0fe 
_http://pastebin.com/fa2693 <-- update]]>
/hvaonline/posts/list/27248.html#203640 /hvaonline/posts/list/27248.html#203640 GMT
Download nhạc trên baihatvang.nhacso.net Code:
#! /usr/bin/env python
# Script to download Music from Dreammedia.ru
# Try to find your favorite Band and Album, then use this script
# hungnv coded 
import os
import urllib2
import sys
def usage():
		print "Usage:",sys.argv[0], "\"bandname\" \"albumname\""	
		
def st_replace(string):
		new = string.replace(' ','%20')
		return new
			
def download(url,pl,band,album):
		band1 = st_replace(band)
		album1 = st_replace(album)
		temp = (url + pl[:8] + '/' + band1 + '/' + album1 + '/' + pl)
		try:
				response = urllib2.urlopen(temp)
		except:
				print 'Connection error'
		response = urllib2.urlopen(temp)
		content = response.readlines()
		for line in content:
				a = line.find('music/')
				b = line.find('.mp3')
				if a <> -1 and b <> -1:
						path = line[a:b+4]
						semi = (url + '%s') %path
						final = st_replace(semi)
						os.system('wget '+final)
				else:
						continue
						
if __name__ == '__main__':
		band = sys.argv[1]
		album = sys.argv[2]
		url = "http://dreammedia.ru/"
		pl = 'playlist.xml'
		if len(sys.argv) <> 3:
				usage()
				exit()
		else:
				download(url,pl,band,album)
exit()
]]>
/hvaonline/posts/list/27248.html#203699 /hvaonline/posts/list/27248.html#203699 GMT