video_transcoding 0.17.0 → 0.17.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 +6 -0
- data/bin/transcode-video +2 -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: df693efb739a9283efb0f92635af68518dd906fc
|
4
|
+
data.tar.gz: 6aa2c5a3cd3d938cb4be5b372613e5dbdf8c148a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bb78a0811a0a25f7ddb5b531ded2919d33dc3f577e4ac8645188fca1d79defef2faeee96b6c4bf1f99403af467de44bea092ee4d8b2efa87209719ce33b9268
|
7
|
+
data.tar.gz: b3ddb903aeb93338964aa3342734fa7e25890737b9b0beb3bf25ebbf90115fd8e2ba2dcc3ee813b6709ee468686c6d9a033d388b4623fd772830a518c4de2807
|
data/README.md
CHANGED
@@ -660,6 +660,12 @@ For a few problematic videos, I have to apply options like `--force-rate 23.976
|
|
660
660
|
|
661
661
|
## History
|
662
662
|
|
663
|
+
### [0.17.1](https://github.com/donmelton/video_transcoding/releases/tag/0.17.1)
|
664
|
+
|
665
|
+
Wednesday, February 22, 2017
|
666
|
+
|
667
|
+
* Modify `transcode-video` to use binary file mode when reading and writing console and log output from `HandBrakeCLI`. This eliminates redundant information and "console spew" on Windows by suppressing the EOL <-> CRLF conversion. Thanks, [@samhutchins](https://github.com/samhutchins)! Via [ #130](https://github.com/donmelton/video_transcoding/issues/130).
|
668
|
+
|
663
669
|
### [0.17.0](https://github.com/donmelton/video_transcoding/releases/tag/0.17.0)
|
664
670
|
|
665
671
|
Thursday, February 16, 2017
|
data/bin/transcode-video
CHANGED
@@ -1267,11 +1267,11 @@ HERE
|
|
1267
1267
|
end
|
1268
1268
|
|
1269
1269
|
Console.debug handbrake_command
|
1270
|
-
log_file = @log ? File.new(handbrake_options['output'] + '.log', '
|
1270
|
+
log_file = @log ? File.new(handbrake_options['output'] + '.log', 'wb') : nil
|
1271
1271
|
Console.info 'Transcoding with HandBrakeCLI...'
|
1272
1272
|
|
1273
1273
|
begin
|
1274
|
-
IO.popen(handbrake_command, :err=>[:child, :out]) do |io|
|
1274
|
+
IO.popen(handbrake_command, 'rb', :err=>[:child, :out]) do |io|
|
1275
1275
|
Signal.trap 'INT' do
|
1276
1276
|
Process.kill 'INT', io.pid
|
1277
1277
|
end
|
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.17.
|
4
|
+
version: 0.17.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: 2017-02-
|
11
|
+
date: 2017-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
Video Transcoding is a package of tools to transcode, inspect
|