sensible-cinema 0.23.6 → 0.24.0

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.
Files changed (42) hide show
  1. data/LICENSE.TXT +1 -1
  2. data/README +8 -6
  3. data/Rakefile +1 -1
  4. data/TODO +62 -41
  5. data/VERSION +1 -1
  6. data/bin/sensible-cinema +395 -278
  7. data/bin/sensible-cinema-cli +1 -1
  8. data/change_log_with_feature_list.txt +16 -0
  9. data/developer_how_to_contribute_to_the_project.txt +1 -1
  10. data/documentation/{README.TXT → DOCUMENTATION_README.TXT} +0 -0
  11. data/documentation/how_to_create_your_own_delete_lists.txt +7 -7
  12. data/experimental_online_player_ocr_readme.txt +2 -2
  13. data/lib/check_installed_mac.rb +16 -4
  14. data/lib/drive_info.rb +2 -2
  15. data/lib/edl_parser.rb +13 -9
  16. data/lib/mencoder_wrapper.rb +18 -9
  17. data/lib/mplayer_edl.rb +4 -1
  18. data/lib/shutdown_kill.rb +32 -0
  19. data/lib/subtitle_profanity_finder.rb +13 -5
  20. data/lib/swing_helpers.rb +4 -0
  21. data/spec/notes +331 -8
  22. data/spec/sensible_cinema_gui.spec.rb +34 -22
  23. data/template_bats/{advanced--create or edit sensible cinema delete list files.bat → advanced--create or edit sensible cinema edit list files.bat} +0 -0
  24. data/todo.upconvert +13 -0
  25. data/upconvert.bat +2 -0
  26. data/www/index.html +11 -9
  27. data/zamples/edit_decision_lists/dvds/{zz_example_delete_list_that_has_no_cuts_in_it.txt → aa_example_delete_list_that_has_no_cuts_in_it.txt} +0 -0
  28. data/zamples/edit_decision_lists/dvds/{bambi.txt → edls_being_edited/bambi.txt} +0 -0
  29. data/zamples/edit_decision_lists/dvds/{edl_for_unit_tests.txt → edls_being_edited/edl_for_unit_tests.txt} +0 -0
  30. data/zamples/edit_decision_lists/dvds/edls_being_edited/iq.txt +32 -0
  31. data/zamples/edit_decision_lists/dvds/edls_being_edited/other_side_of_heaven.txt +19 -0
  32. data/zamples/edit_decision_lists/dvds/edls_being_edited/snow_white_and_the_7_dwarfs_1937.txt +19 -0
  33. data/zamples/edit_decision_lists/dvds/{potter_prisoner_of_azkaban.txt → harry_potter_prisoner_of_azkaban.txt} +0 -0
  34. data/zamples/edit_decision_lists/{dvds/old_and_inaccurate → old_not_yet_updated/dvds}/White Christmas.txt +0 -0
  35. data/zamples/edit_decision_lists/{dvds/old_and_inaccurate → old_not_yet_updated/dvds}/all_dogs_go_to_heaven.txt +0 -0
  36. data/zamples/edit_decision_lists/{dvds/old_and_inaccurate → old_not_yet_updated/dvds}/cars_disney.txt +1 -1
  37. data/zamples/edit_decision_lists/{dvds/old_and_inaccurate → old_not_yet_updated/dvds}/happy_feet.txt +0 -0
  38. data/zamples/edit_decision_lists/{dvds/old_and_inaccurate → old_not_yet_updated/dvds}/labyrinth.txt +0 -0
  39. data/zamples/edit_decision_lists/{dvds/old_and_inaccurate → old_not_yet_updated/dvds}/making marriage work.txt +0 -0
  40. data/zamples/edit_decision_lists/{dvds/old_and_inaccurate → old_not_yet_updated/dvds}/star_trek_generations_hulu.txt +0 -0
  41. metadata +21 -16
  42. data/zamples/edit_decision_lists/category descriptions.txt +0 -35
@@ -114,7 +114,9 @@ module SensibleSwing
114
114
  end
115
115
 
116
116
  before do
117
+ ARGV << "--create-mode" # want all the buttons for some tests.
117
118
  @subject = MainWindow.new
119
+ ARGV.pop
118
120
  @subject.stub!(:choose_dvd_drive_or_file) {
119
121
  ["mock_dvd_drive", "Volume", Test_DVD_ID] # happiest baby on the block
120
122
  }
