sensible-cinema 0.24.3 → 0.24.4
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +3 -1
- data/TODO +59 -46
- data/VERSION +1 -1
- data/bin/sensible-cinema +158 -82
- data/change_log_with_feature_list.txt +13 -1
- data/developer_how_to_contribute_to_the_project.txt +18 -24
- data/documentation/is_it_legal_to_copy_dvds.txt +12 -15
- data/history_and_related_works_list.txt +6 -3
- data/lib/ruby_clip.rb +2 -2
- data/lib/subtitle_profanity_finder.rb +10 -6
- data/spec/notes +2 -0
- data/template_bats/mac/RUN SENSIBLE CINEMA CLICK HERE.sh +4 -0
- data/template_bats/mac/advanced--create or edit sensible cinema edit list files.sh +1 -0
- data/template_bats/mac/advanced--run-upconverting-video-player.sh +1 -0
- data/todo.propaganda +2 -0
- data/todo.subtitle +2 -9
- data/todo.upconvert +3 -12
- data/www/index.html +36 -25
- data/www/monkey.png +0 -0
- data/zamples/edit_decision_lists/dvds/Harry Potter 2.txt b/data/zamples/edit_decision_lists/dvds/Harry Potter 2 chamber of → secrets.txt +0 -0
- data/zamples/edit_decision_lists/dvds/{edls_being_edited/bambi.txt → bambi.txt} +0 -0
- data/zamples/edit_decision_lists/dvds/edls_being_edited/court_jester.txt +26 -0
- data/zamples/edit_decision_lists/dvds/{harry_potter_prisoner_of_azkaban.txt → harry_potter_3_prisoner_of_azkaban.txt} +0 -0
- data/zamples/edit_decision_lists/dvds/{edls_being_edited/hitchhiker's_guide_to_the_galaxy.txt → hitchhiker's_guide_to_the_galaxy.txt} +0 -0
- data/zamples/edit_decision_lists/dvds/{edls_being_edited/iq.txt → iq.txt} +0 -0
- data/zamples/edit_decision_lists/dvds/kung_fu_panda_1.txt +17 -17
- data/zamples/edit_decision_lists/dvds/{pack_wedding_2007-03-03.txt → pack_jackson_wedding_2007-03-03.txt} +0 -0
- data/zamples/edit_decision_lists/dvds/{sintel_open_source_blender.txt → sintel_open_source_blender_ntsc_dvd.txt} +0 -0
- data/zamples/edit_decision_lists/dvds/{edls_being_edited/snow_white_and_the_7_dwarfs_1937.txt → snow_white_and_the_7_dwarfs_1937.txt} +0 -0
- metadata +15 -10
@@ -1,3 +1,15 @@
|
|
1
|
+
== 0.24.4 ==
|
2
|
+
|
3
|
+
Note that previous releases had the ability to "invert" skipping scenes,
|
4
|
+
by specifically listing only the scenes *to* play, not the scenes *not* to
|
5
|
+
play, as others may have done.
|
6
|
+
Created demo of it playing back static instead of muting (to overlay).
|
7
|
+
That's an extra audio file over the top of the original, while still playing
|
8
|
+
(ex: rifftrax), to "fake" a mute section.
|
9
|
+
|
10
|
+
Add an option for the upconverter to vary "strength" of screen size.
|
11
|
+
A few more demo videos.
|
12
|
+
|
1
13
|
== 0.24.3 ==
|
2
14
|
|
3
15
|
Distribution cleanups
|
@@ -8,7 +20,7 @@ polish up UI.
|
|
8
20
|
In some recent version or other, added ability to start EDL's from an offset
|
9
21
|
(example: your video says it starts at 600s, it will add 600s to each EDL setting)
|
10
22
|
can auto-paste to clipboard
|
11
|
-
auto-full screen now
|
23
|
+
auto-full screen now by default for playback
|
12
24
|
In some recent revision, added ability to set upconvert options, use them for any playbacks.
|
13
25
|
Separates subtitles into "known profanities" and then "lesser" now.
|
14
26
|
|
@@ -1,51 +1,45 @@
|
|
1
1
|
A few notes for developers:
|
2
2
|
|
3
|
-
You can test the
|
4
|
-
|
3
|
+
You can test the DVD portion of the program out by mounting the DVD of "big buck bunny"
|
4
|
+
http://rogerdpack.t28.net/sensible-cinema/releases/dvd_isos has it and a few other creative commons ISO's for use.
|
5
|
+
On windows daemon tools helps there, or "magic ISO" or the like.
|
5
6
|
|
6
|
-
|
7
|
-
http://rogerdpack.t28.net/sensible-cinema/releases/dvd_isos (my own DVD, I release it under the CC license, as well as some
|
8
|
-
other CC released licensed DVD's).
|
7
|
+
Or you could alternatively burn a copy of big buck bunny to DVD, then use that to test it against (a slightly more cross platform approach).
|
9
8
|
|
10
|
-
|
9
|
+
Then rip it and use the output.
|
11
10
|
|
12
|
-
Or if you have a DVD that already has a edit list available for it, you could use that,
|
11
|
+
Or if you have a DVD that already has a edit list available for it, you could use that, or create
|
12
|
+
a new edit list for a DVD you own, etc.
|
13
13
|
|
14
|
-
The main development roadmap is in the TODO.
|
14
|
+
The main development roadmap/backlog is in the TODO.
|
15
|
+
If you have any feedback/feature requests, et al, post an
|
15
16
|
issue or post to the Mailing List: http://groups.google.com/group/sensible-cinema
|
16
17
|
|
17
|
-
Sensible cinema is written in jruby, and currently packages itself up as a zip with jruby-complete.jar
|
18
|
-
with its required dependencies (see the Rakefile) for windows.
|
19
|
-
|
20
18
|
To run it from source, you may need to install a few gem dependencies (listed in the Rakefile)
|
21
19
|
|
22
|
-
or install them automatically:
|
20
|
+
or to install them automatically:
|
23
21
|
|
24
22
|
$ jruby -S gem install sensible-cinema # installs dev. dependencies
|
25
23
|
Note that, in order to run the unit tests, you'll want to checkout the source from the repository to get all the test images
|
26
24
|
|
27
|
-
The tests are in the spec directory, though some of them are out of date as development has
|
25
|
+
The tests are in the spec directory, though some of them are out of date as development has shifted focus to other areas.
|
28
26
|
|
29
|
-
Note: you transfer (c) of materials to sensible cinema when you submit patches
|
27
|
+
Note: you transfer (c) of materials to sensible cinema when you submit patches/contributions, of course, so don't submit something you don't want published :)
|
30
28
|
|
31
29
|
To run it via command line:
|
32
|
-
$ jruby bin/sensible-cinema # DVD
|
30
|
+
$ jruby bin/sensible-cinema # DVD/file EDL player
|
33
31
|
$ jruby bin/sensible-cinema --create-mode # DVD output "parser/cutter" create mode [advanced]
|
32
|
+
$ jruby bin/sensible-cinema --upconvert-mode # DVD/video upconverting player
|
34
33
|
$ jruby bin/sensible-cinema-cli # the experimental OCR tracker for arbitrary online/local/internet players.
|
35
34
|
See "Advanced Usage"
|
36
35
|
|
37
|
-
See also the included rake file for bundling/running all the specs.
|
38
|
-
|
39
36
|
Feedback/contribution welcome :)
|
40
37
|
|
41
38
|
== mac os x developers ==
|
42
39
|
|
43
|
-
You'll have to install a few dependencies. It will tell you which at runtime,
|
44
|
-
|
45
|
-
== Advanced Usage ==
|
40
|
+
You'll have to install a few dependencies. It will tell you which at runtime,
|
41
|
+
or see the installation instructions: http://rogerdpack.t28.net/sensible-cinema/
|
46
42
|
|
47
|
-
|
48
|
-
you could optionally specify the scene descriptions list and player list on the command-line, so you don't want to have
|
49
|
-
to re-select them like this will tell you how to run it from the command line:
|
43
|
+
== OCR screen tracker ==
|
50
44
|
|
51
|
-
|
45
|
+
For the screen tracker (the experimental version, see file experimental_online_player_ocr_readme.txt).
|
@@ -3,26 +3,23 @@ So...is this legal?
|
|
3
3
|
Unclear. In general ripping personal DVD's is legal.
|
4
4
|
|
5
5
|
Note also that if you don't feel it is legal in your country, you can still use the timing info given
|
6
|
-
to "manually" skip/mute scenes you dislike.
|
7
|
-
Also
|
8
|
-
for a list of related works that might
|
6
|
+
to "manually" skip/mute scenes you dislike.
|
7
|
+
Also the playback in "realtime" edited (see README
|
8
|
+
for a list of related works that might also do this) is probably legal
|
9
|
+
under the The Family Home Movie Act of 2005.
|
9
10
|
|
10
11
|
And making verbatim "backup copies" of commercial DVD's (I think--I'm no laywer) may fall under
|
11
|
-
fair use [3].
|
12
|
+
fair use [3]. http://fanedit.org/49/ also lists some interesting copyright ideas in the footer.
|
12
13
|
|
13
14
|
Sensible cinema doesn't include any ability to actually rip DVD's,
|
14
|
-
and relies on you to use something else for that,
|
15
|
-
|
16
|
-
It is controversial to use open source software to play/rip commercial DVD's.
|
17
|
-
There are a few conflicting views.
|
18
|
-
Sensible-cinema doesn't actually do any decryption or decoding, nor has any knowledge of how it occurred
|
19
|
-
originally.
|
20
|
-
It doesn't even have knowledge as to whether the DVD was originally encrypted or not, we choose a
|
15
|
+
and relies on you to use something else for that, to avoid liability.
|
16
|
+
We choose a
|
21
17
|
"you have to do the ripping through some other means" philosophy, to avoid legal issues.
|
22
18
|
You can ask the authors of the ripping programs you use if their software is legal. Apparently
|
23
|
-
libdvdcss (which
|
24
|
-
and uses a slightly different algorithm than those that have, so the jury's still out.
|
25
|
-
|
19
|
+
libdvdcss (which some programs use) has never been legally challenged in court (or so they say),
|
20
|
+
and uses a slightly different algorithm than those that have, so the jury's still out.
|
21
|
+
It has been challenged in French courts and apparently found legal so this may vary
|
22
|
+
from country to country, as well [4].
|
26
23
|
|
27
24
|
Using sensible-cinema also might not be more unethical than ripping your DVD collection to your hard
|
28
25
|
drive so you can "keep your DVD's all in one place" or what not (which might perhaps be termed fair use), since it
|
@@ -77,4 +74,4 @@ NB: YOU MUST AGREE TO THE gplv3 in order to use this software. See LICENSE.TXT
|
|
77
74
|
|
78
75
|
note also http://en.wikipedia.org/wiki/DVD_Decrypter for some more legal interestingnss.
|
79
76
|
|
80
|
-
Also note that this project was done under the gplv3 in Roger's jurisdiction, not a product of anybody else or any other owner.
|
77
|
+
Also note that this project was done under the gplv3 in Roger's jurisdiction, not a product of anybody else or any other owner.
|
@@ -62,18 +62,22 @@ http://www.videoredo.com/en/index.htm lets you "cut out" offensive content (comm
|
|
62
62
|
http://www.microsoft.com/windows/windowsmedia/howto/articles/device_control.aspx Windows Media Encoder supports EDL's by timestamp
|
63
63
|
http://cutlist.at shared "commercial skip" cutlists
|
64
64
|
http://www.mplayerhq.hu/DOCS/HTML/en/edl.html
|
65
|
+
Time programmable VCR's (at the least, 'skip the first few minutes')
|
65
66
|
http://www.amazon.com/Make-Edited-Movies-ebook/dp/B004EYT3BU
|
66
67
|
http://www.sharewareconnection.com/fast-compress-content-and-anti-profanity.htm replaces profanity in web pages with euphemized content.
|
68
|
+
MovieMask apparently had capability of "overlaying" DVD playback, like adding new clothing to people, and other features.
|
67
69
|
http://www.oreillynet.com/sysadmin/blog/2005/06/make_your_own_phantom_edit_wit.html (mplayer has had this ability for awhile, with no complaints).
|
70
|
+
http://fanedit.org/49 fanedits take the original and remix it through some means for more enjoyable playbacks.
|
68
71
|
http://clearplay.com a commercial "filtering" DVD player See the "motivation" section for a description.
|
69
72
|
It does offer a few features that sensible cinema supports but disables by default, for patent reasons,
|
70
73
|
like automatic (user flexible) content decisions.
|
71
74
|
http://en.wikipedia.org/wiki/RiffTrax has an interesting idea of "overlaying" audio over the original video, and synchronizing between the two (their re-player does, anyway).
|
72
75
|
http://forum.bsplayer.com/feature-requests-feedback-suggestions/7157-chapter-playlist-scene-cut-3.html
|
73
76
|
http://www.inmatrix.com zoom player's "scene cut editor"
|
77
|
+
edited released movies by the producer, like http://en.wikipedia.org/wiki/Seven_Samurai and http://www.swank.com/insti/studios.html and http://betterlogic.com/roger/2011/06/dove-edited-films
|
74
78
|
http://wiki.xbmc.org/?title=EDL_(commercial_skipping)_and_SceneMarker_support (XBMC's scene cut supporter--also contains links to some other editors' support for EDL's)
|
75
79
|
http://dvdshrink.info "Re-author" mode: to make "movie-only" backups, compilations, combine "flippers",.... DvdShrink has the ability to "crop or cut parts of a title" etc.
|
76
|
-
The VCR with its record button, coupled with the stop+rewind button.
|
80
|
+
The VCR with its record button, coupled with the stop+rewind button and a list of edits (if even in your head).
|
77
81
|
http://kb2.adobe.com/cps/191/tn_19151.html Adobe Director MX 2004 can "script" DVD playback.
|
78
82
|
DVD's themselves allow for "scripted" playback of certain content, allowing controls for jumping from location to location, switching audio/video tracks, etc.
|
79
83
|
http://code.google.com/p/movie-content-editor (player written in Python, controls VLC based on subtitles and user-input, using edit decision lists in realtime)
|
@@ -94,5 +98,4 @@ AviSynth can script dvd playback http://forum.doom9.org/archive/index.php/t-1095
|
|
94
98
|
ps3 media server has edl support: https://github.com/chocolateboy/PMS-EDL maybe would work with DVD's dunno
|
95
99
|
Anydvd HD's "magic file replacement" for DVD's/blu-ray's
|
96
100
|
RiffTrax allows for an audio "overlay" to a DVD playback, have their own player to coordinate the two.
|
97
|
-
|
98
|
-
Avatar DVD was released with an audio track that was "euphemized" of the profanity.
|
101
|
+
Avatar DVD was released with an audio track that was "euphemized" of the profanity.
|
data/lib/ruby_clip.rb
CHANGED
@@ -6,7 +6,7 @@ class RubyClip
|
|
6
6
|
|
7
7
|
include java.awt.datatransfer.ClipboardOwner
|
8
8
|
def self.set_clipboard to_this
|
9
|
-
stringSelection = StringSelection.new( to_this )
|
9
|
+
stringSelection = StringSelection.new( to_this.to_s )
|
10
10
|
clipboard = Toolkit.getDefaultToolkit().getSystemClipboard()
|
11
11
|
clipboard.setContents( stringSelection, self );
|
12
12
|
end
|
@@ -23,4 +23,4 @@ if $0 == __FILE__
|
|
23
23
|
RubyClip.set_clipboard "from jruby2"
|
24
24
|
RubyClip.set_clipboard "from jruby3"
|
25
25
|
STDIN.getc
|
26
|
-
end
|
26
|
+
end
|
@@ -20,7 +20,7 @@ module SubtitleProfanityFinder
|
|
20
20
|
as_regexp = Regexp.new(profanity, Regexp::IGNORECASE)
|
21
21
|
if sanitized.is_a? Array
|
22
22
|
is_single_word_profanity = true
|
23
|
-
raise unless sanitized[1]
|
23
|
+
raise unless sanitized[1] == :full_word
|
24
24
|
raise unless sanitized.length == 2
|
25
25
|
sanitized = sanitized[0]
|
26
26
|
end
|
@@ -62,6 +62,7 @@ module SubtitleProfanityFinder
|
|
62
62
|
end
|
63
63
|
|
64
64
|
def self.edl_output_from_string subtitles, extra_profanity_hash, subtract_from_each_beginning_ts, add_to_end_each_ts
|
65
|
+
subtitles.gsub!("\r\n", "\n")
|
65
66
|
raise if subtract_from_each_beginning_ts < 0 # these have to be positive...in my twisted paradigm
|
66
67
|
raise if add_to_end_each_ts < 0
|
67
68
|
|
@@ -92,7 +93,7 @@ module SubtitleProfanityFinder
|
|
92
93
|
|
93
94
|
|
94
95
|
|
95
|
-
bad_profanities = {'hell' => ['he..',
|
96
|
+
bad_profanities = {'hell' => ['he..', :full_word],
|
96
97
|
'g' +
|
97
98
|
'o' + 100.chr => 'goodness', 'g' +
|
98
99
|
111.chr +
|
@@ -106,34 +107,37 @@ module SubtitleProfanityFinder
|
|
106
107
|
99.chr +
|
107
108
|
107.chr =>
|
108
109
|
'f...',
|
110
|
+
'allah' => 'allah',
|
109
111
|
'bi' +
|
110
112
|
'tc' + 104.chr => 'b....',
|
111
113
|
'bas' +
|
112
114
|
'ta' + 'r' + 100.chr => 'ba.....',
|
113
115
|
((arse = 'a' +
|
114
|
-
's'*2)) => ['a..',
|
116
|
+
's'*2)) => ['a..', :full_word],
|
115
117
|
arse + 'h' +
|
116
118
|
'ole' => 'a..h...',
|
117
119
|
arse + 'wipe' => 'a..w....',
|
118
120
|
'jes' +
|
119
121
|
'u' + 's' => 'j....',
|
120
122
|
'chri' +
|
121
|
-
'st'=> ['chr...',
|
123
|
+
'st'=> ['chr...', :full_word], # allow for christian[ity] [good idea or not?]
|
122
124
|
'sh' +
|
123
125
|
'i' + 't' => 'sh..',
|
124
|
-
'a realllly bad word' => ['test edited bad word',
|
126
|
+
'a realllly bad word' => ['test edited bad word', :full_word]
|
125
127
|
}
|
126
128
|
|
127
129
|
bad_profanities.merge! extra_profanity_hash # LODO make easier to use...
|
128
130
|
|
129
131
|
semi_bad_profanities = {}
|
130
|
-
['moron', 'idiot', 'butt', 'sex', 'genital', 'make love', '
|
132
|
+
['bloody', 'moron', 'idiot', 'butt', 'sex', 'genital', 'make love', 'suck',
|
131
133
|
'making love', 'love mak',
|
132
134
|
'breast',
|
133
135
|
'piss'].each{|name|
|
134
136
|
# butter?
|
135
137
|
semi_bad_profanities[name] = name
|
136
138
|
}
|
139
|
+
semi_bad_profanities['crap'] = ['crap', :full_word]
|
140
|
+
|
137
141
|
all_profanity_combinationss = [convert_to_regexps(bad_profanities), convert_to_regexps(semi_bad_profanities)]
|
138
142
|
|
139
143
|
|
data/spec/notes
CHANGED
@@ -272,6 +272,8 @@ http://www.kdenlive.org/forum/xml-format-and-edls kdenlive supports EDL, apparen
|
|
272
272
|
|
273
273
|
=== various options ===
|
274
274
|
|
275
|
+
-vo gl fails on a mac [huh?]
|
276
|
+
|
275
277
|
3360 looks quite crisp so far.
|
276
278
|
3360 didn't seem to help 1024 [?]
|
277
279
|
maybe nothing can help 1024?
|
@@ -0,0 +1,4 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
cd ../sensible-cinema
|
3
|
+
java -cp "./vendor/jruby-complete-1.6.2.jar" org.jruby.Main bin/sensible-cinema $1 $2 $3 || (echo ERROR. Please look for error message, above, and report back the error you see, or fix it && read -p "Press any key to continue...")
|
4
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
"./RUN SENSIBLE CINEMA CLICK HERE.sh" --create-mode
|
@@ -0,0 +1 @@
|
|
1
|
+
"./RUN SENSIBLE CINEMA CLICK HERE.sh" --upconvert-mode
|
data/todo.propaganda
CHANGED
data/todo.subtitle
CHANGED
@@ -6,23 +6,16 @@ avidemux can apparently do it, too
|
|
6
6
|
subtitles hint: http://forum.videolan.org/viewtopic.php?f=7&t=48761&p=155667&hilit=clearplay#p155667 ?
|
7
7
|
somehow map DVD's to the "subdownloader" style subtitles?
|
8
8
|
use their md5 overall too
|
9
|
-
OCR the captioning as an auto profanity filter? (or perhaps download subtitles to be able to pre-screen), like the python fella does.
|
10
9
|
|
11
|
-
what if VLC plays a dvd mp4 do the subtitle timings map?
|
12
|
-
|
13
10
|
don't use as many..uh...large of spaces for mutes that was way wide...is that safe though?
|
14
11
|
|
15
|
-
http://en.flossmanuals.net/Avidemux/ExtractingDVDSubtitles/
|
16
12
|
|
17
13
|
it can use "two" .srt files [user generated versus original] and combine them both [?]
|
18
14
|
|
19
15
|
is there a way to double check your .srt file is accurate?
|
20
16
|
describe it...
|
21
17
|
|
22
|
-
somehow
|
18
|
+
somehow interface with md5/opensubtitles or someone else? hmm..
|
23
19
|
|
24
20
|
Don't mute the whole line if not needed? [just end of it, etc...?]
|
25
|
-
|
26
|
-
butt
|
27
|
-
|
28
|
-
allow them to enter whatever they want as arbitrary search...
|
21
|
+
allow them to enter whatever they want as arbitrary search...
|
data/todo.upconvert
CHANGED
@@ -1,27 +1,18 @@
|
|
1
|
-
|
1
|
+
compare with powerdvd/ffdshow
|
2
2
|
|
3
|
-
|
4
|
-
what about dvd*3 (2160) versus 3360
|
5
|
-
windows/small
|
6
|
-
full screen
|
7
|
-
?
|
3
|
+
compare various computers/monitors...
|
8
4
|
|
9
5
|
experiment with 2x or not with various people...
|
10
6
|
also should I change screen resolution down to 800x600 then double upconvert? better?
|
11
7
|
|
12
|
-
sinc filter?
|
13
|
-
|
14
|
-
|
15
8
|
lanczos 10?
|
16
9
|
|
17
10
|
hqdn3d settings?
|
18
11
|
|
19
|
-
opengl?
|
20
|
-
|
21
12
|
upconvert netflix instant yes!
|
22
13
|
|
23
14
|
== never ==
|
24
15
|
|
25
16
|
add another sharpen filter?
|
26
17
|
|
27
|
-
VLC version?
|
18
|
+
add a VLC version?
|
data/www/index.html
CHANGED
@@ -20,57 +20,68 @@
|
|
20
20
|
|
21
21
|
<body>
|
22
22
|
<html>
|
23
|
+
<img src="monkey.png"/>
|
24
|
+
<div style="float:left; margin-right: 50px; margin-left: 20px;"><h1>Sensible Cinema</h1></div>
|
23
25
|
<pre>
|
24
26
|
Welcome to the (work in progress) home page of Sensible Cinema, the free video scene skipper/muter.
|
25
|
-
|
27
|
+
Sensible Cinema allows you watch edited movies by applying edit lists (EDL's)
|
28
|
+
(i.e. "mute out" or "cut out" questionable scenes) to DVD's or movie files.
|
26
29
|
|
27
|
-
A description and history/background of sensible-cinema can be found <a href="https://github.com/rdp/sensible-cinema/blob/master/README">here</a>.
|
30
|
+
A description and history/background of sensible-cinema can be found <a href="https://github.com/rdp/sensible-cinema/blob/master/README">here</a>.
|
31
|
+
Don't forget to come back to this page to download it, though (from the "Download" section).
|
28
32
|
|
29
33
|
<h2 style="margin: 0px;">Download</h2>
|
30
|
-
|
34
|
+
To download, please check the checkbox if you agree to the terms of the
|
35
|
+
license agreement (<a href="http://www.gnu.org/licenses/gpl.html">gplv3</a>) and wish to download and use sensible cinema.
|
31
36
|
|
32
37
|
<input type="checkbox" class="trigger" onClick="$('#comments').toggle(); $('#comments2').toggle();"/> I have read and agree to the license terms and conditions.
|
33
38
|
|
34
39
|
<div id="comments" style="display:none; border-style:dotted; border-width:1px; border-color: #aaaaaa; padding: 5px;">
|
35
40
|
Please download the latest version of sensible cinema from <a href="https://sourceforge.net/projects/sensible-cinema/files/">sourceforge</a>.
|
36
41
|
</div>
|
37
|
-
After
|
38
|
-
|
39
|
-
and run the file "run sensible cinema.bat"
|
40
|
-
You will be initially prompted to accept the license agreement(s) and also install a few
|
42
|
+
After download, unzip it. For windows users, that's like:
|
43
|
+
Reveal the file in explorer -> right click on the file -> Extract all -> Extract.
|
44
|
+
Now open the newly created sensible-cinema-x.x.x folder, and run the file "run sensible cinema.bat"
|
45
|
+
You will be initially prompted to accept the license agreement(s) and also install a few
|
46
|
+
(non included, separate ownership/distribution) dependencies.
|
41
47
|
Now insert a DVD you own, and restart sensible cinema to see available options.
|
42
48
|
Note that you want to download from sourceforge not from github.com (github is just the raw source).
|
43
49
|
There is more usage documentation within the "sensible-cinema/documentation" folder.
|
44
50
|
|
45
|
-
<h3>Mac
|
46
|
-
|
47
|
-
|
51
|
+
<h3>Mac user prerequisites</h3>Mac users will need to install some programs first.
|
52
|
+
|
53
|
+
If you plan on watching any movies in "realtime" then you'll need to download <a href="http://mplayerx.org/#Download">mplayerx</a>.
|
54
|
+
|
55
|
+
If you plan on doing any auto-video editing/saving then you'll need to install <a href="http://www.macports.org/">macports</a>.
|
56
|
+
Install macports, then afterward open the "terminal" Application and execute the following command:
|
57
|
+
$ sudo port install mencoder ffmpeg gocr
|
48
58
|
After this finishes (it will take awhile) you'll be ready to run Sensible Cinema.
|
49
59
|
Note that by installing these, you're accepting their respective licenses/distributions.
|
50
60
|
|
51
|
-
|
52
|
-
|
53
|
-
|
61
|
+
<--h3>Upconverting/upscaling DVD/video player</h3>Sensible Cinema comes with its own upscaling/upconverting software DVD/movie file player.
|
62
|
+
This is designed to make playback on high resolution monitors look better by processing the image to sharpen it.
|
63
|
+
Try it out and give feedback! -->
|
54
64
|
|
55
|
-
|
56
|
-
|
57
|
-
|
65
|
+
<h3>Available edited movie lists</h3>You can see the (small) current list of DVD edit lists (EDL's) thus far available <a href="https://github.com/rdp/sensible-cinema/tree/master/zamples/edit_decision_lists/dvds">here</a> (all of them created previously by volunteers like you).
|
66
|
+
If yours is already there, then you might be good to go. Just use it.
|
67
|
+
|
68
|
+
If yours isn't there, then we'd ask you to help us by creating and submitting your own EDL (delete/cut list) for your DVD that doesn't have one yet,
|
69
|
+
see the <a href="https://github.com/rdp/sensible-cinema/blob/master/documentation">how to create</a> file for instructions on creating a new delete list. <!-- this is actually a short line -->
|
70
|
+
Then run the file "advanced-edit or create sensible cinema delete list files.bat" to create and edit your new delete list. Sensible Cinema has a few things to help you there.
|
58
71
|
Don't forget to upload your new file back to us when you're done, so others can benefit from your work (see "contact", below).
|
59
72
|
|
60
|
-
|
73
|
+
That link is the full list--your help is wanted/needed to help it grow!
|
61
74
|
|
62
|
-
<h2 style="margin: 0px;">Other Resources/Contact</h2>
|
63
|
-
Let me know via the <a href="http://groups.google.com/group/sensible-cinema?pli=1">google group</a> or email
|
64
|
-
<h3>Source code</h3>
|
75
|
+
<h2 style="margin: 0px;">Other Resources/Contact/Support</h2>
|
76
|
+
Let me know via the <a href="http://groups.google.com/group/sensible-cinema?pli=1">google group</a> or email rogerdpack@gmail.com if you have feedback or have any other ideas/suggestions.
|
77
|
+
<h3>Source code</h3>Source code is all available <a href="http://github.com/rdp/sensible-cinema">here</a>. Notes for potential source code developers are <a href="https://github.com/rdp/sensible-cinema/blob/master/developer_how_to_contribute_to_the_project.txt">here</a>.
|
65
78
|
For (techy or non-techy) contributions, see the contact info in the README file, or write to the google group, above.
|
66
79
|
|
67
|
-
|
68
|
-
|
69
|
-
You can see the <a href="source/change_log_with_feature_list.txt">change log with feature list</a> and also on github.
|
80
|
+
You can see the <a href="source/change_log_with_feature_list.txt">change log with feature list</a>.
|
70
81
|
|
71
|
-
You can get a list of
|
82
|
+
You can get a list of DVD ISO's (creative commons licensed) <a href="releases/dvd_isos">here</a>, if you want to try them out for experimenting/development/research etc.
|
72
83
|
|
73
|
-
Please click the license agreement checkbox at the top to see list of old releases (newer ones are found on sourceforge exclusively,
|
84
|
+
Please click the license agreement checkbox at the top to see a list of some old releases (newer ones are found on sourceforge exclusively, old ones here).
|
74
85
|
<div id="comments2" style="display:none;">You can find an old list of older releases, as well as the MS based C <a href="releases/c_player">DVD player</a> listed <a href="releases">in the archives</a>.
|
75
86
|
|
76
87
|
</div>
|
data/www/monkey.png
ADDED
Binary file
|
File without changes
|
File without changes
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# comments can go after a # on any line, for example this one.
|
2
|
+
"name" => "court jester",
|
3
|
+
|
4
|
+
"mutes" => [
|
5
|
+
|
6
|
+
"0:33:24.424" , "0:33:26.448", "profanity", "deitys", "Sent by the [deitys] and for you alone",
|
7
|
+
"0:41:25.884" , "0:41:32.1", "profanity", "deitys", "that you have been sent here by the [deitys], To do that you must go to her room and [make love]",
|
8
|
+
"0:45:28.670" , "0:45:30.578", "profanity", "deitys", "and lovers are not sent by the [deitys]",
|
9
|
+
"0:45:43.037" , "0:45:46.298", "profanity", "deitys", "The [deitys] who sent you have also provided a means for our escape",
|
10
|
+
"0:41:51.573" , "0:41:54.586", "profanity", "make love", "Not me you fool Now go [make love]",
|
11
|
+
"1:07:55.761" , "1:07:58.782", "profanity", "idiot", "Eh don't tug it [idiot] Well that's very considerate of you my dear",
|
12
|
+
"1:25:48.334" , "1:25:51.656", "profanity", "idiot", "Take that horse and put it back under that [idiot]",
|
13
|
+
|
14
|
+
],
|
15
|
+
|
16
|
+
"blank_outs" => [
|
17
|
+
# an example line, uncomment the leading "#" to make it active
|
18
|
+
# "00:03:00.0" , "00:04:00.0", "violence", "of some sort",
|
19
|
+
],
|
20
|
+
|
21
|
+
"volume_name" => "JESTER",
|
22
|
+
"disk_unique_id" => "a0eadedd|449cd867", # 6065.400 30 fps subs 102393
|
23
|
+
#-> 1:41:11.465, ts 01:41:10.94, mkv 01:41:13.01
|
24
|
+
"dvd_title_track" => "1",# "not edited out stuff" => "some violence",
|
25
|
+
# "closing thoughts" => "still...",
|
26
|
+
# "mplayer_dvd_splits" => [lots...],
|