moshy 1.0.0 → 1.0.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 +26 -10
- data/lib/moshy/version.rb +1 -1
- metadata +16 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65ba7cdf045a9030b3d55c3e47ba0f663dc1f0b4
|
4
|
+
data.tar.gz: adccab4801ffc3f4464fcbc39f949897254275fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e5d5f1cec0c6a8757283621a22ccfe0b6d140b0cd2e56b52a779ac07dcddde98be29d490c5f05826eb07d05491db844d0366274910c2380565b3654f1e2ef66
|
7
|
+
data.tar.gz: 027b8c7921993a9ebbade5e3332a3a02422971b6ab4fa1de9504124e11808e66052b9804e7098756c39880a95bfdc7e03be9962accfbc7fdfbaeb1d21ae91a29
|
data/README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
# moshy
|
2
2
|
|
3
|
-
|
3
|
+

|
4
|
+
created with moshy's pdupe options
|
5
|
+
|
6
|
+
**moshy** is a command line datamoshing utility kit for AVI files, based heavily on [aviglitch](https://github.com/ucnv/aviglitch).
|
4
7
|
It's designed to make common datamoshing tasks easier without having to open avidemux or other GUI tools. It lets you do stuff like:
|
5
8
|
|
6
9
|
- Convert video files into AVI video files with minimal I-Frames and no B-frames for ultimate moshability
|
@@ -17,16 +20,10 @@ If you don't know how to use the command line, this is a great opportunity to le
|
|
17
20
|
|
18
21
|
## Get it!
|
19
22
|
|
20
|
-
You'll need to install [Ruby](https://www.ruby-lang.org/en/). If you're on Mac OS X, you probably already have a local version of Ruby installed. Once that's done, you
|
21
|
-
|
22
|
-
```
|
23
|
-
gem install bundler
|
24
|
-
```
|
25
|
-
|
26
|
-
Then you can use Bundler to install moshy:
|
23
|
+
You'll need to install [Ruby](https://www.ruby-lang.org/en/). If you're on Mac OS X, you probably already have a local version of Ruby installed. Once that's done, you can use Rubygems (which comes with Ruby) to install moshy:
|
27
24
|
|
28
25
|
```
|
29
|
-
|
26
|
+
gem install moshy
|
30
27
|
```
|
31
28
|
|
32
29
|
From there, you can use `moshy` from the command line.
|
@@ -68,4 +65,23 @@ the command `moshy -m <mode> --help`.
|
|
68
65
|
|
69
66
|
If you think this is cool, you'll probably find my list of [glitch art resources](http://www.glitchet.com/resources)
|
70
67
|
useful as well as the [Glitchet newsletter](http://www.glitchet.com/), a free weekly futuristic
|
71
|
-
news and glitch aesthetic e-zine.
|
68
|
+
news and glitch aesthetic e-zine.
|
69
|
+
|
70
|
+
## Quick tutorial
|
71
|
+
|
72
|
+
Here's a short example of how you might use moshy to create a P-dupe mosh:
|
73
|
+
|
74
|
+
1. Choose a YouTube video you want to mosh (I'll use "Charlie bit my finger": <https://www.youtube.com/watch?v=bnRVheEpJG4>)
|
75
|
+
2. Download it with KeepVid (<http://keepvid.com/?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DbnRVheEpJG4>)
|
76
|
+
3. "Prep" it with moshy to turn it into an .AVI with minimal I-Frames and all P-frames (because B-frames don't mosh well):
|
77
|
+
`moshy -m prep -i charlie.mp4 -o charlie.avi`
|
78
|
+
4. Open charlie.avi in avidemux and clip it down to the segment I want (moshy will soon be able to do this with a "clip" command): 
|
79
|
+
5. Open charlie_clip.avi and find the frame I want to P-dupe mosh (here, frame 196): 
|
80
|
+
6. Use moshy in pdupe mode to dupe frame 196 60 times:
|
81
|
+
`moshy -m pdupe -i charlie_clip.avi -f 196 -d 60 -o charlie_clip-dupe.avi`
|
82
|
+
Open it in a video player (I use VLC) and see if it looks good.
|
83
|
+
7. Awesome, I love it, but I want to clip it down to size. However, since it has so few I-frames, if I just clip it anywhere, the beginning of the video will become corrupted because of lack of pixel data. Let's use moshy to bake the mosh:
|
84
|
+
`moshy -m bake -i charlie_clip-dupe.avi -o charlie_clip-dupe-bake.avi`
|
85
|
+
8. Done. Let's open it back up in avidemux, clip it down to size, and save our final result: 
|
86
|
+
9. Looks good to me. Let's save it as an MP4 so that I can upload it to Giphy, which will convert it into a .gif for me. (I'm hoping to add modes to moshy that convert videos to .gif and .mp4 directly, too.)
|
87
|
+
10. Done! 
|
data/lib/moshy/version.rb
CHANGED
metadata
CHANGED
@@ -1,83 +1,83 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: moshy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wayspurrchen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: slop
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aviglitch
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: av
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '1.6'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ~>
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '1.6'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- -
|
73
|
+
- - '>='
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- -
|
80
|
+
- - '>='
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
description: datamoshing utility kit for common tasks with AVI files
|
@@ -87,7 +87,7 @@ executables:
|
|
87
87
|
extensions: []
|
88
88
|
extra_rdoc_files: []
|
89
89
|
files:
|
90
|
-
-
|
90
|
+
- .gitignore
|
91
91
|
- Gemfile
|
92
92
|
- LICENSE.txt
|
93
93
|
- README.md
|
@@ -112,17 +112,17 @@ require_paths:
|
|
112
112
|
- lib
|
113
113
|
required_ruby_version: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- -
|
115
|
+
- - '>='
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: '0'
|
118
118
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
119
119
|
requirements:
|
120
|
-
- -
|
120
|
+
- - '>='
|
121
121
|
- !ruby/object:Gem::Version
|
122
122
|
version: '0'
|
123
123
|
requirements: []
|
124
124
|
rubyforge_project:
|
125
|
-
rubygems_version: 2.
|
125
|
+
rubygems_version: 2.4.6
|
126
126
|
signing_key:
|
127
127
|
specification_version: 4
|
128
128
|
summary: datamoshing utility kit for common tasks with AVI files
|