video_converter 0.3.1 → 0.3.2
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.
|
@@ -62,10 +62,12 @@ module VideoConverter
|
|
|
62
62
|
# for the last chunks the last two pts are used
|
|
63
63
|
prl_pts, l_pts = `#{self.class.ffprobe_bin} -show_frames -select_streams #{self.class.select_streams} -print_format csv -loglevel fatal #{chunks.first} | tail -n2 2>&1`.split("\n").map { |l| l.split(',')[3].to_i }
|
|
64
64
|
next_chunk_pts = 2 * l_pts - prl_pts
|
|
65
|
+
time_base = `#{self.class.ffprobe_bin} -show_streams -select_streams #{self.class.select_streams} -loglevel fatal #{chunks.first} 2>&1`.match(/\ntime_base=1\/(\d+)/)[1].to_f
|
|
65
66
|
chunks.each do |chunk|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
pts = `#{self.class.ffprobe_bin} -show_frames -select_streams #{self.class.select_streams} -print_format csv -loglevel fatal #{chunk} | head -n1 2>&1`.split(',')[3].to_i
|
|
68
|
+
durations << (duration = (next_chunk_pts - pts) / time_base)
|
|
69
|
+
puts "chunk: #{chunk}, duration: #{duration}, next_chunk_pts: #{next_chunk_pts}, pts: #{pts}"
|
|
70
|
+
next_chunk_pts = pts
|
|
69
71
|
res = File.join(File.basename(output.chunks_dir), File.basename(chunk)) + "\n" + res
|
|
70
72
|
res = "#EXTINF:%0.2f,\n" % duration + res
|
|
71
73
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: video_converter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-03-
|
|
12
|
+
date: 2014-03-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: video_screenshoter
|
|
@@ -137,7 +137,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
137
137
|
version: '0'
|
|
138
138
|
segments:
|
|
139
139
|
- 0
|
|
140
|
-
hash:
|
|
140
|
+
hash: -2052745333442721331
|
|
141
141
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
142
|
none: false
|
|
143
143
|
requirements:
|
|
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
146
|
version: '0'
|
|
147
147
|
segments:
|
|
148
148
|
- 0
|
|
149
|
-
hash:
|
|
149
|
+
hash: -2052745333442721331
|
|
150
150
|
requirements:
|
|
151
151
|
- ffmpeg, version 1.2 or greated configured with libx264 and libfaac
|
|
152
152
|
- live_segmenter to convert to hls
|