irecorder 0.0.4-linux → 0.0.5-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,6 +9,11 @@ require 'rss'
9
9
  require 'nokogiri'
10
10
  require 'shellwords'
11
11
  require 'fileutils'
12
+ require 'tmpdir'
13
+ require 'singleton'
14
+
15
+ # my libs
16
+ require "cache"
12
17
 
13
18
  UrlRegexp = URI.regexp(['rtsp','http'])
14
19
 
@@ -19,6 +24,23 @@ class BBCNet
19
24
  MmsRegexp = URI.regexp(['mms'])
20
25
  DirectStreamRegexp = URI.regexp(['mms', 'rtsp', 'rtmp', 'rtmpt'])
21
26
 
27
+ class CacheMetaInfoDevice < CasheDevice::CacheDeviceBase
28
+ def initialize(expireDuration = 40*60, cacheMax=200)
29
+ super(expireDuration, cacheMax)
30
+ end
31
+
32
+ # return : [ data, key ]
33
+ # key : key to restore data.
34
+ def directRead(pid)
35
+ data = BBCNet::MetaInfo.new(pid).update
36
+ [ data, data ]
37
+ end
38
+
39
+ def self.read(url)
40
+ pid = BBCNet.extractPid(url)
41
+ self.instance.read(pid)
42
+ end
43
+ end
22
44
 
23
45
  #------------------------------------------------------------------------
24
46
  # get stream metadata
@@ -28,8 +50,6 @@ class BBCNet
28
50
  class MetaInfo
29
51
  def self.get(url)
30
52
  pid = BBCNet.extractPid(url)
31
- # info = @@cachePid[pid]
32
- # return info if info
33
53
  self.new(pid)
34
54
  end
35
55
 
@@ -164,10 +184,13 @@ class BBCNet
164
184
 
165
185
  # .asf/.ram => .wma/.ra
166
186
  def self.getDirectStreamUrl(url)
167
- unless url[DirectStreamRegexp] then
168
- res = self.read(url)
169
- newSrc= res[ DirectStreamRegexp ]
170
- url = newSrc unless newSrc.nil?
187
+ old = ''
188
+ while url != old and not url[DirectStreamRegexp] do
189
+ old = url
190
+ res = BBCNet.read(url)
191
+ url = res[ DirectStreamRegexp ] or res[ UrlRegexp ] or old
192
+ $log.debug { "new url:#{url}, old url:#{old}" }
193
+ $log.debug { "no url in response '#{res}'" } if url[ UrlRegexp ]
171
194
  end
172
195
  url
173
196
  end
@@ -181,11 +204,12 @@ class BBCNet
181
204
 
182
205
  uri = URI.parse(url)
183
206
  res = Net::HTTP.start(uri.host, uri.port) do |http|
184
- http.get(uri.path, header)
207
+ http.get(uri.request_uri, header)
185
208
  end
186
209
  res.body
187
210
  end
188
211
 
212
+
189
213
  def self.setProxy(url)
190
214
  @@proxy = url
191
215
  end
@@ -208,6 +232,8 @@ end
208
232
  module AudioFile
209
233
  # return seconds of audio file duration.
210
234
  def self.getDuration(file)
235
+ return 0 unless File.exist?(file)
236
+
211
237
  case file[/\.\w+$/].downcase
212
238
  when ".mp3"
213
239
  cmd = "| exiftool -S -Duration %s" % file.shellescape
@@ -216,6 +242,7 @@ module AudioFile
216
242
  end
217
243
  msg = open(cmd) do |f| f.read end
218
244
  a = msg.scan(/(?:(\d+):){0,2}(\d+)/)[0]
245
+ return 0 unless a
219
246
  i = -1
220
247
  a.reverse.inject(0) do |s, d|
221
248
  i += 1
@@ -0,0 +1,115 @@
1
+ #
2
+ #
3
+ #
4
+ module CasheDevice
5
+ class CacheDeviceBase
6
+ include Singleton
7
+
8
+ class CachedData
9
+ attr_accessor :expireTime, :url, :key
10
+ end
11
+
12
+ attr_accessor :expireDuration, :cacheMax
13
+ def initialize(expireDuration = 26*60, cacheMax=10)
14
+ @expireDuration = expireDuration # 12 minutes
15
+ @cache = Hash.new
16
+ @cacheLRU = [] # Least Recently Used
17
+ @cacheMax = cacheMax
18
+ end
19
+
20
+ # return : data, key
21
+ # key : key to restore data.
22
+ def directRead(url)
23
+ raise "Implement directRead method."
24
+ end
25
+
26
+ # return : data
27
+ # restore data from key.
28
+ def restoreCache(key)
29
+ key
30
+ end
31
+
32
+ def read(url)
33
+ startTime = Time.now
34
+ cached = @cache[url]
35
+ if cached and cached.expireTime > startTime then
36
+ @cacheLRU.delete(cached)
37
+ @cacheLRU.push(cached)
38
+ data = restoreCache(cached.key)
39
+ $log.debug { "cached %s: Time %f sec" %
40
+ [self.class.name, (Time.now - startTime).to_f] }
41
+ return data
42
+ end
43
+ if @cacheLRU.size >= @cacheMax then
44
+ oldest = @cacheLRU.shift
45
+ @cache.delete(oldest)
46
+ end
47
+ cached = CachedData.new
48
+ cached.url = url
49
+ cached.expireTime = startTime + @expireDuration
50
+ data, cached.key = directRead(url)
51
+ @cache[url] = cached
52
+ @cacheLRU.push(cached)
53
+ $log.debug {"direct read %s: Time %f sec" %
54
+ [self.class.name, (Time.now - startTime).to_f] }
55
+ data
56
+ end
57
+
58
+
59
+ def self.read(url)
60
+ self.instance.read(url)
61
+ end
62
+ end
63
+ end
64
+
65
+
66
+ #
67
+ # practical implementations.
68
+ #
69
+ class CacheRssDevice < CasheDevice::CacheDeviceBase
70
+ def initialize(expireDuration = 12*60, cacheMax=6)
71
+ super(expireDuration, cacheMax)
72
+ end
73
+
74
+ # return : [ data, key ]
75
+ # key : key to restore data.
76
+ def directRead(url)
77
+ data = RSS::Parser.parse(CacheHttpDiskDevice.read(url))
78
+ [ data, data ]
79
+ end
80
+ end
81
+
82
+
83
+ class CacheHttpDiskDevice < CasheDevice::CacheDeviceBase
84
+ def initialize(expireDuration = 12*60, cacheMax=30)
85
+ super(expireDuration, cacheMax)
86
+ @tmpdir = Dir.tmpdir + '/bbc_cache'
87
+ FileUtils.mkdir_p(@tmpdir)
88
+ end
89
+
90
+ # return : data
91
+ # restore data from key.
92
+ def restoreCache(key)
93
+ IO.read(key)
94
+ end
95
+
96
+ # return : [ data, key ]
97
+ # key : key to restore data.
98
+ def directRead(url)
99
+ puts "directRead(): " + self.class.name
100
+ tmpfname = tempFileName(url)
101
+
102
+ if File.exist?(tmpfname) and
103
+ File.ctime(tmpfname) + @expireDuration > Time.now then
104
+ data = IO.read(tmpfname)
105
+ else
106
+ data = BBCNet.read(url)
107
+ open(tmpfname, "w") do |f| f.write(data) end
108
+ end
109
+ [ data, tmpfname ]
110
+ end
111
+
112
+ def tempFileName(url)
113
+ File.join(@tmpdir, url.scan(%r{\w+/\w+$}).first.gsub(%r|/|, '_'))
114
+ end
115
+ end
@@ -71,6 +71,7 @@ class DownloadProcess < Qt::Process
71
71
  end
