sensible-cinema 0.19.4 → 0.19.5
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.
- data/ChangeLog +4 -0
- data/Rakefile +15 -1
- data/TODO +5 -5
- data/VERSION +1 -1
- data/bin/sensible-cinema +1 -1
- data/sensible-cinema.gemspec +1 -1
- data/spec/notes +16 -0
- metadata +2 -2
data/ChangeLog
CHANGED
data/Rakefile
CHANGED
|
@@ -112,12 +112,26 @@ task 'create_distro_dir' do
|
|
|
112
112
|
p 'created (still need to zip it) ' + dir_out
|
|
113
113
|
end
|
|
114
114
|
|
|
115
|
+
task 'zip' do
|
|
116
|
+
name = 'sensible-cinema-' + File.read('VERSION').strip
|
|
117
|
+
c = "\"c:\\Program Files\\7-Zip\\7z.exe\" a -tzip -r #{name}.zip #{name}"
|
|
118
|
+
raise unless system("\"c:\\Program Files\\7-Zip\\7z.exe\" a -tzip -r #{name}.zip #{name}")
|
|
119
|
+
FileUtils.rm_rf name
|
|
120
|
+
p 'created ' + name + '.zip, and deleted its folder'
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
task 'deploy' do
|
|
124
|
+
name = 'sensible-cinema-' + File.read('VERSION').strip + ".zip"
|
|
125
|
+
raise unless system("scp #{name} wilkboar@myfavoritepal.com:~/www/rogerdpackt28/sensible-cinema")
|
|
126
|
+
end
|
|
127
|
+
|
|
115
128
|
desc 'j -S rake bundle_dependencies create_distro_dir ... (releases with clean cache dir, which we need now)'
|
|
116
129
|
task 'full_release' => [:bundle_dependencies, :create_distro_dir, :build] do # :release sigh
|
|
117
130
|
gems = Dir['pkg/*.gem']
|
|
118
131
|
gems[0..-2].each{|f| File.delete f} # kill old versions...
|
|
119
132
|
system("#{Gem.ruby} -S gem push #{gems[-1]}")
|
|
120
133
|
FileUtils.rm_rf 'pkg'
|
|
121
|
-
|
|
134
|
+
Rake::Task["zip"].execute
|
|
122
135
|
system("git push origin master")
|
|
136
|
+
puts "don't forget to blog about it...and upload .zip of it..."
|
|
123
137
|
end
|
data/TODO
CHANGED
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
linearize edl's
|
|
15
15
|
don't use them linear, just linearize
|
|
16
16
|
not this release
|
|
17
|
+
partner for filters (Jon, Karlie if interested...give beta)
|
|
18
|
+
lotsa filters somehow
|
|
19
|
+
my dvd's (loose timestamps...)
|
|
20
|
+
partners'...
|
|
21
|
+
only after linearize
|
|
17
22
|
mpeg is lossy (at least my current one pass conversion still is...) AND SO SLOW FOR EDITING and smplayer can't play it right unedited
|
|
18
23
|
frame accurate splitter
|
|
19
24
|
can I use ffmpeg to re-sync audio, and be able to re-play the edited copy, and thus avoid the small but extra harddup overhead (basically "just avoid")?
|
|
20
25
|
I can live with "watching while grabbing" being lack luster...or maybe I can grab it with acodec copy (typically), then reencode it somehow later into something that is friendlier to computer players...or is it encoders?
|
|
21
26
|
appears the only messed up audio one is smplayer...and probably mplayer with DVD's [?]
|
|
22
27
|
do this after frame accurate
|
|
23
|
-
partner for filters (Jon, Karlie if interested...give beta)
|
|
24
|
-
lotsa filters somehow
|
|
25
|
-
my dvd's (loose timestamps...)
|
|
26
|
-
partners'...
|
|
27
|
-
only after linearize
|
|
28
28
|
button start EDL playback here [?] (for create mode)
|
|
29
29
|
beta release/rinse and repeat with various ppl (once it's releasable...)
|
|
30
30
|
a real'ish-er website
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.19.
|
|
1
|
+
0.19.5
|
data/bin/sensible-cinema
CHANGED
|
@@ -496,8 +496,8 @@ EOL
|
|
|
496
496
|
# lodo NonBlockingDialog once it can get to the top instead of being so buried...
|
|
497
497
|
show_file = "explorer /e,/select,\"#{File.expand_path(saved_to).to_filename}\""
|
|
498
498
|
system_blocking show_file # returns immediately
|
|
499
|
-
show_blocking_message_dialog "Done--you may now watch file #{saved_to} in SMPlayer or VLC player"
|
|
500
499
|
PlayAudio.play(File.expand_path(File.dirname(__FILE__)) + "/../vendor/music.wav")
|
|
500
|
+
show_blocking_message_dialog "Done--you may now watch file #{saved_to} in SMPlayer or VLC player"
|
|
501
501
|
end
|
|
502
502
|
else
|
|
503
503
|
show_blocking_message_dialog("Failed--please examine console output and report back!\nAlso consult the troubleshooting section of the README file.", "Failed", JOptionPane::ERROR_MESSAGE)
|
data/sensible-cinema.gemspec
CHANGED
data/spec/notes
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
smplayer on HP2 -> edited version (ffmpeg through mencoder) with oac copy, is off by an annoying split second when replayed in smplayer
|
|
2
|
+
|
|
3
|
+
smplayer on fulli oac copy HP 2 *fails* everywhere almost sync-wise
|
|
4
|
+
|
|
5
|
+
edl *fails* with HP at the 2 hour mark, audio. The audio did seem to line up, at least, with their lips.
|
|
6
|
+
and if it's video--fails the same. Seems to think it's at second 2678, or minute 44, not minute 120?
|
|
7
|
+
|
|
8
|
+
smplayer on bob pets pickle and baby has sync'ed audio with oac copy
|
|
9
|
+
in general, if it starts sync'ed, smplayer stays in sync all the way through
|
|
10
|
+
|
|
11
|
+
got av_interleaved_write_frame(): Operation not permitted
|
|
12
|
+
on call ffmpeg -i C:\HP_AND_THE_CHAMBER_OF_SECRETS_edited_version.fulli_unedited.tmp.mpg -vcodec copy -acodec copy -'
|
|
13
|
+
;?Pss 749.0 -t 4109.999 C:\HP_AND_THE_CHAMBER_OF_SECRETS_edited_version.5.avi
|
|
14
|
+
then it passed (reading off the "old fulli" with poor audio) when did it again. huh?
|
|
15
|
+
out of disk?
|
|
16
|
+
|
|
1
17
|
edl works *great* with cars at 15 minutes, and appears to at an hour, too. Oh, and the audio matches perfectly.
|
|
2
18
|
|
|
3
19
|
The kicker is that if I want to watch the "unedited all" option in mplayer (which I do for the "quick start" mode), then it needs to be as is...
|