forked from ucnv/aviglitch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
33 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,50 @@ | ||
== 0.1.3 / 2011-08-19 | ||
### 0.1.4 / 2014-04-10 | ||
|
||
* Added an enumerator style on AviGlitch::Base#glitch and | ||
AviGlitch::Frames#each | ||
* Added AviGlitch::Base#remove_all_keyframes! | ||
* Renamed #clear_keyframes! to #mutate_keyframes_into_deltaframes! | ||
* Improved the processing speed in some measure. | ||
* Some minor fixes. | ||
|
||
### 0.1.3 / 2011-08-19 | ||
|
||
* Added has_keyframe? method to AviGlitch::Base | ||
* Added a --fake option to datamosh cli. | ||
|
||
== 0.1.2 / 2011-04-10 | ||
### 0.1.2 / 2011-04-10 | ||
|
||
* Fix to be able to handle data with offsets from 0 of the file. | ||
* Added clear_keyframes! method to AviGlitch::Frames and AviGlitch::Base. | ||
* Changed to be able to access frame's meta data. | ||
* Changed datamosh command to handle wildcard char. | ||
|
||
== 0.1.1 / 2010-09-09 | ||
### 0.1.1 / 2010-09-09 | ||
|
||
* Fixed a bug with windows. | ||
* Some tiny fixes. | ||
|
||
== 0.1.0 / 2010-07-09 | ||
### 0.1.0 / 2010-07-09 | ||
|
||
* Minor version up. | ||
* Fixed bugs with Ruby 1.8.7. | ||
* Fixed the synchronization problem with datamosh cli. | ||
|
||
== 0.0.3 / 2010-07-07 | ||
### 0.0.3 / 2010-07-07 | ||
|
||
* Changed AviGlitch::Frames allowing to slice and concatenate frames | ||
(like Array). | ||
* Changed datamosh cli to accept multiple files. | ||
|
||
== 0.0.2 / 2010-05-17 | ||
### 0.0.2 / 2010-05-17 | ||
|
||
* Removed AviGlitch#new. Use AviGlitch#open instead of #new. | ||
* Added warning for a large file. | ||
* Changed datamosh command interface. | ||
* Changed the library file layout. | ||
* And tiny internal changes. | ||
|
||
== 0.0.1 / 2009-08-01 | ||
### 0.0.1 / 2009-08-01 | ||
|
||
* initial release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec| | |
spec.version = AviGlitch::VERSION | ||
spec.authors = ["ucnv"] | ||
spec.email = ["[email protected]"] | ||
spec.description = %q{AviGlitch to destroys your AVI files. | ||
spec.description = %q{AviGlitch destroys your AVI files. | ||
This library provides ways to manipulate data in each AVI frames. | ||
It can easily generate keyframes-removed video known as "datamoshing". | ||
} | ||
|
@@ -21,7 +21,12 @@ Gem::Specification.new do |spec| | |
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.require_paths = ["lib"] | ||
|
||
spec.has_rdoc = true | ||
spec.extra_rdoc_files = ["README.md", "LICENSE"] | ||
spec.rdoc_options << "-m" << "README.md" | ||
|
||
spec.add_development_dependency "bundler", "~> 1.3" | ||
spec.add_development_dependency "rake", ">= 2.0.0" | ||
spec.add_development_dependency "rspec" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_development_dependency "rspec", "~> 2.0" | ||
spec.add_development_dependency "rdoc", "~> 4.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
# | ||
module AviGlitch | ||
|
||
VERSION = '0.1.3' | ||
VERSION = '0.1.4' | ||
|
||
BUFFER_SIZE = 2 ** 24 | ||
|
||
|