Class: Nicovideo

Inherits:
WebRadio show all
Defined in:
lib/nicovideo.rb

Instance Method Summary collapse

Methods inherited from WebRadio

instance

Constructor Details

#initialize(url, options) ⇒ Nicovideo

Returns a new instance of Nicovideo.



9
10
11
12
13
14
15
16
17
# File 'lib/nicovideo.rb', line 9

def initialize(url, options)
	 = Pit::get('nicovideo', :require => {
		:id => 'your nicovideo id',
		:pass => 'your nicovideo password'
	})
	@nico = Niconico.new([:id], [:pass])
	@nico.
	super
end

Instance Method Details

#download(name) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/nicovideo.rb', line 19

def download(name)
	begin
		player_url = get_player_url(@url)
	rescue NoMethodError
		raise DownloadError.new('video not found')
	end

	video = @nico.video(Pathname(URI(player_url).path).basename.to_s)
	serial = video.title.scan(/(?:[#第]|[  ]EP|track-)(\d+)|/).flatten.compact[0].to_i
	appendix = video.title =~ /おまけ|アフタートーク/ ? 'a' : ''
	@file = "#{name}##{'%02d' % serial}#{appendix}.#{video.type}"
	@mp3_file = @file.sub(/\....$/, '.mp3')
	mp3nize(@file, @mp3_file) do
		open(@file, 'wb:ASCII-8BIT') do |o|
			begin
				video.get_video do |body|
					print '.'
					o.write(body)
				end
			rescue Niconico::Video::VideoUnavailableError => e
				raise DownloadError.new(e.message)
			end
		end
	end
end