@@ -177,7 +179,9 @@ module SensibleSwing
177
179
 
178
180
  # name like :@rerun_previous
179
181
  def click_button(name)
180
- @subject.instance_variable_get(name).simulate_click
182
+ button = @subject.instance_variable_get(name)
183
+ raise 'button not found: ' + name.to_s unless button
184
+ button.simulate_click
181
185
  end
182
186
 
183
187
  it "should be able to run system" do
@@ -185,7 +189,7 @@ module SensibleSwing
185
189
  end
186
190
 
187
191
  it "should be able to do a normal copy to hard drive, edited" do
188
- @subject.do_copy_dvd_to_hard_drive(false).should == [false, "abc.fulli_unedited.tmp.mpg"]
192
+ @subject.do_copy_dvd_to_hard_drive_via_file(false).should == [false, "abc.fulli_unedited.tmp.mpg"]
189
193
  File.exist?('test_file_to_see_if_we_have_permission_to_write_to_this_folder').should be false
190
194
  end
191
195
 
@@ -199,8 +203,8 @@ module SensibleSwing
199
203
  count += 1
200
204
  'abc'
201
205
  }
202
- @subject.do_copy_dvd_to_hard_drive(false).should == [false, "abc.fulli_unedited.tmp.mpg"]
203
- 3.times { @subject.do_copy_dvd_to_hard_drive(false) }
206
+ @subject.do_copy_dvd_to_hard_drive_via_file(false).should == [false, "abc.fulli_unedited.tmp.mpg"]
207
+ 3.times { @subject.do_copy_dvd_to_hard_drive_via_file(false) }
204
208
  count.should == 2
205
209
  end
206
210
 
@@ -210,11 +214,11 @@ module SensibleSwing
210
214
  @subject.get_title_track(descriptors).should == "3"
211
215
  end
212
216
 
213
- it "should call through to explorer for the full thing" do
217
+ it "should call through to explorer to display the final output file" do
214
218
  PlayAudio.stub!(:play) {
215
219
  @played = true
216
220
  }
217
- @subject.do_copy_dvd_to_hard_drive(false)
221
+ @subject.do_copy_dvd_to_hard_drive_via_file(false)
218
222
  @subject.background_thread.join
219
223
  @get_mencoder_commands_args[-4].should == nil
220
224
  @system_blocking_command.should match /explorer/
@@ -224,12 +228,12 @@ module SensibleSwing
224
228
 
225
229
  it "should be able to return the fulli name if it already exists" do
226
230
  FileUtils.touch "abc.fulli_unedited.tmp.mpg.done"
227
- @subject.do_copy_dvd_to_hard_drive(false,true).should == [true, "abc.fulli_unedited.tmp.mpg"]
231
+ @subject.do_copy_dvd_to_hard_drive_via_file(false,true).should == [true, "abc.fulli_unedited.tmp.mpg"]
228
232
  FileUtils.rm "abc.fulli_unedited.tmp.mpg.done"
229
233
  end
230
234
 
231
235
  it "should call explorer eventually, if it has to create the fulli file" do
232
- @subject.do_copy_dvd_to_hard_drive(true).should == [false, "abc.fulli_unedited.tmp.mpg"]
236
+ @subject.do_copy_dvd_to_hard_drive_via_file(true).should == [false, "abc.fulli_unedited.tmp.mpg"]
233
237
  join_background_thread
234
238
  @get_mencoder_commands_args[-2].should == "2"
235
239
  @get_mencoder_commands_args[-3].should == "01:00"
@@ -265,11 +269,8 @@ module SensibleSwing
265
269
  end
266
270
 
267
271
  it "should call something for fast preview" do
268
- click_button(:@fast_preview).join
269
- join_background_thread
270
- #XXXX @system_blocking_command.should =~ /ffmpeg.*ntsc-dvd/ # I think this is a timing thing...
272
+ click_button(:@fast_preview)
271
273
  @system_blocking_command.should =~ /smplayer/
272
- @system_blocking_command.should_not =~ /mplayer.*fast/ # the old way
273
274
  end
274
275
 
275
276
  it "should be able to rerun the latest start and end times with the rerun button" do
@@ -310,11 +311,11 @@ module SensibleSwing
310
311
 
311
312
  it "if the .done files exists, do_copy... should call smplayer ja" do
312
313
  FileUtils.touch "abc.fulli_unedited.tmp.mpg.done"
