This file contains hidden or 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
| #!/usr/bin/ruby | |
| # -*- encoding: UTF-8 -*- | |
| # AUDIO_CODEC=" -acodec copy -absf aac_adtstoasc" | |
| AUDIO_CODEC=" -acodec libfaac -aq 110" | |
| acodec = AUDIO_CODEC | |
| file = File::expand_path( ARGV[0] ) | |
| out = ARGV[1] | |
| exit 1 unless File.exist?(file) |
This file contains hidden or 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
| diff -r b14397800eae recpt1/tssplitter_lite.c | |
| --- a/recpt1/tssplitter_lite.c Wed Jun 27 06:56:33 2012 +0900 | |
| +++ b/recpt1/tssplitter_lite.c Thu Sep 06 13:55:51 2012 +0900 | |
| @@ -269,6 +269,13 @@ | |
| { | |
| int result = TSS_NULL; | |
| int i; | |
| + char **p; | |
| + int keep_eit = 0; | |
| + p = splitter->sid_list; |
This file contains hidden or 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
| #!/usr/bin/ruby1.9.1 | |
| require 'oauth' | |
| require 'webrick' | |
| require 'yaml' | |
| CONFIG_TUMBLR = "#{ENV['HOME']}/.tumblr_oauth" | |
| config = {} | |
| if File.exist? CONFIG_TUMBLR |
NewerOlder