2009-08-01から1ヶ月間の記事一覧

rubyで指定したディレクトリ内のflvファイルからmp3抽出

require "shell" FLV_DIR_PATH = "FLVファイル保存ディレクトリ名" RESULT_DIR = "MP3ファイル保存ディレクトリ名" CONVERT_SH_FILE_NAME = "convert.sh" # mp3ファイル生成 def createMp3File(name) resultName = toMp3Name(name) sh = Shell.new() sh.syst…

GAEサンプル動かすまで

eclipse plugin update site http://dl.google.com/eclipse/plugin/3.4 eclipseにpydev pluginインストール済みGoogle App Engine SDK for Pythonをダウンロード http://code.google.com/intl/ja/appengine/downloads.html#Google_App_Engine_SDK_for_Python…