72
72
 
73
73
  attr_reader :sourceUrl, :rawFileName
74
+ attr_reader :rawFilePath, :outFilePath
74
75
 
75
76
  def initialize(parent, metaInfo, fName)
76
77
  super(parent)
@@ -82,7 +83,11 @@ class DownloadProcess < Qt::Process
82
83
  @rawFileName = fName
83
84
  @rawFilePath = File.join(IRecSettings.rawDownloadDir.path, fName)
84
85
  mkdirSavePath(@rawFilePath)
86
+ @outFileName = @rawFileName.gsub(/\.\w+$/i, '.mp3')
87
+ @outFilePath = File.join(IRecSettings.downloadDir.path, @outFileName)
88
+ mkdirSavePath(@outFilePath)
85
89
  $log.debug { "@rawFilePath : #{@rawFilePath }" }
90
+ $log.debug { "@outFilePath : #{@outFilePath}" }
86
91
 
87
92
  @stage = DOWNLOAD
88
93
  @status = INITIAL
@@ -94,24 +99,20 @@ class DownloadProcess < Qt::Process
94
99
  def beginTask
95
100
  # 1st stage : download
96
101
  if File.exist?(@rawFilePath) then
97
- @stage = CONVERT
98
- @outFileName = @rawFileName.gsub(/\.\w+$/i, '.mp3')
99
- @outFilePath = File.join(IRecSettings.downloadDir.path, @outFileName)
102
+ @stage = DOWNLOAD
103
+ @downNG = true
104
+ self.status = RUNNING
105
+ @currentCommand = makeMPlayerDownloadCmd
106
+ taskFinished(1,0)
100
107
  $log.debug { "@rawFilePath duration:" + AudioFile.getDuration(@rawFilePath).to_s }
101
108
  $log.debug { "@outFilePath duration:" + AudioFile.getDuration(@outFilePath).to_s }
102
109
  $log.debug { "metainf duration:" + @metaInfo.duration.to_s }
103
- if File.exist?(@outFilePath) then
104
- taskFinished(1,0)
105
- else
106
- $log.debug { "begin convert" }
107
- beginConvert
108
- return
110
+ if self.error? then
111
+ beginDownload
109
112
  end
110
113
  else
111
114
  beginDownload
112
115
  end
113
-
114
- # beginDownload
115
116
  end
116
117
 
117
118
 
@@ -138,6 +139,18 @@ class DownloadProcess < Qt::Process
138
139
  end
139
140
  end
140
141
 
142
+ def removeData
143
+ if running? then
144
+ self.terminate
145
+ end
146
+ begin
147
+ File.delete(@rawFilePath)
148
+ File.delete(@outFilePath)
149
+ rescue => e
150
+ $log.info { e }
151
+ end
152
+ end
153
+
141
154
  def updateLapse
142
155
  taskItem.updateTime(lapse)
143
156
  end
@@ -223,9 +236,6 @@ class DownloadProcess < Qt::Process
223
236
  def beginConvert
224
237
  @stage = CONVERT
225
238
  self.status = RUNNING
226
- @outFileName = @rawFileName.gsub(/\.\w+$/i, '.mp3')
227
- @outFilePath = File.join(IRecSettings.downloadDir.path, @outFileName)
228
- mkdirSavePath(@outFilePath)
229
239
 
230
240
  cmdMsg = "nice -n 19 ffmpeg -i %s -f mp3 %s" %
231
241
  [ @rawFilePath.shellescape, @outFilePath.shellescape]
@@ -276,20 +286,23 @@ class DownloadProcess < Qt::Process
276
286
  def checkErroredStatus
277
287
  case @stage
278
288
  when DOWNLOAD
279
- return @downNG if @downNG
289
+ return @downNG unless @downNG
280
290
  begin
281
291
  $log.debug { "check duration for download." }
282
- AudioFile.getDuration(@rawFilePath) < @metaInfo.duration - 5
292
+ rawDuration = AudioFile.getDuration(@rawFilePath)
293
+ return true if rawDuration < @metaInfo.duration - 100
294
+ $log.debug { "check file size for download." }
295
+ File.size(@rawFilePath) < @metaInfo.duration * 5500
283
296
  rescue => e