313
- @subject.do_copy_dvd_to_hard_drive(false, true, true).should == [true, "abc.fulli_unedited.tmp.mpg"]
314
+ @subject.do_copy_dvd_to_hard_drive_via_file(false, true, true).should == [true, "abc.fulli_unedited.tmp.mpg"]
314
315
  end
315
316
 
316
317
  it "should create a new file for ya" do
317
- out = MainWindow::EDL_DIR + "/sweetest_disc_ever.txt"
318
+ out = MainWindow::EDL_DIR + "/edls_being_edited/sweetest_disc_ever.txt"
318
319
  File.exist?( out ).should be_false
319
320
  @subject.stub!(:get_user_input) {'sweetest disc ever'}
320
321
  @subject.instance_variable_get(:@create_new_edl_for_current_dvd).simulate_click
@@ -335,9 +336,13 @@ module SensibleSwing
335
336
  end
336
337
 
337
338
  it "should create an edl and pass it through to mplayer" do
339
+ smplayer_opts = nil
340
+ @subject.stub(:set_smplayer_opts) { |to_this|
341
+ smplayer_opts = to_this
342
+ }
338
343
  click_button(:@mplayer_edl).join
339
- @system_blocking_command.should match(/mplayer.*-edl/)
340
- @system_blocking_command.should match(/-dvd-device /)
344
+ smplayer_opts.should match(/-edl /)
345
+ @system_blocking_command.should match(/dvdnav/)
341
346
  end
342
347
 
343
348
  it "should play edl with extra time for the mutes because of the EDL aspect" do
@@ -443,19 +448,26 @@ module SensibleSwing
443
448
  end
444
449
  end
445
450
 
446
- it "should not show the normal buttons in create mode" do
447
- MainWindow.new.buttons.length.should == 5
451
+ it "should show additional buttons in create mode" do
452
+ MainWindow.new.buttons.length.should == 6
453
+ old_length = MainWindow.new.buttons.length
448
454
  ARGV << "--create-mode"
449
- MainWindow.new.buttons.length.should == 17
455
+ MainWindow.new.buttons.length.should be > (old_length + 5)
450
456
  ARGV.pop # post-test cleanup--why not :)
451
457
  end
458
+
459
+ it "should show upconvert buttons" do
460
+ ARGV << "--upconvert-mode"
461
+ MainWindow.new.buttons.length.should be > 3
462
+ ARGV.pop
463
+ end
452
464
 
453
465
  it "should read splits from the file" do
454
466
  splits1 = nil
455
467
  MplayerEdl.stub(:convert_to_edl) do |d,s,s,splits|
456
468
  splits1 = splits
457
469
  end
458
- @subject.do_mplayer_edl nil, 0, 0
470
+ @subject.play_mplayer_edl
459
471
  splits1.should == []
460
472
  end
461
473
 
@@ -465,7 +477,7 @@ module SensibleSwing
465
477
  @subject.stub!(:choose_dvd_drive_or_file) {
466
478
  ["mock_dvd_drive", "mockVolume", "abcdef1234"]
467
479
  }
468
- @subject.do_mplayer_edl(nil, 0, 0)
480
+ @subject.play_mplayer_edl
469
481
  @show_blocking_message_dialog_last_arg.should =~ /does not contain mplayer replay information \[mplayer_dvd_splits\]/
470
482
  end
471
483
  end
@@ -496,7 +508,7 @@ module SensibleSwing
496
508
  @subject.stub(:assert_ownership_dialog) {
497
509
  prompted = true
498
510
  }
499
- @subject.stub(:new_existing_file_selector_and_select_file).and_return("yo.mpg", "zamples\\edit_decision_lists\\dvds/edl_for_unit_tests.txt")
511
+ @subject.stub(:new_existing_file_selector_and_select_file).and_return("yo.mpg", "zamples/edit_decision_lists/dvds/edls_being_edited/edl_for_unit_tests.txt")
500
512
  click_button(:@create_dot_edl)
501
513
  assert File.exist? 'yo.edl'
502
514
  assert prompted
