video_transcoding 0.8.0 → 0.8.1
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.
- checksums.yaml +4 -4
- data/README.md +7 -0
- data/bin/query-handbrake-log +6 -2
- data/lib/video_transcoding/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29eebc020f0cc27788a421b97f279470c878e921
|
4
|
+
data.tar.gz: 9be1bbc36a975368fe8728a90e5f48bb07867ddc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 766b708eed7dce151ced3d97608559d220c184aa190430821338e58732b7d9e246017642e750e2446a2a78127478899c98b5760e048151b767d08bf272b0e260
|
7
|
+
data.tar.gz: 176e9563911cdeddf3ece35049ed91b418317f61fe8287a4c70af476a031afdcd6ef005d01dd2b4f9d6ea4d6ad20e345eadbc28c05a9a82b5198004fd81ea897
|
data/README.md
CHANGED
@@ -637,6 +637,13 @@ For a few problematic videos, I have to apply options like `--force-rate 23.976
|
|
637
637
|
|
638
638
|
## History
|
639
639
|
|
640
|
+
### 0.8.1
|
641
|
+
|
642
|
+
Thursday, April 28, 2016
|
643
|
+
|
644
|
+
* Fix a bug where `query-handbrake-log` reported the wrong `time` or `speed` when parsing .log files containing output from HandBrake subtitle scan mode, i.e. when using `--burn-subtitle scan` or `--force-subtitle scan` from `transcode-video`. Via #46 from @martinpickett.
|
645
|
+
* Fix a bug where `query-handbrake-log ratefactor` failed if the number it was searching for was less than 10. This was due to HandBrake unexpectedly inserting a space before that number. Honestly, I doubt this ever happend before the new ratecontrol system debuted in 0.6.0. That's how good the new ratecontrol system is. #61 from @bmhayward
|
646
|
+
|
640
647
|
### 0.8.0
|
641
648
|
|
642
649
|
Sunday, April 24, 2016
|
data/bin/query-handbrake-log
CHANGED
@@ -132,7 +132,11 @@ HERE
|
|
132
132
|
if fps_line.nil?
|
133
133
|
fps_line = line
|
134
134
|
elsif fps_line_2.nil?
|
135
|
-
|
135
|
+
if fps_line =~ / ([0.]+) fps$/
|
136
|
+
fps_line = line
|
137
|
+
else
|
138
|
+
fps_line_2 = line
|
139
|
+
end
|
136
140
|
end
|
137
141
|
end
|
138
142
|
|
@@ -213,7 +217,7 @@ HERE
|
|
213
217
|
else
|
214
218
|
Console.debug ratefactor_line
|
215
219
|
|
216
|
-
if ratefactor_line =~ /Avg QP:([0-9.]+)/
|
220
|
+
if ratefactor_line =~ /Avg QP: ?([0-9.]+)/
|
217
221
|
report << "#{$1} #{video}"
|
218
222
|
else
|
219
223
|
fail "ratefactor not found: #{log}"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: video_transcoding
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Don Melton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
Video Transcoding is a package of tools to transcode, inspect
|