284
- $log.info{ e }
297
+ $log.warn { e }
285
298
  true
286
299
  end
287
300
  when CONVERT
288
301
  begin
289
302
  $log.debug { "check duration for convert." }
290
- AudioFile.getDuration(@outFilePath) < @metaInfo.duration - 40
303
+ AudioFile.getDuration(@outFilePath) < AudioFile.getDuration(@rawFilePath) - 10
291
304
  rescue => e
292
- $log.info{ e }
305
+ $log.warn { e }
293
306
  true
294
307
  end
295
308
  else
@@ -0,0 +1,264 @@
1
+ #****************************************************************************
2
+ #** Ruby Resource object code
3
+ #**
4
+ #** Created: Wed Aug 18 06:13:07 2010
5
+ #** by: The Ruby Resource Compiler for Qt version 4.5.3
6
+ #**
7
+ #** WARNING! All changes made in this file will be lost!
8
+ #****************************************************************************/
9
+
10
+ class QCleanupResources__dest_class__
11
+ def self.qt_resource_data
12
+ return @@qt_resource_data
13
+ end
14
+
15
+ def self.qt_resource_name
16
+ return @@qt_resource_name
17
+ end
18
+
19
+ def self.qt_resource_struct
20
+ return @@qt_resource_struct
21
+ end
22
+
23
+ @@qt_resource_data = [
24
+ # /home/kaji/dev/projects/ruby/irecorder/resources/images/play-22.png
25
+ 0x0,0x0,0x4,0x1a,
26
+ 0x89,
27
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
28
+ 0x0,0x0,0x16,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0xc4,0xb4,0x6c,0x3b,
29
+ 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
30
+ 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x6,0x58,0x0,0x0,0x6,0x58,
31
+ 0x1,0x1f,0x87,0x2,0xea,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,
32
+ 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,
33
+ 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0x3,0x97,0x49,0x44,
34
+ 0x41,0x54,0x38,0x8d,0xad,0x93,0x5d,0x68,0x1c,0x55,0x18,0x86,0x9f,0x6f,0x76,0x36,
35
+ 0x3f,0x64,0x93,0x4d,0xeb,0x8a,0x92,0x34,0x8d,0x6d,0x69,0x25,0x58,0xcb,0x60,0x88,
36
+ 0x20,0xf8,0x83,0x54,0xab,0x86,0x80,0x2b,0x29,0xfd,0xb1,0x82,0x5a,0x2f,0x3a,0x78,
37
+ 0x21,0x96,0xea,0x8d,0x28,0xde,0x68,0xbd,0xf3,0x4a,0x68,0xbc,0x28,0xa,0xa2,0x44,
38
+ 0x2f,0xca,0x5e,0xa8,0x14,0x4c,0xb,0xda,0x60,0x29,0xad,0x21,0xfd,0xb3,0x95,0x62,
39
+ 0x6b,0xb3,0x9,0xd2,0xfc,0x6c,0x32,0x3b,0xb3,0x3b,0xbb,0x3b,0x3b,0xe7,0x78,0x91,
40
+ 0x5d,0xd9,0x6c,0x9a,0xd4,0x82,0x2f,0x7c,0xcc,0x99,0xf9,0x5e,0x1e,0xbe,0xf7,0xcc,
41
+ 0x39,0x68,0xad,0xd1,0x5a,0xe3,0xb6,0xbd,0x28,0xd5,0xf5,0xff,0x51,0x6,0x80,0x17,
42
+ 0x4f,0x76,0x1b,0x4f,0x6e,0x9b,0xf3,0x12,0x3b,0xdf,0xa0,0x4e,0x62,0x5b,0x3,0x62,
43
+ 0x5b,0xc3,0x62,0x5b,0x9d,0xf5,0xbd,0xd5,0x64,0x54,0x9e,0x5a,0xda,0x9a,0xd7,0x44,
44
+ 0xac,0x8d,0x47,0xbc,0x78,0xb2,0xb7,0xce,0x33,0x8,0xec,0x6,0xce,0x89,0x6d,0xf5,
45
+ 0xdd,0x15,0x38,0xe6,0xa4,0x26,0xf4,0xad,0x85,0x8c,0xba,0x92,0x8e,0x4a,0x67,0xe2,
46
+ 0x98,0x17,0x4f,0xb6,0xd7,0xe,0xd,0x60,0x18,0xc6,0x7d,0xc0,0x29,0xb1,0xad,0xbd,
47
+ 0x77,0x33,0x31,0x34,0x45,0x7f,0xd7,0x9e,0xf,0x19,0x77,0x3d,0x66,0xe4,0x6b,0x2f,
48
+ 0x9e,0x34,0x6b,0x8d,0x87,0xf7,0x1f,0x92,0xd6,0xd6,0x58,0x14,0xf8,0x46,0x6c,0xeb,
49
+ 0x63,0xb1,0x2d,0xf9,0x4f,0x60,0x71,0xf2,0x67,0x64,0x6d,0x2b,0xda,0x2f,0x42,0x39,
50
+ 0xec,0x7,0xbe,0xf3,0xe2,0xc9,0x68,0xb5,0xdf,0x9e,0x88,0xf3,0xc9,0x81,0x77,0x8c,
51
+ 0xae,0x8e,0xe,0xd,0xbc,0x7,0x1c,0x13,0xdb,0x8a,0xdd,0x11,0x1c,0x5e,0xfe,0x6b,
52
+ 0x44,0xee,0xad,0xdd,0x1,0x5e,0x2,0xde,0xaf,0xbe,0xcc,0x97,0x5c,0x82,0xa8,0xe2,
53
+ 0xad,0x7d,0xaf,0xcb,0x23,0x5b,0xb7,0x2,0x24,0x81,0x5f,0xc5,0xb6,0xba,0x57,0xdf,
54
+ 0x8a,0x50,0x9d,0x45,0x2b,0x80,0x9,0xe0,0xc7,0xca,0xd7,0x37,0xa3,0x4a,0x22,0x0,
55
+ 0x99,0x92,0xcb,0x6c,0x31,0xcb,0x42,0x98,0xe3,0x85,0x1d,0xcf,0xb0,0xfd,0xa9,0x27,
56
+ 0x40,0x78,0x18,0xe1,0x37,0xb1,0xad,0xc7,0x57,0x4,0xc7,0x9c,0xd4,0x1c,0x62,0xa4,
57
+ 0x81,0x76,0x60,0x0,0x38,0x4,0x24,0x7a,0x9c,0xe8,0x26,0x80,0xf9,0xc0,0x25,0x13,
58
+ 0x64,0xff,0xad,0x2d,0xdb,0x36,0xd3,0x3f,0xf0,0x2c,0xa6,0x69,0xae,0x5,0x4e,0x8a,
59
+ 0x6d,0xed,0xbf,0xfd,0xc4,0x0,0x66,0xe4,0x3c,0x22,0x6d,0xc0,0x83,0xc0,0x11,0x40,
60
+ 0xc5,0x3,0x23,0xe,0x90,0x53,0x3e,0xb9,0x70,0x69,0x25,0xba,0x12,0xf4,0xf,0xee,
61
+ 0x90,0x96,0xb6,0x16,0x13,0x38,0x2a,0xb6,0xf5,0xa9,0xd8,0x56,0x64,0x19,0x58,0xa7,
62
+ 0xa7,0x7f,0x91,0x44,0x1b,0x40,0x5f,0xcc,0x49,0xf9,0x80,0x13,0x18,0x3a,0x0,0x28,
63
+ 0x84,0x25,0xfc,0xb0,0x88,0x1f,0x16,0xc9,0x97,0xb,0x5c,0x70,0xfe,0x64,0x38,0x3d,
64
+ 0xc2,0xf,0xde,0x19,0xa,0x8f,0x35,0x4a,0x24,0xd1,0x0,0x70,0x10,0xf8,0x5e,0x6c,
65
+ 0x2b,0xbe,0xe4,0x48,0xe9,0x6c,0xfe,0xb4,0xac,0x89,0x1,0xf4,0x1,0x5f,0x1,0xf3,
66
+ 0xd3,0x4d,0xe1,0x34,0x40,0x36,0xc8,0xd3,0x6c,0x34,0x32,0x53,0x74,0xb8,0xe2,0xde,
67
+ 0x20,0x1b,0xe4,0x6b,0x92,0x2,0x8f,0xb6,0xc0,0x45,0x81,0x74,0xf1,0x79,0x84,0x93,
68
+ 0x4b,0xc0,0xc0,0x98,0x76,0x72,0x61,0x5,0xc,0x30,0x7a,0x3d,0x56,0xd6,0x0,0x27,
69
+ 0x66,0xce,0xd1,0x18,0x6d,0xa0,0xa8,0x82,0xfa,0xff,0xb4,0xa8,0x5c,0x8,0xb,0xe5,
70
+ 0xc5,0xb5,0x70,0x73,0xc9,0x56,0xc4,0x9c,0x54,0x1e,0xa5,0x2f,0x1,0x56,0xe5,0x82,
71
+ 0x7c,0x56,0xdb,0x5f,0x11,0x3a,0x55,0x82,0x51,0x57,0xe3,0x86,0xa,0xf8,0x0,0xc5,
72
+ 0x4e,0x13,0x20,0xb7,0xf9,0xb5,0x6,0xa3,0x67,0xfd,0x41,0x3d,0x97,0xdd,0x43,0x63,
73
+ 0xb4,0x83,0x62,0xa0,0x81,0x87,0x62,0x4e,0xea,0x2c,0xb6,0x5,0x40,0xa3,0xa,0x41,
74
+ 0x84,0x92,0x61,0xa0,0xa9,0x5c,0x3a,0xa5,0xe1,0xb2,0xf,0x13,0x45,0x10,0x66,0x80,
75
+ 0x5d,0x7a,0x68,0xfc,0x67,0x0,0xd3,0xdf,0xf5,0x91,0x61,0xbe,0xfc,0xf4,0x55,0x75,
76
+ 0x75,0x72,0x3,0xa1,0x2,0x20,0xad,0x7c,0xd6,0x19,0xcd,0x5d,0xc0,0xf9,0xea,0x50,
77
+ 0x9b,0x4a,0x5,0xc2,0x88,0x41,0x26,0x62,0x32,0x13,0x6d,0x80,0x9c,0x82,0x31,0xf,
78
+ 0xb2,0x21,0x8,0x23,0x68,0xf6,0xe9,0xa1,0xf1,0xe9,0xaa,0xdf,0x30,0xd6,0x25,0xbe,
79
+ 0x8d,0xf4,0x74,0x6f,0xd0,0x53,0xb3,0xe8,0xa9,0x59,0x26,0x7c,0x87,0x1b,0x2a,0xe7,
80
+ 0xfd,0xad,0xa,0xe3,0xb5,0x69,0x37,0x86,0x5,0x3a,0xc3,0x12,0xf7,0x84,0x1,0xd,
81
+ 0x53,0x5,0x18,0xcd,0x6a,0xb2,0x95,0xe8,0x9a,0xe7,0x6a,0xa1,0x0,0xa6,0x9a,0x98,
82
+ 0xd9,0xae,0x26,0x17,0xa1,0x37,0x17,0x66,0xb9,0xae,0x72,0x4a,0xa1,0xdf,0xde,0xe2,
83
+ 0x1e,0x9f,0xac,0x35,0x3e,0x60,0x78,0x64,0x54,0x13,0x97,0xae,0x41,0x69,0xaa,0x4,
84
+ 0xc2,0x34,0xb0,0xbb,0x1a,0xbd,0x5e,0x66,0x78,0xea,0xe2,0x17,0x18,0x72,0x20,0xed,
85
+ 0xcd,0x37,0x4f,0x6a,0x7f,0xac,0x88,0xfa,0x7c,0x30,0x77,0xfa,0xe8,0x32,0x63,0xb9,
86
+ 0xc4,0xf1,0xb,0xad,0x64,0x5c,0xd,0xf0,0x13,0x9a,0x57,0xea,0xa7,0xac,0x95,0x68,
87
+ 0xad,0xf1,0xe2,0xc9,0xe8,0x1f,0xca,0xbd,0xbf,0xd7,0x3d,0x91,0x5e,0x66,0xb0,0xad,
88
+ 0x2f,0x81,0x57,0x4d,0x53,0xeb,0x72,0x59,0x34,0xf0,0x21,0x70,0x58,0xf,0x8d,0xab,
89
+ 0x95,0xa0,0xb0,0x78,0xb4,0x89,0x39,0xa9,0xa0,0x17,0x96,0x41,0x2b,0xd2,0x0,0xe5,
90
+ 0x50,0x6e,0x1,0x7b,0x56,0x8a,0x7e,0x5b,0xf0,0x1d,0x34,0xc,0x18,0x68,0xde,0x5d,
91
+ 0x2d,0x7a,0xbd,0xfe,0x1,0x33,0xdd,0xd9,0xd0,0xad,0x52,0xa4,0x3,0x0,0x0,0x0,
92
+ 0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
93
+ # /home/kaji/dev/projects/ruby/irecorder/resources/images/irecorder-22.png
94
+ 0x0,0x0,0x4,0x45,
95
+ 0x89,
96
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
97
+ 0x0,0x0,0x16,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0xc4,0xb4,0x6c,0x3b,
98
+ 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
99
+ 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x4,0xc2,0x0,0x0,0x4,0xc2,
100
+ 0x1,0xbc,0xcf,0x90,0x18,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,
101
+ 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,
102
+ 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0x3,0xc2,0x49,0x44,
103
+ 0x41,0x54,0x38,0x8d,0x95,0x95,0xdb,0x6b,0x9c,0x45,0x18,0xc6,0x7f,0xf3,0x9d,0xf6,
104
+ 0x94,0xc3,0x6e,0x37,0x87,0x26,0x4d,0x9b,0x3,0x6d,0x2,0x89,0xb1,0x8a,0x62,0x54,
105
+ 0xaa,0x78,0x0,0x4f,0xad,0x82,0x8,0x51,0x29,0xf8,0x7,0x28,0xf5,0x32,0x17,0x82,
106
+ 0xda,0x3b,0xb,0xde,0xf4,0x42,0xaf,0x14,0x2f,0x2d,0x8,0x56,0xbc,0xf0,0x84,0xd6,
107
+ 0x4a,0xb5,0x45,0x68,0x2c,0xa6,0x11,0xa5,0xb5,0x35,0x36,0x4d,0xb3,0x1b,0xb3,0x9b,
108
+ 0xec,0x66,0x93,0x3d,0xcc,0x7c,0x3b,0xe3,0xc5,0x66,0x77,0xb3,0x49,0xb0,0xe6,0xfd,
109
+ 0x98,0x9b,0x99,0x79,0x9f,0x79,0xe6,0x79,0xde,0x6f,0x5e,0x31,0x31,0x31,0x61,0xd8,
110
+ 0x14,0xc6,0x6c,0x99,0xda,0x71,0x38,0x52,0x4a,0x2c,0x3,0x87,0xa7,0x7a,0x68,0x2a,
111
+ 0x3a,0xeb,0xc8,0x70,0x76,0x64,0x81,0x64,0x4b,0x61,0xc7,0x80,0x55,0x52,0x8e,0x52,
112
+ 0x8a,0x80,0xb2,0xd9,0xbf,0xd0,0x84,0x53,0xb6,0x6a,0x1b,0x8e,0x5e,0xe8,0xe3,0x8b,
113
+ 0xe1,0x39,0xa6,0xbb,0x96,0xb6,0x4d,0xbc,0x2d,0x63,0xa5,0x14,0x96,0xd2,0x68,0xea,
114
+ 0x9,0xd2,0xd6,0x68,0xa1,0x79,0xf6,0xb7,0xbd,0xc4,0xb2,0xe,0x67,0xfa,0xe7,0x30,
115
+ 0x62,0x67,0xcc,0x2b,0x52,0xf8,0xe,0xb6,0xa9,0xb3,0x15,0xc0,0xa9,0xa1,0xab,0x3c,
116
+ 0x33,0xd3,0xc7,0xa1,0x9b,0x5d,0xc4,0x57,0x3,0x7c,0x32,0x78,0x95,0xee,0xac,0x60,
117
+ 0xfc,0xd7,0x50,0x3,0x40,0xc1,0x35,0x24,0x9b,0x35,0x37,0x62,0x3e,0x93,0x3d,0x92,
118
+ 0xea,0xa5,0xed,0x91,0x91,0x91,0xe3,0x12,0x9f,0x35,0x4f,0x31,0x1b,0xc9,0x71,0xbd,
119
+ 0x25,0xc3,0x1f,0xad,0x69,0xa6,0x62,0xb,0x4c,0xc6,0x93,0xec,0x2e,0x84,0x19,0xce,
120
+ 0xc4,0x19,0x5a,0x8a,0x32,0x1b,0x5c,0xe2,0xce,0xa4,0x83,0xa3,0x45,0x6d,0x4,0x7d,
121
+ 0x41,0xdb,0x9a,0xc5,0xfe,0xb4,0xc3,0x68,0xd2,0xe1,0x5a,0x4b,0x89,0x15,0xdb,0x47,
122
+ 0x8c,0x8f,0x8f,0x9b,0xff,0xd2,0x4d,0x18,0x38,0x92,0x38,0xc0,0xe3,0x8b,0x7d,0xe4,
123
+ 0x6d,0x85,0xb3,0x7a,0x13,0x5d,0x5e,0x23,0xe7,0x69,0x92,0x61,0x9f,0x56,0x69,0xd1,
124
+ 0x91,0x77,0x6a,0xfb,0x17,0x43,0x3e,0x27,0xef,0x4e,0x55,0xa4,0xb8,0x5d,0x9c,0x6e,
125
+ 0xff,0x9d,0x5b,0x5e,0x96,0xa3,0xf3,0xa3,0xd8,0xa1,0x7e,0x54,0x71,0x8e,0xd9,0x70,
126
+ 0x82,0x8f,0x6,0x53,0x18,0x63,0xe8,0x5b,0xd,0xf0,0xf2,0x4c,0x9c,0xf6,0xa2,0x43,
127
+ 0x7b,0xc1,0xa1,0x3d,0xb3,0x6e,0x1e,0xc0,0xbb,0x7f,0x3d,0x49,0xc0,0x54,0x4e,0xb6,
128
+ 0x8c,0xe0,0xad,0xde,0x33,0xa4,0x9d,0x7c,0xd,0xfc,0xc7,0xd0,0xc,0xb7,0xf6,0x64,
129
+ 0x79,0x7d,0xfe,0x7e,0x22,0xc1,0xbd,0xf4,0x94,0x6d,0x54,0x69,0x1e,0x23,0xe0,0xcf,
130
+ 0x80,0x62,0x32,0xea,0xf1,0x74,0x32,0x6,0x40,0x67,0xce,0xc6,0x92,0x52,0x22,0xa5,
131
+ 0xc4,0x33,0x36,0x41,0xed,0x10,0xd4,0xe,0x25,0xcb,0xc7,0x2b,0x9,0x94,0x52,0xd,
132
+ 0xe3,0x8a,0xbd,0xc0,0x9b,0x5d,0xdf,0x92,0x70,0xb3,0x74,0x9a,0x6e,0x5e,0x4d,0xdc,
133
+ 0x87,0x5d,0x32,0x28,0xa5,0x68,0x2a,0xd5,0xcb,0x26,0x8b,0xc4,0xaa,0x26,0x6d,0xc,
134
+ 0x63,0xc,0xbe,0xef,0x6f,0x1,0x56,0x4a,0x91,0xd4,0x19,0xde,0x88,0x7f,0xcd,0x15,
135
+ 0x6f,0x81,0xbb,0xf2,0xdd,0x3c,0x91,0x1e,0xe0,0xe0,0x52,0x98,0x43,0xcb,0x51,0x0,
136
+ 0x34,0x86,0xeb,0x4e,0xae,0x2e,0xc5,0x66,0x3,0x95,0x52,0x48,0xb3,0xbd,0xfe,0x83,
137
+ 0x2a,0x4e,0xaf,0xda,0x85,0x1,0xe2,0x49,0x9f,0xa7,0xac,0x7d,0x54,0xf9,0x7e,0xdf,
138
+ 0x9c,0x22,0x69,0xd6,0xb6,0x37,0xaf,0xc6,0xd8,0xa8,0x2d,0x6b,0x8f,0xa8,0x3,0x1c,
139
+ 0xcb,0x3f,0x4,0xc0,0xb9,0xec,0x2f,0x44,0x75,0x11,0xcb,0xf2,0x50,0x42,0xf3,0x61,
140
+ 0xeb,0xc,0x3f,0x84,0xff,0x1,0xb9,0xc1,0xbc,0xcd,0xe1,0xfb,0x3e,0x4a,0x37,0xae,
141
+ 0xbd,0xa8,0xee,0xe1,0x15,0x35,0x46,0x41,0x4b,0xce,0x65,0x2e,0xd2,0x6f,0xdb,0xec,
142
+ 0x73,0x5b,0x0,0x70,0x8d,0xc5,0x50,0xb1,0x89,0x9f,0x9c,0x24,0x5,0x51,0xae,0x0,
143
+ 0x1b,0x63,0x1a,0xa4,0x30,0xa6,0x62,0x88,0x14,0x95,0xdb,0xd8,0x58,0x1c,0xd3,0x8f,
144
+ 0x72,0x58,0x8f,0xb2,0xac,0x57,0x39,0x9f,0x9d,0xe4,0xe,0x27,0x82,0x74,0xcb,0x64,
145
+ 0xb5,0xa4,0xd5,0x78,0x0,0x3c,0x56,0xec,0x24,0x50,0x16,0x9c,0x88,0x4c,0x6f,0x90,
146
+ 0x62,0xd3,0x5b,0xe0,0xfb,0x3e,0xa,0x45,0x8,0x97,0xe3,0xe2,0x8,0x63,0xc,0x70,
147
+ 0xc3,0x5f,0x64,0x2a,0x7b,0x99,0x7,0xdc,0x18,0x97,0xbc,0x14,0xef,0x4,0xa6,0x30,
148
+ 0xc6,0xf0,0x9c,0xdf,0xcb,0x6b,0x72,0x18,0x80,0x7,0x55,0x7,0x7b,0x8a,0x81,0xed,
149
+ 0xab,0xa2,0xa,0xdc,0xe2,0x7b,0x9c,0xe4,0x25,0xc6,0x18,0xe0,0x52,0xe9,0x6f,0xde,
150
+ 0x5f,0xf9,0x8a,0x87,0xbd,0x38,0xcd,0x96,0x8b,0xd6,0x1a,0x29,0x25,0x4a,0x29,0x3e,
151
+ 0x35,0xd7,0x98,0x12,0xe9,0x1a,0xbf,0x31,0xd5,0xb6,0x41,0xa,0xd7,0xd4,0x58,0x1b,
152
+ 0x63,0xe8,0x28,0x37,0x71,0xc2,0x7b,0x81,0xdd,0x22,0xca,0x77,0x85,0x69,0x3e,0xc8,
153
+ 0x9f,0x25,0xe6,0x39,0x4,0x85,0xd,0x80,0xd6,0xa6,0xc1,0x83,0x69,0x52,0x1c,0x24,
154
+ 0xe,0xc0,0xae,0xb2,0xb7,0x7d,0x55,0x38,0x58,0xbc,0xed,0x3d,0x4f,0xd8,0x72,0x39,
155
+ 0x95,0x3b,0xcf,0xc7,0xc5,0xb,0xcc,0x39,0x19,0xee,0x2d,0x77,0x42,0xb5,0x17,0x68,
156
+ 0x8d,0x2a,0xab,0x9a,0x37,0x9,0x3b,0x7,0x95,0x33,0x69,0xd3,0xc1,0x7a,0x55,0xd8,
157
+ 0xd4,0x9f,0xcd,0x88,0x8,0xa2,0xd1,0xbc,0xb7,0xfc,0xd,0x9f,0x95,0x2e,0x92,0x14,
158
+ 0x2b,0x20,0xa1,0x6c,0xfb,0x35,0xe0,0xaa,0x14,0xd5,0x48,0xe8,0x3a,0x70,0x3b,0xa1,
159
+ 0x3a,0xe3,0xcf,0xd7,0x2e,0x32,0x60,0x75,0x56,0x80,0xed,0x20,0xa7,0x57,0x7e,0xe6,
160
+ 0x4b,0x39,0x45,0xca,0xe4,0x6a,0xc9,0x45,0xa3,0x48,0x9b,0x4a,0xbb,0xca,0xea,0x62,
161
+ 0x83,0x37,0xb3,0x3a,0x43,0x3a,0x50,0x59,0xb3,0x8d,0x40,0xb8,0xae,0x6b,0xaa,0x8c,
162
+ 0xa3,0x22,0x82,0x59,0xff,0xa,0x28,0x8a,0xdb,0xfc,0x79,0xff,0xb7,0x35,0xfd,0xb,
163
+ 0xd8,0x36,0x1b,0x21,0xb5,0xda,0x41,0x63,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,
164
+ 0xae,0x42,0x60,0x82,
165
+ # /home/kaji/dev/projects/ruby/irecorder/resources/images/download-22.png
166
+ 0x0,0x0,0x2,0xe6,
167
+ 0x89,
168
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
169
+ 0x0,0x0,0x16,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0xc4,0xb4,0x6c,0x3b,
170
+ 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
171
+ 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x6,0x58,0x0,0x0,0x6,0x58,
172
+ 0x1,0x1f,0x87,0x2,0xea,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,
173
+ 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,
174
+ 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0x2,0x63,0x49,0x44,
175
+ 0x41,0x54,0x38,0x8d,0xb5,0x95,0xbd,0x6b,0x53,0x51,0x18,0x87,0x9f,0x73,0x6f,0x9a,
176
+ 0xa4,0x31,0x92,0x3a,0x85,0xb6,0x50,0x3f,0x28,0x4,0x29,0x14,0x41,0xdb,0xa2,0x6b,
177
+ 0xa2,0x9b,0x88,0x93,0x83,0xe2,0x22,0x82,0x2e,0xa,0xd2,0x4d,0x1b,0x21,0x2a,0x8,
178
+ 0x4e,0xd2,0xc1,0x3f,0xa0,0x8b,0x8b,0x83,0xa5,0x83,0x43,0x4,0x27,0x49,0x74,0x17,
179
+ 0xa,0x6a,0xab,0x60,0x9a,0xb8,0x98,0x92,0xf6,0x7e,0xe5,0x9e,0x73,0x1c,0x92,0xb4,
180
+ 0xf9,0xb8,0x9,0xb1,0xc5,0x3,0x87,0xf7,0x72,0xdf,0x73,0x1f,0x7e,0xef,0xef,0xf2,
181
+ 0xbe,0x47,0x68,0xad,0x9,0x5a,0xc9,0x5c,0x3e,0xa,0xcc,0x3,0x46,0xe0,0x1,0x50,
182
+ 0xc0,0xa7,0x4a,0x36,0xe3,0x4,0x25,0x45,0x10,0x38,0x99,0xcb,0x8b,0xf1,0x44,0xf4,
183
+ 0x9b,0x55,0x57,0x53,0xd1,0x11,0x43,0xb5,0xde,0xb7,0x9f,0x74,0xea,0x52,0xc4,0x46,
184
+ 0xcc,0x9f,0xe5,0x6d,0x67,0xba,0x92,0xcd,0xf4,0x40,0x42,0x7d,0xd4,0x24,0xb6,0xb6,
185
+ 0x9d,0x93,0x2b,0x77,0x2e,0x30,0x1a,0x36,0xcd,0xe,0x25,0xa2,0x11,0x6d,0x4f,0x72,
186
+ 0xe3,0xd5,0xc7,0x53,0x40,0x2,0xa8,0xe,0xb,0x6,0xa0,0xa6,0x35,0x8e,0xaf,0x10,
187
+ 0x1,0xb9,0x7a,0x1f,0xb,0x87,0x2,0x6f,0xfb,0x8a,0x50,0x9f,0xef,0x7d,0xa9,0x82,
188
+ 0x13,0xc3,0x80,0xff,0xfc,0x2f,0x70,0xb5,0xae,0x30,0x15,0x4,0x79,0xa1,0xe,0xab,
189
+ 0xd8,0xec,0x52,0xac,0xd1,0x7c,0xb7,0x7d,0x5c,0x79,0x8,0x8f,0xab,0xbe,0xc2,0xd0,
190
+ 0xfb,0x82,0x77,0xa5,0xe2,0xab,0xed,0x63,0x2b,0x8d,0x56,0x43,0x82,0x93,0xb9,0x7c,
191
+ 0x8a,0x46,0x43,0x28,0x20,0xa,0x50,0x95,0x1a,0x43,0x2b,0x34,0x8d,0x1f,0xf9,0xdb,
192
+ 0x93,0x4,0xe0,0xae,0x26,0x73,0xf9,0x1a,0x20,0x81,0xd5,0x4a,0x36,0x23,0x3b,0xc0,
193
+ 0xc2,0x34,0xee,0x6b,0xa9,0xee,0x9a,0xf1,0x88,0x8d,0x69,0xc8,0xd0,0x91,0xb0,0xfd,
194
+ 0xcb,0x93,0xa3,0x8,0x70,0x95,0xa6,0xbb,0x72,0x21,0x4,0xe1,0xf1,0x84,0x25,0x77,
195
+ 0xdd,0x97,0xda,0xf5,0xc3,0xca,0xf5,0x23,0xc0,0x79,0xa0,0xd0,0x1,0xd6,0x52,0x2d,
196
+ 0xa,0xd3,0x98,0x41,0x88,0xf9,0xf8,0xd9,0xa9,0xb8,0x18,0x31,0xb1,0x6,0x95,0x2b,
197
+ 0x20,0x36,0x3b,0x19,0x93,0xbb,0x2e,0x3b,0xc5,0x4d,0x47,0x8,0xf1,0xa4,0xbc,0x94,
198
+ 0x2e,0xb4,0xd2,0x7b,0x73,0xa0,0x92,0xcd,0x58,0x5a,0xaa,0x4b,0xd2,0xf2,0x3e,0xd4,
199
+ 0x8a,0x9b,0x8e,0xf6,0xfc,0x81,0x1e,0x2,0xb4,0xa0,0xf8,0xea,0x45,0x79,0x29,0x9d,
200
+ 0x6d,0xcf,0x75,0xc,0x98,0x4a,0x36,0xe3,0x22,0xd5,0x65,0xed,0x78,0x6b,0xb5,0xc2,
201
+ 0x86,0xa3,0x9c,0xfa,0x81,0xa0,0x3d,0xe0,0x26,0xdc,0xd7,0x52,0x5f,0xd3,0xae,0x7c,
202
+ 0x5d,0x2b,0x6c,0xb8,0xca,0xf2,0xfe,0x19,0xa,0x7d,0xa6,0x5b,0x6b,0x25,0x9f,0xbe,
203
+ 0x5f,0x16,0xa6,0x71,0x3b,0x3e,0x77,0x22,0x62,0x1e,0x8d,0xc,0xd,0xdd,0x3,0xa7,
204
+ 0x8a,0x25,0x13,0xb8,0x2,0xbc,0x5b,0x5f,0x98,0xb0,0xba,0xe0,0xcf,0x84,0x10,0x8b,
205
+ 0xf1,0xb9,0xe3,0x61,0x42,0x46,0x5f,0x68,0xaa,0x58,0x9a,0x2,0x66,0xd7,0x17,0x26,
206
+ 0xd6,0xda,0xad,0xb8,0xe,0xbc,0x1,0x6e,0xf6,0x58,0xf3,0x28,0xfd,0x10,0xa5,0x1f,
207
+ 0xef,0x7c,0xfe,0x51,0xdf,0x29,0xc,0x54,0xba,0xc,0xac,0xa6,0x8a,0xa5,0xc9,0x76,
208
+ 0x70,0xac,0x19,0xc7,0x82,0xca,0x2a,0x2f,0xa5,0x9f,0x6b,0xad,0x6f,0x21,0xf5,0x83,
209
+ 0x1,0xe5,0xc7,0x68,0x34,0x69,0xc,0x7a,0x5b,0x7a,0x3c,0x55,0x2c,0x9d,0x61,0xbf,
210
+ 0x8b,0xf7,0xe2,0xd8,0xc5,0xd3,0x5f,0x0,0x91,0x2a,0x96,0xce,0x75,0xe5,0x5b,0xcf,
211
+ 0xc7,0x9a,0xb1,0xa3,0xf3,0x5a,0xf7,0xd6,0xbd,0xe6,0x3e,0xe8,0x92,0x80,0xdd,0xe,
212
+ 0x5e,0x1,0x66,0x80,0x69,0x1a,0x57,0xdb,0x41,0xf7,0xdb,0xf5,0x85,0x89,0x2d,0x80,
213
+ 0xbf,0xa3,0x46,0x57,0x37,0xa5,0xde,0xc2,0x9f,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,
214
+ 0x44,0xae,0x42,0x60,0x82,
215
+ ]
216
+
217
+ @@qt_resource_name = [
218
+ # images
219
+ 0x0,0x6,
220
+ 0x7,0x3,0x7d,0xc3,
221
+ 0x0,0x69,
222
+ 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,
223
+ # play-22.png
224
+ 0x0,0xb,
225
+ 0x0,0xbb,0x6,0xc7,
226
+ 0x0,0x70,
227
+ 0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x2d,0x0,0x32,0x0,0x32,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
228
+ # irecorder-22.png
229
+ 0x0,0x10,
230
+ 0x4,0x98,0x2d,0x7,
231
+ 0x0,0x69,
232
+ 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2d,0x0,0x32,0x0,0x32,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
233
+ # download-22.png
234
+ 0x0,0xf,
235
+ 0xc,0xf2,0x54,0x7,
236
+ 0x0,0x64,
237
+ 0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x2d,0x0,0x32,0x0,0x32,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
238
+ ]
239
+
240
+ @@qt_resource_struct = [
241
+ # :
242
+ 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
243
+ # :/images
244
+ 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,
245
+ # :/images/play-22.png
246
+ 0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
247
+ # :/images/irecorder-22.png
248
+ 0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0x1e,
249
+ # :/images/download-22.png
250
+ 0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x8,0x67,
251
+ ]
252
+
253
+ def self.qInitResources()
254
+ Qt.qRegisterResourceData(0x01, QCleanupResources__dest_class__.qt_resource_struct.pack("C*"), QCleanupResources__dest_class__.qt_resource_name.pack("C*"), QCleanupResources__dest_class__.qt_resource_data.pack("C*"))
255
+ return 1
256
+ end
257
+ def self.qCleanupResources()
258
+ Qt.qUnregisterResourceData(0x01, QCleanupResources__dest_class__.qt_resource_struct.pack("C*"), QCleanupResources__dest_class__.qt_resource_name.pack("C*"), QCleanupResources__dest_class__.qt_resource_data.pack("C*"))
259
+ return 1
260
+ end
261
+
262
+ end
263
+
264
+ QCleanupResources__dest_class__.qInitResources()