data/todo.upconvert ADDED
@@ -0,0 +1,13 @@
1
+ lower cs?
2
+
3
+ -zoom -sws 9 -vf scale=1280:720:::9:10 -ssf ls=74.0 -ssf cs=7.0
4
+
5
+ lanczos 10?
6
+
7
+ hqdn3d settings?
8
+
9
+ opengl?
10
+
11
+ == never ==
12
+
13
+ sharpen filter?
data/upconvert.bat ADDED
@@ -0,0 +1,2 @@
1
+ @rem NB that you can call it like go --debug
2
+ call j %* bin\sensible-cinema --upconvert-mode
data/www/index.html CHANGED
@@ -22,7 +22,7 @@
22
22
  <html>
23
23
  <pre>
24
24
  Welcome to the (work in progress) home page of Sensible Cinema, the free video scene skipper/muter.
25
- It Allows you watch edited movies by applying delete lists (EDL's) (i.e. "mute out" or "cut out" questionable scenes) to DVD's.
25
+ It Allows you watch edited movies by applying edit lists (EDL's) (i.e. "mute out" or "cut out" questionable scenes) to DVD's.
26
26
 
27
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>. Don't forget to come back to this page to download it, though (see below).
28
28
 
@@ -48,27 +48,29 @@ $ sudo port install mencoder mplayer ffmpeg gocr
48
48
  After this finishes (it will take awhile) you'll be ready to run Sensible Cinema.
49
49
  Note that by installing these, you're accepting their respective licenses/distributions.
50
50
 
51
- <h3>Available delete lists</h3>
52
- You can see the (small) current list of DVD delete lists thus far available <a href="https://github.com/rdp/sensible-cinema/tree/master/zamples/edit_decision_lists/dvds">here</a> (all of them created earlier by volunteers like you).
51
+ <h3>Available edit lists</h3>
52
+ You can see the (small) current list of DVD edit lists thus far available <a href="https://github.com/rdp/sensible-cinema/tree/master/zamples/edit_decision_lists/dvds">here</a> (all of them created earlier by volunteers like you).
53
53
  If yours is already there, then you should be good to go.
54
54
 
55
- If yours isn't there, then we'd ask you to help us by creating and submitting your own "delete list" for the DVD that doesn't have one yet,
56
- see the <a href="https://github.com/rdp/sensible-cinema/blob/master/how_to_create_your_own_delete_lists.txt">how to create</a> file for instructions on creating a new delete list. <!-- this is actually a short line -->
57
- Then run the file "advanced-edit or create sensible cinema delete list files.bat" to create and edit your new delete list.
55
+ If yours isn't there, then we'd ask you to help us by creating and submitting your own "edit list" for the DVD that doesn't have one yet,
56
+ see the <a href="https://github.com/rdp/sensible-cinema/blob/master/how_to_create_your_own_delete_lists.txt">how to create</a> file for instructions on creating a new edit list. <!-- this is actually a short line -->
57
+ Then run the file "advanced-edit or create sensible cinema edit list files.bat" to create and edit your new edit list file.
58
58
  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
59
 
60
60
  This is the full list--your help is wanted/needed!
61
61
 
62
62
  <h2 style="margin: 0px;">Other Resources/Contact</h2>
63
63
  Let me know via the <a href="http://groups.google.com/group/sensible-cinema?pli=1">google group</a> or email sensible-cinema@googlegroups.com or rogerdpack@gmail.com if you have feedback or have any other ideas/suggestions.
64
- <h3>Source code</h3>
65
- Source code is 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/development.txt">here</a>. For (techy or non-techy) contributions, see the contact info in the README file, or write to the google group, above.
64
+ <h3>Source code</h3> Source code is 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/development.txt">here</a>.
65
+ For (techy or non-techy) contributions, see the contact info in the README file, or write to the google group, above.
66
66
 
67
67
  Sensible cinema is currently windows only, ping me if you want this changed.
68
68
 
69
69
  You can see the <a href="source/change_log_with_feature_list.txt">change log with feature list</a> and also on github.
70
70
 
71
- Please click the license agreement to see list of older releases.
71
+ You can get a list of "test" creative commons DVD ISO's <a href="releases/dvd_isos">here</a>, if you want to try them out for experimenting/development/research etc.
72
+
73
+ Please click the license agreement checkbox at the top to see list of old releases (newer ones are found on sourceforge exclusively, as well as on rubygems).
72
74
  <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>.
73
75
 
74
76
  </div>
@@ -0,0 +1,32 @@
1
+ # comments can go after a # on any line, for example this one.
2
+ "name" => "iq",
3
+
4
+ "mutes" => [
5
+ "00:04:23.329" , "00:04:24.887", "profanity", "b.....", "Come on you little [b.....]",
6
+ "00:14:35.574" , "00:14:40.136", "profanity", "genital", "He puts electrodes on the [genital]s of the rats",
7
+ "00:20:15.747" , "00:20:17.772", "profanity", "sex", "that's something akin to [sex]ual climax",
8
+ "00:25:28.327" , "00:25:31.057", "profanity", "deity", "My [deity] he's the head of the whole department",
9
+ "00:25:53.285" , "00:25:56.186", "profanity", "make love", "What because l won't [make love] to you in the middle",
10
+ "00:28:45.123" , "00:28:47.614", "profanity", "deity", "Learn to drive for [deity]'s sake", # mkv...TOO EARLY
11
+ "00:44:30.300" , "00:44:32.598", "profanity", "deity", "My [deity] the mazes must be enormous",
12
+ "00:46:26.5" , "00:46:28.614", "profanity", "deity", "Oh my [deity] that's you", # this one was off somehow?
13
+ "00:54:45.615" , "00:54:47.082", "profanity", "he..", "Who the [he..] are you",
14
+ "01:16:25.513" , "01:16:27.447", "profanity", "deity", "Oh my [deity]",
15
+ "01:19:20.254" , "01:19:22.586", "profanity", "deity", "Oh for [deity]'s sake",
16
+ "01:20:29.957" , "01:20:32.721", "profanity", "he..", "What the [he..] does an automobile mechanic",
17
+ "01:30:43.970" , "01:30:45.597", "profanity", "deity", "Oh my [deity]",
18
+
19
+ ],
20
+
21
+ "blank_outs" => [
22
+ # an example line, uncomment the leading "#" to make it active
23
+ # "00:03:00.0" , "00:04:00.0", "violence", "of some sort",
24
+ ],
25
+
26
+ "volume_name" => "IQ",
27
+ "disk_unique_id" => "75ce05d8|9e597164",
28
+ "dvd_title_track" => "1",
29
+ "opensubtitles_number" => "195359",
30
+ # "not edited out stuff" => "some violence",
31
+ # "closing thoughts" => "",
32
+ # "mplayer_dvd_splits" => [], # too many to count! Not worth it probably...
@@ -0,0 +1,19 @@
1
+ # comments can go after a # on any line, for example this one.
2
+ "name" => "The other side of heaven",
3
+
4
+ "mutes" => [
5
+ # an example line, uncomment the leading "#" to make it active
6
+ # "0:00:01.0", "0:00:02.0", "profanity", "da..",
7
+ ],
8
+
9
+ "blank_outs" => [
10
+ # an example line, uncomment the leading "#" to make it active
11
+ # "00:03:00.0" , "00:04:00.0", "violence", "of some sort",
12
+ ],
13
+
14
+ "volume_name" => "OTHER_SIDE_OF_HEAVEN",
15
+ "disk_unique_id" => "9338ab59|48d01042",
16
+ "dvd_title_track" => "1", # most DVD's use title 1. Not all do, though. If sensible-cinema plays anything except the main title (for example, it plays a trailer), when you use it, see http://goo.gl/QHLIF to set this right.
17
+ # "not edited out stuff" => "some violence",
18
+ # "closing thoughts" => "still...",
19
+ # "mplayer_dvd_splits" => ["59:59", "1:04:59"], # in mplayer, the DVD timestamp "resets" to zero for some reason, see http://goo.gl/yMfqX to set this value right. Note that [] is valid, if there are no resets.
@@ -0,0 +1,19 @@
1
+ # comments can go after a # on any line, for example this one.
2
+ "name" => "snow white and the 7 dwarfs 1937",
3
+
4
+ "mutes" => [
5
+ # an example line, uncomment the leading "#" to make it active
6
+ # "0:00:01.0", "0:00:02.0", "profanity", "da..",
7
+ ],
8
+
9
+ "blank_outs" => [
10
+ # an example line, uncomment the leading "#" to make it active
11
+ # "00:03:00.0" , "00:04:00.0", "violence", "of some sort",
12
+ ],
13
+
14
+ "volume_name" => "Snow_White",
15
+ "disk_unique_id" => "4a3cd891|ab315d08",
16
+ "dvd_title_track" => "1", # most DVD's use title 1. Not all do, though. If sensible-cinema plays anything except the main title (for example, it plays a trailer), when you use it, see http://goo.gl/QHLIF to set this right.
17
+ # "not edited out stuff" => "some violence",
18
+ # "closing thoughts" => "still...",
19
+ # "mplayer_dvd_splits" => [a lot!], # or [] if there are none. In mplayer, the DVD timestamp "resets" to zero for some reason, so you need to specify when if you want to use mplayer DVD realtime playback, or use mencoder -edl to split your file. See http://goo.gl/yMfqX
@@ -20,5 +20,5 @@ mutes:
20
20
  "1:30:02" : "1:30:04" # thank the manufacturer...
21
21
  "1:39:13.1" : "1:39:14.0" # hot snot we're back in business
22
22
  "1:55:38" : "1:55:40" # for the "love of Chrysler" please....
23
- dvd_title_track: 23
23
+ dvd_title_track: 23 # NB that there's another DVD out there with a different label...CRZ0NNF1 track 21 "disk_unique_id" => "aa06ad1c|e1e62ad0",
24
24
  dvd_drive_label: "CRZ0NNW7 "
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: sensible-cinema
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.23.6
5
+ version: 0.24.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Roger Pack
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-07-01 00:00:00 -06:00
13
+ date: 2011-07-09 00:00:00 -06:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -223,7 +223,7 @@ files:
223
223
  - business_ideas.txt
224
224
  - change_log_with_feature_list.txt
225
225
  - developer_how_to_contribute_to_the_project.txt
226
- - documentation/README.TXT
226
+ - documentation/DOCUMENTATION_README.TXT
227
227
  - documentation/how_to_create_your_own_delete_lists.txt
228
228
  - documentation/how_to_get_files_from_dvd.txt
229
229
  - documentation/is_it_legal_to_copy_dvds.txt
@@ -259,6 +259,7 @@ files:
259
259
  - lib/overlayer.rb
260
260
  - lib/play_audio.rb
261
261
  - lib/screen_tracker.rb
262
+ - lib/shutdown_kill.rb
262
263
  - lib/storage.rb
263
264
  - lib/subtitle_profanity_finder.rb
264
265
  - lib/swing_helpers.rb
@@ -294,12 +295,14 @@ files:
294
295
  - spec/vlc_programmer.spec.rb
295
296
  - template_bats/RUN SENSIBLE CINEMA CLICK HERE.bat
296
297
  - template_bats/_DO_NOT_RUN_IT_FROM_HERE_DOWNLOAD_THE_RELEASE_ZIP_FROM_SOURCEFORGE_INSTEAD
297
- - template_bats/advanced--create or edit sensible cinema delete list files.bat
298
+ - template_bats/advanced--create or edit sensible cinema edit list files.bat
298
299
  - todo.build_library.txt
299
300
  - todo.inventionzy.txt
300
301
  - todo.open_edl_list_org.txt
301
302
  - todo.propaganda
302
303
  - todo.subtitle
304
+ - todo.upconvert
305
+ - upconvert.bat
303
306
  - vendor/jruby-complete-1.6.2.jar
304
307
  - vendor/mac_dvdid/bin/dvdid
305
308
  - vendor/mac_dvdid/include/dvdid/dvdid.h
@@ -313,35 +316,37 @@ files:
313
316
  - vendor/readme.txt
314
317
  - vendor/tsmuxer_1.10.6/licence.txt
315
318
  - www/index.html
316
- - zamples/edit_decision_lists/category descriptions.txt
317
319
  - zamples/edit_decision_lists/dvds/Harry Potter 2.txt
318
- - zamples/edit_decision_lists/dvds/bambi.txt
320
+ - zamples/edit_decision_lists/dvds/aa_example_delete_list_that_has_no_cuts_in_it.txt
319
321
  - zamples/edit_decision_lists/dvds/big_buck_bunny_dvd.txt
320
322
  - zamples/edit_decision_lists/dvds/bob the builder pets in a pickle.txt
321
323
  - zamples/edit_decision_lists/dvds/bobs_big_plan.txt
322
324
  - zamples/edit_decision_lists/dvds/cool runnings.txt
323
- - zamples/edit_decision_lists/dvds/edl_for_unit_tests.txt
325
+ - zamples/edit_decision_lists/dvds/edls_being_edited/bambi.txt
326
+ - zamples/edit_decision_lists/dvds/edls_being_edited/edl_for_unit_tests.txt
327
+ - zamples/edit_decision_lists/dvds/edls_being_edited/iq.txt
328
+ - zamples/edit_decision_lists/dvds/edls_being_edited/other_side_of_heaven.txt
329
+ - zamples/edit_decision_lists/dvds/edls_being_edited/snow_white_and_the_7_dwarfs_1937.txt
324
330
  - zamples/edit_decision_lists/dvds/example_delete_list.txt
325
331
  - zamples/edit_decision_lists/dvds/happiest baby on the block.txt
332
+ - zamples/edit_decision_lists/dvds/harry_potter_prisoner_of_azkaban.txt
326
333
  - zamples/edit_decision_lists/dvds/how_to_train_your_dragon.txt
327
334
  - zamples/edit_decision_lists/dvds/kung_fu_panda_1.txt
328
335
  - zamples/edit_decision_lists/dvds/legend_of_the_guardians_the_owls_of_gahoole.txt
329
336
  - zamples/edit_decision_lists/dvds/making_marriage_work.txt
330
337
  - zamples/edit_decision_lists/dvds/narnia_voyage_of_the_dawn_treader.txt
331
- - zamples/edit_decision_lists/dvds/old_and_inaccurate/White Christmas.txt
332
- - zamples/edit_decision_lists/dvds/old_and_inaccurate/all_dogs_go_to_heaven.txt
333
- - zamples/edit_decision_lists/dvds/old_and_inaccurate/cars_disney.txt
334
- - zamples/edit_decision_lists/dvds/old_and_inaccurate/happy_feet.txt
335
- - zamples/edit_decision_lists/dvds/old_and_inaccurate/labyrinth.txt
336
- - zamples/edit_decision_lists/dvds/old_and_inaccurate/making marriage work.txt
337
- - zamples/edit_decision_lists/dvds/old_and_inaccurate/star_trek_generations_hulu.txt
338
338
  - zamples/edit_decision_lists/dvds/pack_wedding_2007-03-03.txt
339
- - zamples/edit_decision_lists/dvds/potter_prisoner_of_azkaban.txt
340
339
  - zamples/edit_decision_lists/dvds/sintel_open_source_blender.txt
341
340
  - zamples/edit_decision_lists/dvds/tron_legacy.txt
342
341
  - zamples/edit_decision_lists/dvds/turn_around_alma_younger.txt
343
- - zamples/edit_decision_lists/dvds/zz_example_delete_list_that_has_no_cuts_in_it.txt
344
342
  - zamples/edit_decision_lists/netflix_instant/greatest_story_ever_told_netflix.txt
343
+ - zamples/edit_decision_lists/old_not_yet_updated/dvds/White Christmas.txt
344
+ - zamples/edit_decision_lists/old_not_yet_updated/dvds/all_dogs_go_to_heaven.txt
345
+ - zamples/edit_decision_lists/old_not_yet_updated/dvds/cars_disney.txt
346
+ - zamples/edit_decision_lists/old_not_yet_updated/dvds/happy_feet.txt
347
+ - zamples/edit_decision_lists/old_not_yet_updated/dvds/labyrinth.txt
348
+ - zamples/edit_decision_lists/old_not_yet_updated/dvds/making marriage work.txt
349
+ - zamples/edit_decision_lists/old_not_yet_updated/dvds/star_trek_generations_hulu.txt
345
350
  - zamples/edit_decision_lists/old_not_yet_updated/example_edit_decision_list.txt
346
351
  - zamples/edit_decision_lists/old_not_yet_updated/youtube/gummy_bear_song_youtube.txt
347
352
  - zamples/edit_decision_lists/youtube/demo_mutes.txt
@@ -1,35 +0,0 @@
1
- "profanity categories, so you don't have to write them":
2
-
3
- euphemization: (these prolly aren't as important to note)
4
- 1 oh my gosh
5
- 2 dang
6
- 3 crap
7
-
8
- religious reference:
9
- 1 "L*** have mercy"
10
- 2 "G.. knows"
11
-
12
- religious exclamation:
13
- 1 da**
14
- 2 he**
15
-
16
- religious exclamation deity:
17
- 1 oh my ****
18
- 2 g** d***
19
-
20
- bodily function mild:
21
- 1 crap
22
- 2 suck(s)
23
-
24
- bodily function strong:
25
- 1 s***
26
-
27
- innuendo:
28
- language that has sexual overtones
29
-
30
- sexual profanity:
31
- 1 f***
32
-
33
- body stuff:
34
- 1 a**
35
- 2 dick