「QuickTime」の版間の差分
提供: MacWiki
(→QuickTime VR) |
(→QuickTime VR) |
||
行10: | 行10: | ||
*http://www.apple.com/jp/quicktime/technologies/qtvr/ | *http://www.apple.com/jp/quicktime/technologies/qtvr/ | ||
− | |||
*http://www.goodpic.com/mt/archives2/2006/03/quicktime_vr.html | *http://www.goodpic.com/mt/archives2/2006/03/quicktime_vr.html | ||
*http://www.shiftmode.net/sync/2006/12/quicktime-vr/ | *http://www.shiftmode.net/sync/2006/12/quicktime-vr/ | ||
− | + | *→[[パノラマ]](QuickTime VR以外の情報等) | |
<!-- | <!-- | ||
QuickTime VRではないけど、パノラマ写真の作成 | QuickTime VRではないけど、パノラマ写真の作成 |
2010年5月15日 (土) 16:46時点における版
目次
QuickTime とは?
ムービーや音楽などを扱う Mac OS X のマルチメディア技術です。 詳しくは Wikipedia:QuickTime などを参照して下さい。
QuickTime VR
- http://www.apple.com/jp/quicktime/technologies/qtvr/
- http://www.goodpic.com/mt/archives2/2006/03/quicktime_vr.html
- http://www.shiftmode.net/sync/2006/12/quicktime-vr/
- →パノラマ(QuickTime VR以外の情報等)
Text Descriptors (テキストディスクリプタ)
- http://www.apple.com/jp/quicktime/tutorials/texttracks.html
- http://www.apple.com/jp/quicktime/tutorials/textdescriptors.html
- http://docs.info.apple.com/jarticle.html?artnum=42643
- http://betternottellyounow.cocolog-nifty.com/betterhtmlexport/quicktimetext/index.html
AppleScript
フルスクリーンで動画を再生
- 開いている最前面の動画をフルスクリーンで再生する
tell application "QuickTime Player" -- set sound volume of front movie to 128 -- 音量の変更 (0-384),256で100%の音量 present front movie scale screen -- present movie 1 scale screen -- set muted of front movie to true -- ミュート end tell
- http://www.microsoft.com/japan/mac/column/98.mspx
- http://www.misawa.net/
- http://punk-apple.livejournal.com/224368.html
- http://www.macworld.com/weblogs/mac911/2005/08/fullscreen/index.php
- http://www.osxblog.co.uk/tip/full-screen-quicktime-for-free/
- http://www33.ocn.ne.jp/~xinoue/mactipsx/playerScripts.html
- http://www.h5.dion.ne.jp/~maclab/script/script-QuickTime.html
- QT Full Screen http://www.macparc.ch/mirror/QT_Full_Screen/
- QTMX http://face.page.ne.jp/web/soft/qtmx/
- 動画を1つずつ全て再生する (もちろん動画だけでなく、MP3等も再生できる)
tell application "Finder" to set theList to every file of folder "TV" of (path to movies folder) tell application "QuickTime Player" repeat with aFile in theList open aFile present movie 1 scale screen repeat until not (playing of movie 1) delay 1 end repeat close movie 1 end repeat end tell
連番になっている画像を連結した動画を作成する (画像はすべて同じ寸法)
tell application "QuickTime Player" activate set firstFile to choose file with prompt "連番の最初のファイルを選択" open image sequence firstFile seconds per frame 2 -- open image sequence firstFile frames per second 2 save movie 1 as self contained end tell
QuickTime のスクリプト
- Apple の QuickTime Player サンプルスクリプト集(英語)
- QuickTime Player Pro (6.5版以上) 用のサンプルスクリプト
関連するソフトウェア
- Miyu
ムービーに字幕を追加して書き出すアプリケーション。フリーウェア。
http://www.fluffalopefactory.com/miyu/index.html
- Subberbian
QuickTimeで開けるあらゆるムービーに字幕を付加して書き出すアプリケーション。フリーウェア。
http://pencilsoftware.com/Subberbian.html