vollbremsung 0.0.19 → 0.0.20
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 +8 -8
- data/lib/vollbremsung.rb +3 -3
- data/vollbremsung.gemspec +2 -2
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZjE4MzlmZDc2NjZkNTVhZmMwOTMwOWJmZmJjYjIzNDYyYzRiYWI3Mw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YTExYTMwODFhYzBjZjI3NzQzZDJlMWRmOTgxNTcyZGRlZTBkNzEwZQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZGNjNWE0NDZlMDU5MTY5NTFkYjIxNzFiOTE4YzdjODk0ODRjMTQ2ODRkNjEy
|
|
10
|
+
NmI0MDIxNTY3MWIyNTdlYzllOGRhZTczMzllMjIzOWVlOGIzYzFjYWRhYmI0
|
|
11
|
+
YmMxZWZiOTY1NmZlNmY3ZmM2OGE2MDA2NmU4MTNjZDJlZTVhODk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ODQ2NzdjMDg2NjMwZWY4ZGU2YTcyZTg0MjYxMjZlYmM3NDM5MWEwYzhmNzdm
|
|
14
|
+
ZGViNzc2OTI4NzY0NGYzYjJjZGUzMDgyNTRjZDQ4Y2ZiMGM3M2MzNDE3YWUw
|
|
15
|
+
MDllODBmNzZkY2U2OGJhOTM2ZWQ1MjFkM2Q3NzliMzNlZjNlZDM=
|
data/lib/vollbremsung.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
module Vollbremsung
|
|
2
2
|
|
|
3
3
|
USAGE = "Usage: vollbremsung [options] target [target [...]]"
|
|
4
|
-
VERSION = '0.0.
|
|
5
|
-
CONVERT_TYPES = ['mkv','
|
|
4
|
+
VERSION = '0.0.20'.freeze
|
|
5
|
+
CONVERT_TYPES = ['avi','flv','mkv','mpg','mov','ogm','webm','wmv']
|
|
6
6
|
FFMPEG_OPTIONS = "-map 0 -acodec copy -vcodec copy -scodec copy"
|
|
7
|
-
X264_DEFAULT_PRESET = "veryfast"
|
|
7
|
+
X264_DEFAULT_PRESET = "veryfast".freeze
|
|
8
8
|
|
|
9
9
|
class StreamDescr < Struct.new(:count,:names)
|
|
10
10
|
def initialize
|
data/vollbremsung.gemspec
CHANGED
|
@@ -6,9 +6,9 @@ require 'vollbremsung'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'vollbremsung'
|
|
8
8
|
spec.version = Vollbremsung::VERSION
|
|
9
|
-
spec.date = '2014-
|
|
9
|
+
spec.date = '2014-09-21'
|
|
10
10
|
spec.summary = "Handbrake bulk encoding tool"
|
|
11
|
-
spec.description = "Handbrake bulk encoding tool"
|
|
11
|
+
spec.description = "vollbremsung is a Handbrake bulk encoding tool, desigend to reencode a file structure to a DLNA enabled TV compatible format comfortably."
|
|
12
12
|
spec.author = "Maximilian Irro"
|
|
13
13
|
spec.email = 'max@disposia.org'
|
|
14
14
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vollbremsung
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maximilian Irro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: handbrake
|
|
@@ -24,7 +24,8 @@ dependencies:
|
|
|
24
24
|
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0.4'
|
|
27
|
-
description: Handbrake bulk encoding tool
|
|
27
|
+
description: vollbremsung is a Handbrake bulk encoding tool, desigend to reencode
|
|
28
|
+
a file structure to a DLNA enabled TV compatible format comfortably.
|
|
28
29
|
email: max@disposia.org
|
|
29
30
|
executables:
|
|
30
31
|
- vollbremsung
|
|
@@ -59,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
59
60
|
version: '0'
|
|
60
61
|
requirements: []
|
|
61
62
|
rubyforge_project:
|
|
62
|
-
rubygems_version: 2.4.
|
|
63
|
+
rubygems_version: 2.4.2
|
|
63
64
|
signing_key:
|
|
64
65
|
specification_version: 4
|
|
65
66
|
summary: Handbrake bulk encoding tool
|