video_transcoding 0.25.2 → 0.25.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 91310f7cf36c3698456dcc60c26d5f0f9d6af28783b4367ecc1eb7a563b78441
4
- data.tar.gz: 88307d08b771e035ef2e680449ce35d8903d7bc9e47343557532a536022bb74b
3
+ metadata.gz: d7ced48b05561a997ed5122f54b701a25725370c5e56ce6a3b104aa0388bf08c
4
+ data.tar.gz: 704d3e67518480d6e23eb4d9d8179e3fb21562b95f3482ea6d6fc0fc0f62b138
5
5
  SHA512:
6
- metadata.gz: 1a6b61b8c459b43c24fea7d25461b8cb6ca5115023921e5b10f962504aeeedbf459aeb38a9237c046bf967557913fc42d8395912b69a8d334f90cc19b7678a50
7
- data.tar.gz: 8c3a0444d27f5bafd9e44b7acdfe1be5a19f9b478a398edbbcbe5700e2e10181cf6177440d4c0dd17aab344991391b0e11748abfd20d7c8992eeff6254580993
6
+ metadata.gz: e4add27ae43774efc739d386623eed44250b8f161ba796ffa413c42a24cd6686da97c8d121926720a105d506a9fab03f56829eb18abf37367ffc53ede0ac4abe
7
+ data.tar.gz: ac5325429b619315b68ae09bd7b3b1c7fed7f5e21d2d542278f4a0103b389d9bd25928281653146c6ef86b4e21c3abe15b7d7815deb8e9b17e29e694700b4b79
@@ -2,6 +2,13 @@
2
2
 
3
3
  This single document contains all of the notes created for each [release](https://github.com/donmelton/video_transcoding/releases).
4
4
 
5
+ ## [0.25.3](https://github.com/donmelton/video_transcoding/releases/tag/0.25.3)
6
+
7
+ Tuesday, May 26, 2020
8
+
9
+ * Modify `detect-crop` to show preview commands compatible with newer versions of `mpv`.
10
+ * Update all copyright notices to the year 2020.
11
+
5
12
  ## [0.25.2](https://github.com/donmelton/video_transcoding/releases/tag/0.25.2)
6
13
 
7
14
  Wednesday, May 15, 2019
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013-2019 Don Melton
1
+ Copyright (c) 2013-2020 Don Melton
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # convert-video
4
4
  #
5
- # Copyright (c) 2013-2019 Don Melton
5
+ # Copyright (c) 2013-2020 Don Melton
6
6
  #
7
7
 
8
8
  $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../lib')
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # detect-crop
4
4
  #
5
- # Copyright (c) 2013-2019 Don Melton
5
+ # Copyright (c) 2013-2020 Don Melton
6
6
  #
7
7
 
8
8
  $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../lib')
@@ -90,8 +90,8 @@ HERE
90
90
 
91
91
  print_all = ->(crop) do
92
92
  puts
93
- puts "mpv --no-audio --vf \"lavfi=[drawbox=#{Crop.drawbox_string(crop, width, height)}:invert:1]\" #{shell_path}"
94
- puts "mpv --no-audio --vf crop=#{Crop.player_string(crop, width, height)} #{shell_path}"
93
+ puts "mpv --no-audio --vf=\"lavfi=[drawbox=#{Crop.drawbox_string(crop, width, height)}:invert:1]\" #{shell_path}"
94
+ puts "mpv --no-audio --vf=crop=#{Crop.player_string(crop, width, height)} #{shell_path}"
95
95
  print_transcode.call crop
96
96
  end
97
97
 
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # query-handbrake-log
4
4
  #
5
- # Copyright (c) 2013-2019 Don Melton
5
+ # Copyright (c) 2013-2020 Don Melton
6
6
  #
7
7
 
8
8
  $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../lib')
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # transcode-video
4
4
  #
5
- # Copyright (c) 2013-2019 Don Melton
5
+ # Copyright (c) 2013-2020 Don Melton
6
6
  #
7
7
 
8
8
  $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../lib')
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # video_transcoding.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  require 'English'
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # cli.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  require 'optparse'
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # console.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -1,9 +1,9 @@
1
1
  #
2
2
  # copyright.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
8
- COPYRIGHT = 'Copyright (c) 2013-2019 Don Melton'
8
+ COPYRIGHT = 'Copyright (c) 2013-2020 Don Melton'
9
9
  end
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # crop.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # errors.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # ffmpeg.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # handbrake.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # media.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # mkvpropedit.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # mp4track.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # tool.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -1,9 +1,9 @@
1
1
  #
2
2
  # version.rb
3
3
  #
4
- # Copyright (c) 2013-2019 Don Melton
4
+ # Copyright (c) 2013-2020 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
8
- VERSION = '0.25.2'
8
+ VERSION = '0.25.3'
9
9
  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.25.2
4
+ version: 0.25.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Don Melton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-15 00:00:00.000000000 Z
11
+ date: 2020-05-26 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  Video Transcoding is a package of tools to transcode, inspect
@@ -64,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
64
64
  - !ruby/object:Gem::Version
65
65
  version: '0'
66
66
  requirements: []
67
- rubygems_version: 3.0.3
67
+ rubygems_version: 3.1.2
68
68
  signing_key:
69
69
  specification_version: 4
70
70
  summary: Tools to transcode, inspect and convert videos.