Windows Embedded 製品 高性能.NET Micro Framework Windows Embedded CE Windows XP Embedded Windows XP 高機能 携帯デバイスに求められる機能.NET Micro Framework Windows Embedded

Size: px
Start display at page:

Download "Windows Embedded 製品 高性能.NET Micro Framework Windows Embedded CE Windows XP Embedded Windows XP 高機能 携帯デバイスに求められる機能.NET Micro Framework Windows Embedded"

Transcription

1 SH-MobileR と CE で作る携帯端末 ~ DirectShow でのフィルター実装手法 ~ 株式会社アキタ電子システムズソフトウェア開発部第一ソフトウェア開発 Gr 主任技師伊藤優 (ito-yu@akita-elec.co.jp) Agenda Windows Embedded 製品 DirectShow とは? Filter Graph Manager DMO:DirectX Media Object デモ SH-MobileR ミドルウェアの実装 1

2 Windows Embedded 製品 高性能.NET Micro Framework Windows Embedded CE Windows XP Embedded Windows XP 高機能 携帯デバイスに求められる機能.NET Micro Framework Windows Embedded CE Windows XP Embedded Windows XP 2

3 機能への要求と回答 要求項目 マルチメディア機能 :WMV WMA, MP3 1SEG etc. 処理能力の高さ 低消費電力 低コスト LSI としての回答 :SoC による要求実現 コーデック内蔵 :CPU 負荷の低減 動作クロックを下げることによる低消費電力化 マルチメディア機能を内蔵 IP が処理することによる CPU リソースの有効活用 SoC による性能向上 Codec 内蔵 SoC CPU CPU Core Applications DirectShow Playback App DS Filter Graph Manager Applications DirectShow Playback App DS Filter Graph Manager Source Codec Renderer Source Codec Renderer Codec IP 3

4 DirectShow とは? DirectShow: マルチメディアデータを処理するためのミドルウェアの総称 マルチメディアデータはデータ処理を行うフィルターから構成されるパイプラインにて処理される パイプラインは Filter Graph Manager により生成されるため ユーザーは意識する必要は無い Windows Media API でのアプリケーション開発が容易 多くのコーデックやフォーマットが標準でサポートされる 標準のコーデックとフォーマットのサポート Advanced Streaming Format (ASF) Motion Picture Experts Group (MPEG) Audio-Video Interleaved (AVI) MPEG Audio Layer-3 (MP3) Waveform Audio (WAV) Windows Media Audio (WMA) Windows Media Video (WMV) 4

5 WinCE マルチメディアアーキテクチャ Sample Player App, IE 6 WMP ActiveX Control DirectShow Playback App DirectShow Capture Application DS Filter Graph Manager DS Filter Graph Manager Source Codec Renderer Capture Preview Codec Muxer Network, File System DirectDraw, GDI, WaveDev File System Network, File system, Graphics, Audio, Video, Camera Drivers Hardware DirectShow Framework 概要 Application commands events File System DirectShow Filter Graph Manager Legacy VCM/ACM Codecs Internet Source filters Transfom filters Rendering filters File System Kernel Streaming Architecture Wave API DirectDraw WDM Capture Devices Legacy VFW Capture Devices Hardware Decoders Sound Card Video Graphic Card 5

6 フィルターグラフの要素 フィルターグラフフィルターピンメディアサンプルアロケータークロック サポートされる DirectShow 再生フィルター File Source Filter MPEG1 Parser/splitter AVI Splitter Wave parser Video Renderer Generic streamer Color converter MP3 filter Windows Media Source Filter DMO wrapper filter (WMA and WMV) ACM wrapper Audio Renderer Source Filters Transform Filters Renderers 6

7 Filter Graph Manager(FGM) Filter Graph Manager は自動的にデータ処理用のパイプラインを構築 Intelligent Connect フィルターはデータ入出力用のピンを持ち 受付可能なデータをフィルター自身が判断する パイプラインを任意に生成することも可能 高速起動 フィルターの切り替え DirectShow(Windows Media Technology) Input Source Filter Filter Graph Manager Transform Filter Render Filter Output DirectShow のフィルター Source Filter ローカルストレージ ネットワークストリーミングなど 入力データを取り込む Transform Filter デコード エンコードなどのデータ処理を行う Render Filter オーディオやビデオへの出力処理を行う 7

8 サポートされているフィルター ACM Wrapper Video/Image Compression Manager AVI Filter DMO Wrapper Filter File Source Filter (Async / URL) MPEG-1 Parser / Spliter Overlay Mixer Direct Show Video Render WAVE/AIFF/au/snd File Parser Generic File Streamer Audio Lip-Sync Filter MPEG-2 Program Stream Multiplexer Filter MPEG-2 Program Stream Demultiplex Filter DVR Sink Filter DVR Source Filter VBI Render Filter DirectShow アプリケーションの記述 アプリケーションの記述は簡単な 3 ステップ Step 1:FGM のインスタンスを生成する Application CoCreateInstance( CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER, IID_IGraphBuilder, void **)&pgraph ); Filter Graph Manager 8

9 DirectShow アプリケーションの記述 Step 2: フィルターグラフを構築するために FGM を使用する Application pgraph->renderfile( lpwstrfile, NULL ); FGM DirectShow アプリケーションの記述 Step 3: フィルターグラフとイベント応答を制御する Run Method calls Application FGM pgraph->queryinterface( IID_IMediaControl, (void **)&pcontrol ); pgraph->queryinterface( IID_IMediaEvent, (void **)&pevent ); Events Complete pcontrol->run(); pevent-> WaitForCompletion( INFINITE, &evcode ); 9

10 簡単な再生プログラム #include <streams.h> int WINAPI WinMain( HINSTANCE hinstance, HINSTANCE hprevinst, LPWSTR lpszcmdline, int ncmdshow ) { IGraphBuilder *pgraph = NULL; IMediaControl *pmediacontrol = NULL; IMediaEvent *pmediaevent = NULL; CoInitializeEx(NULL, COINIT_MULTITHREADED); // Step1: Create the filter graph manager. CoCreateInstance(CLSID_FilterGraph, NULL, CLSCTX_INPROC, IID_IGraphBuilder, (void **)&pgraph); pgraph->queryinterface(iid_imediacontrol, (void **)&pmediacontrol); pgraph->queryinterface(iid_imediaevent, (void **)&pmediaevent); 簡単な再生プログラム ( 続き ) } // Step2: Build the graph. pgraph->renderfile(l" Hello_World.avi",NULL); // Step3: Run the graph and respond to events. pmediacontrol->run(); long evcode; pmediaevent->waitforcompletion(infinite,evcode); // Clean up. pmediacontrol->release(); pmediaevent->release(); pgraph->release(); CoUninitialize(); 10

11 Intelligent Connect FGM での IGraphBuilder インターフェイス RenderFile FGM IGraphBuilder AddSourceFilter Render Connect Intelligent Connect AddSourceFilter によるソースフィルターの追加 RenderFile FGM AddSourceFilter Check the protocol Check the file extension Check the check bytes 11

12 Intelligent Connect フィルターグラフの登録を構築するために IGraphBuilder::Render を使用する IPin::IStreamBuilder FGM Upper stream filter Intelligent Connect のまとめ AddSourceFilter メソッドを呼び出してソースフィルターを追加する グラフの残りを構築するためにレンダーを使用する 有効であれば IStreamBuilder で出力ピンを使用する 以前の接続からキャッシュフィルターを試みる フィルターグラフ内のフィルタの接続解除を試みる FGM は IFilterMapper::EnumMatchingFilters を使ってレジストリからフィルタを検索する 12

13 Manual Connect グラフにフィルターを生成して追加する ソースフィルターの出力ピンを順に接続解除する IBaseFilter::EnumPins( IEnumPins **ppenum ) デスティネーションフィルターの入力ピンを順に接続解除する IFilterGraph::ConnectDirect で二つのピンを直接接続する DirectX Media Object(DMO) DMO : メディアデータ処理用オブジェクト DirectShow フィルタと比べ I/F が少なく開発が容易 DMO Wrapper Filter を介して DirectShow フィルタとして利用可能 WinCE 標準の WMA WMV MP3 は DMO フィルタ DirectShow(Windows Media Technology) Input Source Filter Filter Graph Manager DMO Wrapper Transform Filter DMO Filter Render Filter Output 13

14 DMO Filter のデータ処理 Step 1. Query the DMO GetStreamCount GetInputType GetOutputType Step 2. Set Media Type SetInputType SetOutputType Step 3. Allocate Buffer GetInputSizeInfo GetOutputSizeInfo DMO Filter のデータ処理 Step 4. Process Input ProcessInput GetInputStatus Step 5. Process Output ProcessOutput Step 6. Signal a Discontinuity Discontinuity 14

15 DMO による音楽再生 使用プラットフォーム : ソリューションエンジン ( 日立超 LSIシステムズ製 ) CPU:Renesas SH-MobileR(SH7722) コーデック : ルネサステクノロジ製 WMA Reference DirectShow Demo application source is available on CodePlex Test source is available in Shared Source private test multimedia directx dshow playback Newsgroup Microsoft.public.windowsce.app.development Microsoft.public.windowsce.embedded Microsoft.public.windowsce.embedded.vc Microsoft.public.windowsce.platbuilder Microsoft.public.windowsce.targeted.device Microsoft.public.windowsce.testtools 15

16 16

Vol. 44 No. SIG 12(TOD 19) Sep MF MF MF Content Protection Mechanism Based on Media Framework and an Implementation for Autonomous Information C

Vol. 44 No. SIG 12(TOD 19) Sep MF MF MF Content Protection Mechanism Based on Media Framework and an Implementation for Autonomous Information C Vol. 44 No. SIG 12(TOD 19) Sep. 2003 MF MF MF Content Protection Mechanism Based on Media Framework and an Implementation for Autonomous Information Container Takehito Abe, Noburou Taniguchi, Kunihiro

More information

顔認識の為のリアルタイム特徴抽出

顔認識の為のリアルタイム特徴抽出 ... 3... 4... 5... 5.... 5.... 6..... 6..... 8.... 8.... 8... 9.... 9..... 9..... 10.....11..... 12.... 17..... 17.... 19..... 19..... 21..... 23..... 24..... 25.... 26..... 26..... 26... 29.... 29....

More information

DVD CD SoundRipper SoundRipper DVD SoundRipper DVD SoundRipper DVD CD DVD DVD DVD CD CD DVD " CD/DVD" DVD CSS DVD SoundRipper DVD-Video DVD DVD-ROM DV

DVD CD SoundRipper SoundRipper DVD SoundRipper DVD SoundRipper DVD CD DVD DVD DVD CD CD DVD  CD/DVD DVD CSS DVD SoundRipper DVD-Video DVD DVD-ROM DV SoundRipper 2 SoundRipper 5 SoundRipper 9 DVD 12 16 CD 25 CD 31 35 SoundRipper 38 FAQ 40 42 1 DVD CD SoundRipper SoundRipper DVD SoundRipper DVD SoundRipper DVD CD DVD DVD DVD CD CD DVD " CD/DVD" DVD CSS

More information

Q-SYS Designer Version 5.4 Release Note ソフトウェア要件 Q-SYS Designer は下記の OS での動作確認をしております Windows 7 Professional 32-bit / 64-bit Windows 8.1 Professional

Q-SYS Designer Version 5.4 Release Note ソフトウェア要件 Q-SYS Designer は下記の OS での動作確認をしております Windows 7 Professional 32-bit / 64-bit Windows 8.1 Professional Q-SYS Designer Version 5.4 Release Note ソフトウェア要件 Q-SYS Designer は下記の OS での動作確認をしております Windows 7 Professional 32-bit / 64-bit Windows 8.1 Professional 32-bit / 64-bit Windows 10 Pro 64bit Windows XP および

More information

Windows Media サービスのインストール

Windows Media サービスのインストール Express5800/InternetStreamingServer DS (Windows Media 9 Appliance Server ) 2003 11 1...3 2...4 2.1...4 2.2...5 2.2.1 DirectX...6 2.2.2 Windows Media...7 2.2.3...8 2.3...9 2.3.1 Windows Media...9 2.3.2

More information

08+11Extra

08+11Extra A - - #8 bit, Byte, Yutaka Yasuda bit : データの最小単位 1bit = 最小状態の単位 = 二進一桁 コンピュータ内部は電気配線 配線に電気が通っている いな い だけで処理 状態は2種 二値 二進 動作にうまく対応 二進一桁を配線一本で実現 0と1 二進数 で動作 の実体 1bit = 二進一桁 = 配線一本 Byte : Byte bit 8 1 Byte

More information

Microsoft Word 年度卒業研究論文_Multi Media Player制作_.docx

Microsoft Word 年度卒業研究論文_Multi Media Player制作_.docx 2010 年度卒業研究論文 Multi Media Player 制作 岡山理科大学 総合情報学部 情報科学科 澤見研究室 I07I024 川木進吾 I07I033 河口英寛 I07I057 坂野裕一 目次 1 はじめに 2 2 Multi Media Player 概要 3 3 コーデック 4 4 再生方法 5 4.1 フィルタグラフ 6 4.2 フィルタグラフ内の処理について 7 5 DirectShow

More information

Microsoft Word - DT-5100Lib_Manual(概要&ExportSDK).doc

Microsoft Word - DT-5100Lib_Manual(概要&ExportSDK).doc CASSIOPEIA DT-5100 シリーズ ライブラリマニュアル 概要 &ExportSDK 編 Ver 3.00 変更履歴 No Revision 更新日項改訂内容 1 1.00 03/1/20 初版初版発行 2 3.00 05/03/15 第 2 版表紙 目次 1 2をひとまとめにしました 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

More information

untitled

untitled DirectFB SoC munakata.hisao@renesas.com DirectFB DirectFB Linux Frame Buffer Device API Input Device Window System Linux DirectDraw http://www.directfb.org/ TV DirectFB ARIB) YUV SoC blitter 2 DirectFB

More information

NW-A865 / A866 / A867

NW-A865 / A866 / A867 / / / FM Bluetooth / / 156 NW-A865 / A866 / A867 87 99 1 2 USB USB 3 / MD CD MD CD 155 x- x- 156 MD CD x- Bluetooth CD 30 32 51 52 56 61 Bluetooth Bluetooth Bluetooth 66 6 155 x- mora mora x- ...4... 4...

More information

08encode part 2

08encode part 2 A - - #8 bit, Byte, Yutaka Yasuda 1/2 0/1 CD 9 1 0 0 or 1 1/9 4,3,4,7,7,8,8,5,3,2,2 4,3,4,7,7,8,8,5,3,2,2 4,3,4,7,7,8,8,5,3,2,2 4,3,4,7,7,8,8,5,3,2,2 CD/CD-R CD / CD-R - 1 bit data (7bit) P 0 1 1 0 1

More information

bit : データの最小単位 1bit = 最小状態の単位 二進一桁 = 配線一本 Byte バイト 8bits 0-255まで アルファベットは 1 バイト 256 文字以下 漢字は 普通は 2 バイト 文字以下 2

bit : データの最小単位 1bit = 最小状態の単位 二進一桁 = 配線一本 Byte バイト 8bits 0-255まで アルファベットは 1 バイト 256 文字以下 漢字は 普通は 2 バイト 文字以下 2 #5 Yutaka Yasuda 1 bit : データの最小単位 1bit = 最小状態の単位 二進一桁 = 配線一本 Byte バイト 8bits 0-255まで アルファベットは 1 バイト 256 文字以下 漢字は 普通は 2 バイト 65536 文字以下 2 bit bit bit 3 1 (ASCII encoding) CPU 53 61 6d 70 6c 65 20 44 41 74

More information

SelenioFlex File 2.8 Imagine Communications 1 / 5 15/06/25 Zenium Engine 対応フォーマット SelenioFlex File 2.8( セレーニオフレックス ファイル ) で使用される Engine( エンジン : 実際のエンコ

SelenioFlex File 2.8 Imagine Communications 1 / 5 15/06/25 Zenium Engine 対応フォーマット SelenioFlex File 2.8( セレーニオフレックス ファイル ) で使用される Engine( エンジン : 実際のエンコ 1 / 5 SelenioFlex File 2.8( セレーニオフレックス ファイル ) で使用される Engine( エンジン : 実際のエンコードや処理を行うノードプログラム ) には 大きく Zenium Engine(Zenium プラットホーム上で動作 : 最新テクノロジー クラウド (Microsoft Azure) に対応 ) と ( 旧バージョンを継承 : 既存の Stream プロジェクトやレガシーコーデックに対応

More information

Windows Media サービスのインストール

Windows Media サービスのインストール Express5800/InternetStreamingServer GS (Windows Server 2003 ) 2003 11 1...2 2...4 2.1...4 2.2...5 2.2.1 DirectX...6 2.2.2 Windows Media...7 2.2.3...8 2.3...9 2.3.1 Windows Media...9 2.3.2 Windows Media...9

More information

MENU 키를 누르면 아래의 화면이 나타납니다

MENU 키를 누르면 아래의 화면이 나타납니다 Stand-Alone Digital Video Recorder Advanced MPEG-4 DVR 16 Channel Models クライアントソフト 再インストールマニュアル くまざわ書店専用 日本語版 1 V1.07-n307 This document contains preliminary information and subject to change without notice.

More information

Microsoft Word - Quick Start Guide for Stereoscopic Player_JP.doc

Microsoft Word - Quick Start Guide for Stereoscopic Player_JP.doc ステレオスコーピックプレイヤー ZALMAN エディションクイックスタートガイド Version1.3.2 1. 紹介 ステレオスコーピックプレイヤー ZALMANエディションはZALMAN3Dモニターでステレオスコーピックビデオファイル及び3D-DVDを再生することができる3D 動画プレイヤーです このクイックスタートガイドではステレオスコーピックプレイヤー使用方法 2D/3D 再生の違いについて簡単に説明します

More information

ミーティング記録の管理

ミーティング記録の管理 サーバ上の記録したミーティングが自動的に [ミーティング記録 Meeting Recordings ] ページ に一覧表示されます 表示される記録は 自分がスケジュールしたミーティングに限定されます 特定のミーティング の代理主催者の場合 [記録 Recordings ] ページにはそれらの記録は表示されず ミーティン グや記録を開始したユーザである場合でも 記録の準備ができたときに電子メール通知が届きま

More information

NW-E042/E043/E044

NW-E042/E043/E044 OS IBM PC/AT Windows XP Home Edition Service Pack 2 /Windows XP Professional Service Pack 2 / Windows Vista Home Basic/Windows Vista Home Premium/Windows Vista Business/Windows Vista Ultimate OS Windows

More information

iZotope RXユーザーガイド

iZotope RXユーザーガイド 2 izotope RX Table of Contents................................. 4 izotope RX. 4 izotope RX Advanced. 5. 5 izotope RX................. 6. 6 /. 7. 7. 7. 7. 8. 8. 8. 9. 9. 10. 11. 11. 11. 11. 12. 13 izotope

More information

NW-E023F / E025F / E026F

NW-E023F / E025F / E026F OS IBM PC/AT Windows XP Home Edition Service Pack 2 /Windows XP Professional Service Pack 2 / Windows XP Media Center Edition 2004 Service Pack 2 /Windows XP Media Center Edition 2005 Service Pack 2 /Windows

More information

liteCam HD ユーザーガイド

liteCam HD ユーザーガイド 1 ユーザーガイド For litecam HD Version 4.9 2016. 2. 12 ガイド TIP 6 2 litecam HD インストール方法 10 録画開始前に設定変更 16 1. オーディオ装置... 16 2. ビデオオプション... 18 3. AVI ファイルオプション... 19 4. オーディオファイル形式... 21 5. ショートカットキー... 23 録画モードおよび録音モード

More information

MCap 説明書

MCap 説明書 Version 0.992 MCap MCap tetsu@myjibika.com MCAP 1 MCAP 1 MCAP 2 2 DV(IEEE1394) PC 2 DV 2 2 3 PC 3 3 4 LAN 4 PC 4 5 5 5 6 6 MCAP 6 MCap 6 MCap 6 6 6 6 8 8 PC 8 DirectX 9 10 11 RS_Base MCap ID 11 MCap 12

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション PixeLINK 社は マシンビジョンおよび科学分野でおいて産業用カメラを製造 販売しているカナダ オタワにある会社です PixeLINK 社は 1992 年より世界中のお客様のご要望に合わせたハードウェアおよびソフトウェアを開発 製造 販売サポートをしております 1 オートフォーカスカメラ 高速であらゆるオートフォーカスのアプリケーションに適した USB3.0 オートフォーカスカメラファミリーをご紹介させていただきます

More information

スライド タイトルなし

スライド タイトルなし (10) - (3) IETF RTSP 2002.06.25 E-Mail: katto@katto.comm.waseda.ac.jp (1) & WWW cf. CDN (Content Delivery Network) (2) WWW (3) HTTP WWW (1) (1) HTTP HTTP ( HTTP ) (HTTP ) (SureStream ) (TCP ) HTTP (RTSP,

More information

MINI2440マニュアル

MINI2440マニュアル Windows CE 6.0 マニュアル http://www.nissin-tech.com info@nissin-tech.com 2010/2/14 copyright@2010 1 第一章 VS2005 & WinCE6.0 のインストール...3 第二章 BSPのインストール...3 第三章 WinCE6.0 プロジェクタを作る...4 第四章 WinCE6.0 のコンフィグ...15

More information

コンポジット CPRO 25 * ビデオフォーマットの設定によって選択できるコーデックは異なります

コンポジット CPRO 25 * ビデオフォーマットの設定によって選択できるコーデックは異なります EDIUS Pro 7 端子キャプチャフォーマット一覧 ビデオ端子名 GenericOHCI Generic H SDI HDMI Component S-Video コンポジット コーデック名 (CPRO25) CPRO50 X MPEG TS X CPRO 25 AVCIntra 50 AVCIntra 100 XDCAM HD 互換 XDCAM HD422 互換 XDCAM EX 互換 X AVCIntra

More information

任意の間隔での FTP 画像送信イベントの設定方法 はじめに 本ドキュメントでは AXIS ネットワークカメラ / ビデオエンコーダにおいて任意の間隔で画像を FTP サー バーへ送信するイベントの設定手順を説明します 設定手順手順 1:AXIS ネットワークカメラ / ビデオエンコーダの設定ページ

任意の間隔での FTP 画像送信イベントの設定方法 はじめに 本ドキュメントでは AXIS ネットワークカメラ / ビデオエンコーダにおいて任意の間隔で画像を FTP サー バーへ送信するイベントの設定手順を説明します 設定手順手順 1:AXIS ネットワークカメラ / ビデオエンコーダの設定ページ はじめに 本ドキュメントでは AXIS ネットワークカメラ / ビデオエンコーダにおいて任意の間隔で画像を FTP サー バーへ送信するイベントの設定手順を説明します 設定手順手順 1:AXIS ネットワークカメラ / ビデオエンコーダの設定ページにアクセスする 1.Web ブラウザを起動します FW v6.50 以下の場合は Internet Explorer を FW v7.10 以降の場合は

More information

Encoder Set Parameter for HD-V9000

Encoder Set Parameter for HD-V9000 -V9000 用エンコーダーについて パイオニア株式会社 2010 年 3 月 はじめに パイオニアが -V9000 の動作確認を行った コンテンツ作成時のエンコード設定についてまとめてあります お客様がエンコード作業を行う際に必要な情報です また 後半にエンコード作業の現場チェックシートとして ケース別に参考値を記入した記録シートを添付いたしましたので あわせてご利用ください お客様のニーズに合わせて参考値を変更した場合

More information

FTDI Driver Error and Recovery Procedure Check FTDI driver operation Rev :OK, Rev :NG, Rev :NG May 11, 2017 CHECK FTDI DRIVER

FTDI Driver Error and Recovery Procedure Check FTDI driver operation Rev :OK, Rev :NG, Rev :NG May 11, 2017 CHECK FTDI DRIVER FTDI Driver Error and Recovery Procedure Check FTDI driver operation Rev. 2.08.02:OK, Rev. 2.08.24:NG, Rev. 2.12.06:NG May 11, 2017 CHECK FTDI DRIVER VERSION 1. Connect FTDI device to PC FTDI デバイスを PC

More information

インターネットで個人放送局を開くには (1)

インターネットで個人放送局を開くには (1) (2) How to open personal broadcasting system on the Internet (2) by Jiro Katto (Department of Electronics, Information and (D-HTML MHEG MPEG-4 ) W3C (World Wide Web Consortium) SMIL (Synchronized Multimedia

More information

Windows10 foobar2000設定マニュアル

Windows10 foobar2000設定マニュアル DSD フォーマットの再生設定 Windows 10 PC foobar2000 で再生する 弊社製 DSD 対応 USB オーディオ機器で DSD 音源をネイティブ (PCM 変換せずに ) 再生する場合 foobar2000 では別途コンポーネント ( プラグイン ) が必要になります ここでは弊社推奨の環境であ るフリーソフト foobar2000 の設定について説明します 1 再生ソフトウエアとファイル形式について

More information

Jan, 2004 Plenary Meeting ARIB 5 Jan, 2005 Plenary Meeting x86 BML Browser on DirectFB Jan, 2006 Technical Jamboree ARIB Extension for DirectFB 2

Jan, 2004 Plenary Meeting ARIB 5 Jan, 2005 Plenary Meeting x86 BML Browser on DirectFB Jan, 2006 Technical Jamboree ARIB Extension for DirectFB 2 ARIB Extension MITSUBISHI Electric Corp. 1 Jan, 2004 Plenary Meeting ARIB 5 Jan, 2005 Plenary Meeting x86 BML Browser on DirectFB Jan, 2006 Technical Jamboree ARIB Extension for DirectFB 2 Background Video

More information

MAP2496.PDF

MAP2496.PDF Audiophile 2496 24 Bit 96 khz 4 in/ 4 out PCI Digital Recording Interface with MIDI 2 M-AUDIO 3 PCI 1. INS1&2 IN1 IN2 2. OUTS1&2 OUT1 OUT2 3. 15 D-sub S/PDIF MIDI 4. S/PDIF S/PDIF DAT MD A/D S/PDIF 5.

More information

Stereoscopic Player Zalman Edition クイックスタートガイド Version 1.2 October 14 th,2007 はじめに Stereoscopic Player Zalman Edition は Zalman ディスプレイで立体ムービーを再生できる 3D

Stereoscopic Player Zalman Edition クイックスタートガイド Version 1.2 October 14 th,2007 はじめに Stereoscopic Player Zalman Edition は Zalman ディスプレイで立体ムービーを再生できる 3D Stereoscopic Player Zalman Edition クイックスタートガイド Version 1.2 October 14 th,2007 はじめに Stereoscopic Player Zalman Edition は Zalman ディスプレイで立体ムービーを再生できる 3D ムービープレイヤーです 一般的なムービープレイヤーと同じように簡単に操作できます クイックスタートガイドでは

More information

新技術説明会 様式例

新技術説明会 様式例 1 ロボットへの FPGA 導入を 容易化する コンポーネント技術 宇都宮大学大学院工学研究科情報システム科学専攻助教大川猛 2 従来技術とその問題点 FPGA(Field Programmable Gate Array) は 任意のディジタル論理回路をプログラム可能な LSI ソフトウェアでは時間がかかる画像認識処理等を ハードウェア化して 高速化 低消費電力化可能 問題点 FPGA 上の回路設計が難しい

More information

??

?? Real-time Remote Control & Monitoring System EDUNET HYBRID EDITION 製品紹介 創造デザイン http://sozodg.com Real-time Remote Control & Monitoring System 1. 概要 1) EduNet Hybrid System は設備 PC の CPU リソースを使用せずに Full

More information

4K UHD XJive Player SplitEncoder 操作説明書 ターボシステムズ株式会社

4K UHD XJive Player SplitEncoder 操作説明書 ターボシステムズ株式会社 SplitEncoder 操作説明書 ターボシステムズ株式会社 本ガイドは XJive Player のコンテンツ分割ツール SplitEncoder の使用方法について解説しています SplitEncoder 推奨環境 SplitEncoder は以下の環境で動作を確認しています 推奨環境 OS Windows 7 64bit Windows 8.1 64bit Linux 64bit(Fedora

More information

PrimeTV /S : NV-PT2000S User s Manual Rev. 1.01 ....... 1) 2). 1 6 PrimeTVReMiX 2000 LifeViewFlyVideoAnimation Technologies, Inc. Windows Microsoft PrimeTV/S... 2 1PrimeTV... 3 1.1...3 1.2...3 1.3 PrimeTV...3

More information

video converter appユーザーガイド

video converter appユーザーガイド 1. ようこそ...2 2. 動画ファイル追加 3 2.1 WiFi アップロード....3 2.2 itunes ファイル共有...4 2.3 カメラロール...5 2.4 Dropbox...7 2.5 Microsoft SkyDrive...8 3. 動画ファイル変換...8 4. 変換された動画共有...10 4.1 変換された動画再生...10 4.2 変換された動画フォトライブラリに保存...11

More information

untitled

untitled MCPC-TR-011 Bluetooth AV Profile Multi Codec Version 1.0 Japanese 2009 3 25 Version 2009325 1.00 Base version initial release. i : 105-0011 3-5-12 (MCPC) 03-5401-1935 03-5401-1937 office@mcpc-jp.org WEB

More information

Agileイベント・フレームワークとOracle BPELを使用したPLMワークフローの拡張

Agileイベント・フレームワークとOracle BPELを使用したPLMワークフローの拡張 Agile イベント フレームワークと Oracle BPEL を使用した PLM ワークフローの拡張 チュートリアル Jun Gao Agile PLM Development 共著 2009 年 10 月 目次 概要... 4 このチュートリアルについて... 4 目的および範囲... 4 使用ソフトウェア... 4 はじめに... 5 必要な環境の準備... 5 Agile PLM ワークフロー機能の拡張...

More information

Windows Audio Drivers Guide

Windows Audio Drivers Guide Windows 8.0.4 2010 by Avid Technology, Inc., (hereafter Avid ), with all rights reserved. 003 96 I/O 96i I/O 192 Digital I/O 192 I/O 888 24 I/O 882 20 I/O 1622 I/O 24-Bit ADAT Bridge I/O AudioSuite Avid

More information

MPEG Encoder 7.0 Standard CONTENTS 2 MPEG Encoder 7.0 Standard 3 1. MPEG Encoder MPEG Encoder MPEG Encoder MPEG Encoder

MPEG Encoder 7.0 Standard CONTENTS 2 MPEG Encoder 7.0 Standard 3 1. MPEG Encoder MPEG Encoder MPEG Encoder MPEG Encoder MPEG Encoder 7.0 Standard CONTENTS 2 MPEG Encoder 7.0 Standard 3 1. MPEG Encoder 7.0 4 8 2. MPEG Encoder 7.0 9 MPEG Encoder 7.0 9 MPEG Encoder 7.0 9 3. 10 17 ( ) 10 ( ) 10 ( ) 11 ( ) 12 12 ( ) 13 16 (

More information

目次 目次... 1 はじめに... 3 概要... 4 サポート環境... 5 関数... 6 MEC_OpenDevice... 7 MECDevice_Release... 8 MECDevice_GetFirmVersion... 9 MECDevice_GetCoreTemperature

目次 目次... 1 はじめに... 3 概要... 4 サポート環境... 5 関数... 6 MEC_OpenDevice... 7 MECDevice_Release... 8 MECDevice_GetFirmVersion... 9 MECDevice_GetCoreTemperature MECodecAPI Reference Manual 2015 年 9 月 1 日 MEDIAEDGE 株式会社 目次 目次... 1 はじめに... 3 概要... 4 サポート環境... 5 関数... 6 MEC_OpenDevice... 7 MECDevice_Release... 8 MECDevice_GetFirmVersion... 9 MECDevice_GetCoreTemperature...

More information

Merging と AES67 ディバイスの設定

Merging と AES67 ディバイスの設定 Merging と AES67 ディバイスの設定 Configure Merging and AES67 devices AES67 interoperability with Non-Merging interface AES が X-192 グループの調査結果を批准した結果 ネットワーク上でリアルタイムオーディオストリームを送信するデバイスの相互運用性に関する AES67 の提案を発表しました

More information

2. CABAC CABAC CABAC 1 1 CABAC Figure 1 Overview of CABAC 2 DCT 2 0/ /1 CABAC [3] 3. 2 値化部 コンテキスト計算部 2 値算術符号化部 CABAC CABAC

2. CABAC CABAC CABAC 1 1 CABAC Figure 1 Overview of CABAC 2 DCT 2 0/ /1 CABAC [3] 3. 2 値化部 コンテキスト計算部 2 値算術符号化部 CABAC CABAC H.264 CABAC 1 1 1 1 1 2, CABAC(Context-based Adaptive Binary Arithmetic Coding) H.264, CABAC, A Parallelization Technology of H.264 CABAC For Real Time Encoder of Moving Picture YUSUKE YATABE 1 HIRONORI

More information

Microsoft PowerPoint - Windows Embeddedセミナー関西(アキタ電子:130719).pptx

Microsoft PowerPoint - Windows Embeddedセミナー関西(アキタ電子:130719).pptx 2013 西日本編 今さら聞けない だけど WEC2013 ってなあに? 株式会社アキタ電子システムズ はじめに 1996 年から出荷されたWindows CEも 2013 年の今年 6 月に最新の Windows Embedded Compact 2013が出荷されました 本セッションではこのWindows Embedded Compact 2013を中心に CEコアを持つ組み込み OSの特徴を述べるとともに

More information

TestDesign for Web

TestDesign for Web 発行日 2012/6/21 発行元 株式会社アープ 本書は Web でのテスト自動化における Test Design の一連の操作方法まとめたものです Test Design のメニューの説明やより詳細な使い方については ユーザーズガイド を参照してください 目次 1. はじめに... 1 2. 環境構築... 2 2.1. Selenium のサイトについて... 2 2.2. Selenium

More information

内容 1. はじめに 概要 必要システム構成 Premiere Pro / After Effects について 用語説明 ソフトウェア構成 CLP インポーター機能

内容 1. はじめに 概要 必要システム構成 Premiere Pro / After Effects について 用語説明 ソフトウェア構成 CLP インポーター機能 操作説明書 Adobe Premiere Pro Adobe After Effects 用 Clip ファイル変換プラグイン JAPANESE W0815AM0 -PS VQT5L97 内容 1. はじめに... 3 1.1. 概要... 3 1.2. 必要システム構成... 4 1.3. Premiere Pro / After Effects について... 5 1.3.1. 用語説明...

More information

NW-A916 / A918 / A919

NW-A916 / A918 / A919 OSIBM PC/AT Windows XP Home Edition Service Pack 2/Windows XP Professional Service Pack 2/ Windows XP Media Center Edition 2004 Service Pack 2/Windows XP Media Center Edition 2005 Service Pack 2/Windows

More information

Microsoft Word - Live Meeting Help.docx

Microsoft Word - Live Meeting Help.docx 131011 101919 161719 19191110191914 11191417 101919 1915101919 Microsoft Office Live Meeting 2007 191714191412 1913191919 12 151019121914 19151819171912 17191012151911 17181219 1610121914 19121117 12191517

More information

2ACL DC NTMobile ID ACL(Access Control List) DC Direction Request DC ID Access Check Request DC ACL Access Check Access Check Access Check Response DC

2ACL DC NTMobile ID ACL(Access Control List) DC Direction Request DC ID Access Check Request DC ACL Access Check Access Check Access Check Response DC NTMobile 103430037 1. IPv4/IPv6 NTMobileNetwork Traversal with Mobility [1] NTMobile NTMobile IPsec NAT IPsec GSCIPGrouping for Secure Communication for IPGSCIP NAT NTMobile ACL Access Control List ACL

More information

β版 DSD再生設定

β版 DSD再生設定 DSD フォーマットの再生設定 Windows PC foobar2000 で再生する 弊社製 DSD 対応 USB オーディオ機器で DSD 音源をネイティブ (PCM 変換せずに ) 再生する場合 foobar2000 では別途コンポーネント ( プラグイン ) が必要になります ここでは弊社推奨の環境であ るフリーソフト foobar2000 の設定について説明します 1 再生ソフトウエアとファイル形式について

More information

DL1010.PDF

DL1010.PDF Delta 1010 24 Bit/96 khz PCI Digital I/O Card 2 M-AUDIO 3 Rack Unit 1. Power LED LED MIDI LED LED MIDI Delta 1010 MIDI MIDI LED LED MIDI Delta 1010 MIDI MIDI MIDI MIDI MIDI MTC Delta 1010 MIDI MIDI MIDI

More information

Google (1) 2013 Sony Corporation Printed in Malaysia NW-ZX1

Google (1) 2013 Sony Corporation Printed in Malaysia NW-ZX1 Google 4-475-930-02(1) 2013 Sony Corporation Printed in Malaysia NW-ZX1 http://rd1.sony.net/help/dmp/nwzx1/ja/ 34 39 2 USB USB 3 Wi-FiGoogle Media Go Content Transfer 4 Bluetooth 5 1 2 3 6 WALKMAN Guide

More information

Upload path ファイル送信先ディレクトリのパスを指定します ホームディレクトリに画像を送信する場合は空白のまま サブディレクトリに画像を送信する場合はディレクトリ名を指定します さらに下位のディレクトリを指定する場合は \ マークを利用します 例 ) ホームディレクトリ以下の camera

Upload path ファイル送信先ディレクトリのパスを指定します ホームディレクトリに画像を送信する場合は空白のまま サブディレクトリに画像を送信する場合はディレクトリ名を指定します さらに下位のディレクトリを指定する場合は \ マークを利用します 例 ) ホームディレクトリ以下の camera はじめに 本ドキュメントでは AXIS ネットワークカメラ / ビデオエンコーダのファームウエアバージョン 5.4x 以降で 定期的に画像を FTP サーバへ送信するための設定手順を説明します 設定手順手順 1:AXIS ネットワークカメラ / ビデオエンコーダの設定ページにアクセスする 1. Internet Explorer などの Web ブラウザを起動します 2. Web ブラウザの URL

More information

Microsoft Word - AW-SF100導入手順書(スタンドアローン版)_ doc

Microsoft Word - AW-SF100導入手順書(スタンドアローン版)_ doc AW-SF100 スタンドアローン版 導入手順書 Revision 0.06 2015.11.24 Professional AV Systems Business Unit Panasonic AVC Networks Company Panasonic Co., Ltd. 1. はじめに... 3 2. リモートカメラの設定... 4 2.1. AW-HE130 の設定... 4 2.2. AW-UE70/AW-HE40

More information

Upload path ファイル送信先ディレクトリのパスを指定します ホームディレクトリに画像を送信する場合は空白のまま サブディレクトリに画像を送信する場合はディレクトリ名を指定します さらに下位のディレクトリを指定する場合は \ マークを利用します 例 ) ホームディレクトリ以下の camera

Upload path ファイル送信先ディレクトリのパスを指定します ホームディレクトリに画像を送信する場合は空白のまま サブディレクトリに画像を送信する場合はディレクトリ名を指定します さらに下位のディレクトリを指定する場合は \ マークを利用します 例 ) ホームディレクトリ以下の camera はじめに 本ドキュメントでは AXIS ネットワークカメラ / ビデオエンコーダのファームウエアバージョン 5.5x 以降で 任意の間隔で画像を FTP サーバへ送信するための設定手順を説明します 設定手順手順 1:AXIS ネットワークカメラ / ビデオエンコーダの設定ページにアクセスする 1. Internet Explorer などの Web ブラウザを起動します 2. Web ブラウザの URL

More information

MPEG Encoder 7.0 Pro Author CONTENTS 2 3 MPEG Encoder 7.0 Pro Author MPEG Encoder MPEG Encoder MPEG Encoder MPEG Enco

MPEG Encoder 7.0 Pro Author CONTENTS 2 3 MPEG Encoder 7.0 Pro Author MPEG Encoder MPEG Encoder MPEG Encoder MPEG Enco MPEG Encoder 7.0 Pro Author CONTENTS 2 3 MPEG Encoder 7.0 Pro Author 4 5 1. MPEG Encoder 7.0 6 10 2. MPEG Encoder 7.0 11 MPEG Encoder 7.0 11 MPEG Encoder 7.0 11 3. 12 32 ( ) 12 ( ) 12 ( ) 13 ( ) 14 14

More information

Creative Sound Blaster Digital Music Creative Technology Ltd. Creative Technology Ltd. 1 CD Copyright 2003 Creative Technology Ltd. All rights reserved. 2003 3 1 Sound Blaster Creative Technology Ltd.

More information

Microsoft PowerPoint - Bayhub-ET2013_booth seminar3.pptx

Microsoft PowerPoint - Bayhub-ET2013_booth seminar3.pptx SD4, UHS-II 時代の幕あけ ET2013 (Nov. 20-22, 2013) BayHub Technology Ltd. アブストラクト 2011 年の SD4, UHS-II 規格リリース以来 SD アソシエーション及び会員企業各社は SD4, UHS-II 関連技術開発を行ってきました 現在では SD4, UHS-II 対応の SD カードやホストコントローラ等もリリースされ いよいよ

More information

オーサリングソフトで作成した番組スケジュールを表示する ~ 共有 SD カード機能を使ったコンテンツ配信 ~ 同一ネットワーク上に接続されているコンピューターからディスプレイ内の microsd メモリーカードに動画 静止画 音声ファイルをアップロードします コンピューター ディスプレイ 2

オーサリングソフトで作成した番組スケジュールを表示する ~ 共有 SD カード機能を使ったコンテンツ配信 ~ 同一ネットワーク上に接続されているコンピューターからディスプレイ内の microsd メモリーカードに動画 静止画 音声ファイルをアップロードします コンピューター ディスプレイ 2 パブリックディスプレイ C シリーズ (LCD-C551/LCD-C501/LCD-C431) 内蔵メディアプレーヤー 簡易マニュアル 1-2 動画 静止画ファイルの単純再生 ~ 共有 SD カード機能を使ったコンテンツ配信 ~ 2017 年 12 月 オーサリングソフトで作成した番組スケジュールを表示する ~ 共有 SD カード機能を使ったコンテンツ配信 ~ 同一ネットワーク上に接続されているコンピューターからディスプレイ内の

More information

背景 1 / Reprinted with permission from paper c 2013 SAE International.

背景 1 / Reprinted with permission from paper c 2013 SAE International. 車載グラフィックメータ開発プロセス革新への挑戦 ~ REMO ZIPC による 3D HMI 開発事例 ~ 西川良一株式会社デンソー情報通信システム開発部 背景 1 / 17 2008 2009 2010 2011 2012 2013 Reprinted with permission from paper 2013-01 01-04250425 c 2013 SAE International.

More information

Google (1) 2013 Sony Corporation Printed in Malaysia NW-F885/F886/F887

Google (1) 2013 Sony Corporation Printed in Malaysia NW-F885/F886/F887 Google 4-472-597-02(1) 2013 Sony Corporation Printed in Malaysia NW-F885/F886/F887 http://rd1.sony.net/help/dmp/nwf880/ja/ 35 40 2 USB USB 3 Wi-FiGoogle Media Go Content Transfer 4 Bluetooth 5 1 2 3 WALKMAN

More information

HD でブロードキャストするための Adobe Media Live Encoder のインストールおよび設定方法 Adobe Media Live Encoder のダウンロード : 手順 1 へ行く 画面下にある Downlo

HD でブロードキャストするための Adobe Media Live Encoder のインストールおよび設定方法 Adobe Media Live Encoder のダウンロード : 手順 1   へ行く 画面下にある Downlo HD でブロードキャストするための Adobe Media Live Encoder のインストールおよび設定方法 Adobe Media Live Encoder のダウンロード : 手順 1 https://get.adobe.com/flashplayer/ へ行く 画面下にある Download ボタンをクリックする 手順 2 ダウンロードボタンをクリックすると FMLE をダウンロードするために

More information

Audio_in_Multimedia.pdf

Audio_in_Multimedia.pdf 1308 0808 08 0808 00 08 03 08 08.. 137 oxy@master.math.upatras.gr 08 0808: 0008 & 03 :. 08 2001 13. / 0808 /, 08 :, video clips.,,,. 08., 0808. 0808, 08 ( 08 08 ) "08" 08, Word, 08, 08 0808. 08, 08 0808

More information

untitled

untitled Network Product Guide Network Monitoring System Network Product Guide Time stamp Write to disk Filter Convert Summarise Network Product Guide Network Monitoring System TDS2 TDS24 Network Analysis Report

More information

PowerPoint Presentation

PowerPoint Presentation age 1 1 2 3 4 5 Applications (Phone,Browser,JAVA,PIM ) Mobile Middleware Carrier Specification Modules (FOMA,Vodafone, i-mode for overseas MP-Domain-Specific Middleware Carrier Common Spec. Modules

More information

NW-A828 / A829

NW-A828 / A829 OSIBM PC/AT Microsoft Windows Vista Home Basic Home Premium Business Ultimate / Windows XP Home Edition Professional Media Center Edition 2004 & 2005 SP2 64OS CPU Pentium 4 1.0 GHz 512 MB 450 MB1.5 GB

More information

2 1,384,000 2,000,000 1,296,211 1,793,925 38,000 54,500 27,804 43,187 41,000 60,000 31,776 49,017 8,781 18,663 25,000 35,300 3 4 5 6 1,296,211 1,793,925 27,804 43,187 1,275,648 1,753,306 29,387 43,025

More information

A. ステレオミックス機能の搭載確認方法 ご利用のパソコンのサウンドデバイスにステレオミックス機能が存在するかどうかをご確認ください ステレオミックス機能は サウンドデバイスによって様々な呼び方がされています 代表的な名称を次に記します ステレオミックス 再生リダイレクト ステレオミキサー WAVE

A. ステレオミックス機能の搭載確認方法 ご利用のパソコンのサウンドデバイスにステレオミックス機能が存在するかどうかをご確認ください ステレオミックス機能は サウンドデバイスによって様々な呼び方がされています 代表的な名称を次に記します ステレオミックス 再生リダイレクト ステレオミキサー WAVE [ ホワイトペーパー ] STORM Maker 音声付き動画書き出しを行う場合のサウンドデバイス設定方法について 文書番号第 6 版対象製品対象ユーザー : 10 製 -ST030137-06 : 2014 年 11 月 19 日 : バージョン 1.6.0 以上 : STORM Maker をご利用中の方 概要 STORM Maker で作成したコンテンツを音声付きで動画書き出しする場合は ステレオミックス機能

More information

Microsoft Word _DVDVideoSoft introduces 23 titles of free m

Microsoft Word _DVDVideoSoft introduces 23 titles of free m > 2010 年 3 月 23 日 DVDVideoSoft Limited DVDVideoSoft 無償日本語版マルチメディア変換 編集 書き込みソフトウェア 23 タイ トルと統合スイート製品を発表 無償マルチメディア関連ソフトウェアを開発するDVDVideoSoft Limited( 本社 : ドミニカ共和国ロゾー ) は本日 無償マルチメディア ソフトウェアの日本語版 23タイトルと

More information

コンテンツセントリックネットワーク技術を用いた ストリームデータ配信システムの設計と実装

コンテンツセントリックネットワーク技術を用いた ストリームデータ配信システムの設計と実装 コンテンツセントリックネットワークにおけるストリームデータ配信機構の実装 川崎賢弥, 阿多信吾, 村田正幸 大阪大学大学院情報科学研究科 大阪市立大学大学院工学研究科 2 発表内容 研究背景 研究目的 ストリームデータ配信機構の設計 ストリームデータのモデル化 コンテンツの名前構造 ストリームデータの要求とフロー制御 ストリームデータ配信機構の実装 動作デモンストレーション 3 コンテンツセントリックネットワーク

More information

「ハードサブ」動画の作成について

「ハードサブ」動画の作成について Do-It-Yourself (3) 3, 4 (3) (Subtitle Translation) 1) Subtitle Workshop Viplay 2) Viplay vsf Viplay Windows Media Player (WMP) WMP WMP 3) (2008a) (2008b) SOMEYA, Yasumasa (2008c). Creating Hard-Sub video

More information

Pioneer DJ DJ Mixer TRAKTOR シリーズ接続ガイド はじめに DJミキサーとコンピュータをUSBケーブル1 本で接続することで TRAKTOR シリーズ 1 のデッキ ( プレーヤー ) のコントロールや DJミキサーに内蔵されたUSBサウンドカードで音声を入出力するなど T

Pioneer DJ DJ Mixer TRAKTOR シリーズ接続ガイド はじめに DJミキサーとコンピュータをUSBケーブル1 本で接続することで TRAKTOR シリーズ 1 のデッキ ( プレーヤー ) のコントロールや DJミキサーに内蔵されたUSBサウンドカードで音声を入出力するなど T Pioneer DJ DJ Mixer TRAKTOR シリーズ接続ガイド はじめに DJミキサーとコンピュータをUSBケーブル1 本で接続することで TRAKTOR シリーズ 1 のデッキ ( プレーヤー ) のコントロールや DJミキサーに内蔵されたUSBサウンドカードで音声を入出力するなど TRAKTOR シリーズと組み合わせたさまざまなDJプレイをお楽しみいただけます また 楽曲の録音 制作などにも対応しています

More information

NW-S615F / S616F / S715F / S716F / S718F

NW-S615F / S616F / S715F / S716F / S718F OSIBM PC/AT Windows XP Home Edition Service Pack 2/Windows XP Professional Service Pack 2/ Windows XP Media Center Edition 2004 Service Pack 2/Windows XP Media Center Edition 2005 Service Pack 2/Windows

More information

AverCasterご利用ガイド

AverCasterご利用ガイド AverCaster ご利用ガイド 2015/03/02 アバーメディア テクノロジーズ株式会社 目次 1 はじめに... 1 2 AVer Caster の初期設定... 1 3 H.264 用サーバーとのストリーミング設定... 2 4 Flash Media サーバーとのストリーミング設定... 3 5 Ustream とのストリーミング設定... 4 6 Justin.tv とのストリーミング設定...

More information

Print Server バージョンV2

Print Server バージョンV2 DocuColor 5151 P PX Print Server U2/L2 MS10-016 ~ MS10-60 対策手順 2010.8.27 マイクロソフト社 (Microsoft 社 ) から Windows の脆弱性についての情報公開がされており 弊社 DocuColor 5151 P PX Print ServerU2/L2 においても脆弱性に対して対策が必要です 以下の手順に従って対策を実施してください

More information

橡Webcamユーザーガイド03.PDF

橡Webcamユーザーガイド03.PDF Desktop On-Call Version 4 Webcam extension Pak for Windows Webcam extension Pak Desktop On-Call Version 4 Web PC i Desktop On-Call Version 4 PC PC Desktop On-Call Version 4 PC Windows 98 Windows 98SE Windows

More information

Pyramix Native インストールマニュアル

Pyramix Native インストールマニュアル Pyramix Native インストールマニュアル dsp ジャパン株式会社 http://www.dspj.co.jp This Page is Blank 2 目次 1. イントロダクション...4 2. インストールの前に...5 3. ソフトウェアインストールの手順...6 3.1 3 rd Party CODECのインストール...6 3.1.1. Windows Essential Media

More information

JIIAセミナー

JIIAセミナー Digital Interface IIDC URL teli.co.jp/ E-Mail http://www.toshiba-teli.co.jp teli.co.jp/ s-itokawa@toshiba-teli.co.jpteli.co.jp EIA,NTSC EIA,NTSC 4-5 JIIA JIIA - / Digital Interface Digital Interface IEEE1394

More information

Microsoft Word - NeroKwikMedia_Release_final_ doc

Microsoft Word - NeroKwikMedia_Release_final_ doc 2011 年 4 月 20 日 ( 水 ) Nero 無料メディアマネージャーソフト Nero Kwik Media を公開 株式会社 Nero ( 神奈川県横浜市代表取締役本田純一 ) は 2011 年 4 月 19 日 ( 火 ) に 無料のメディアマネージャーソフト Nero Kwik Media ( 呼称 : ネロ クイックメディア ) のダウンロードでの提供を Nero のホームページにて開始いたしました

More information

3) 開発 タブの表示方法 初期設定では非表示 4) 各種 ActiveX コントロールの設定 Windows Media Player を埋め込む Flash ムービー ( 拡張子 :swf) を埋め込む 以下の操作は別掲資料参照 5) 保存形式 PowerPoint マクロ有効プレゼンテーション

3) 開発 タブの表示方法 初期設定では非表示 4) 各種 ActiveX コントロールの設定 Windows Media Player を埋め込む Flash ムービー ( 拡張子 :swf) を埋め込む 以下の操作は別掲資料参照 5) 保存形式 PowerPoint マクロ有効プレゼンテーション アドイン または ActiveX コントロール使用時の注意点 留意点 1) セキュリティ警告が表示されたとき このコンテンツを有効にする にチェック 2)PowerPoint アドインの設定 アドインを指定 3) リボン上のアドインの表示 ( アドイン と 挿入 2 つのタブ ) # 1 3) 開発 タブの表示方法 初期設定では非表示 4) 各種 ActiveX コントロールの設定 Windows

More information

template.dvi

template.dvi I W I D E P R O J E C T 1 1 1 WIDE 2010 12 31 13:00 23:35 2010 1.1 USTREAM WMT 1.2 3D 8 1.1 1.1. 3D +5.1ch 12:15 15:00 1 3D 1 USTREAM 56 5 5 13 23:30 7 Twitter #artsforall 10 2,200 Twitter 1 4 2011 2

More information

939061j

939061j ブルームバーグ ソフトウエア インストールガイド日本語 2012 年 10 月 26 日バージョン : 9.0 目次ブルームバーグ ソフトウエアのダウンロード... 2 ブルームバーグ シリアル番号 < 新規 > のインストール. 9 正しくインストールされたかを確認... 13 アクセス権付与に関する注意... 15 1 ブルームバーグ ソフトウエアのダウンロード Internet Explorer

More information

SSO Sales/Tech combined webinar template

SSO Sales/Tech combined webinar template HP Web e-speak web HP Agenda page 2 Search Engine Google Web Site www.hp.com Search Engine Yahoo Web page 3 Web Web Web page 4 CHAPTER 1 Do It Yourself CHAPTER 2 Do It For Me PC,, ITS... etc.) page 5 E-service

More information

1. [ / / ] p3 [ OS ] p4 [ ] p4 [ (PC ) ] p4 2. () [ () ] p5 [ ] p6 [ ] p7 3. () [ / ] p8 [ PC ( /) ] p9 WindowsXP (Service Pack2 ) p9 (a) p10 (b) ASIO

1. [ / / ] p3 [ OS ] p4 [ ] p4 [ (PC ) ] p4 2. () [ () ] p5 [ ] p6 [ ] p7 3. () [ / ] p8 [ PC ( /) ] p9 WindowsXP (Service Pack2 ) p9 (a) p10 (b) ASIO QB-9 USB DAC [ ] 1. [ / / ] p3 [ OS ] p4 [ ] p4 [ (PC ) ] p4 2. () [ () ] p5 [ ] p6 [ ] p7 3. () [ / ] p8 [ PC ( /) ] p9 WindowsXP (Service Pack2 ) p9 (a) p10 (b) ASIO4ALL p13 WindowsVista p18 (a) p19

More information

Cisco TelePresence System のオプション機器

Cisco TelePresence System のオプション機器 CHAPTER 1 Cisco Digital Media Player Cisco Digital Media Player(DMP) は デジタルディスプレイ上に高解像度の実況 オンデマンド式ビデオ モーショングラフィック Web および動的コンテンツの再生を通じてデジタル信号と企業 TV を可能にする高信頼性の IP ベース型ハードウェアエンドポイントです DMP の詳細については 次の URL

More information

Q-SYS Designer Version 6.0 Release Note ソフトウェア要件 Q-SYS Designer は下記の OS での動作確認をしております Windows 7 Professional 64-bit Windows 8.1 Professional 64-bit Wi

Q-SYS Designer Version 6.0 Release Note ソフトウェア要件 Q-SYS Designer は下記の OS での動作確認をしております Windows 7 Professional 64-bit Windows 8.1 Professional 64-bit Wi Q-SYS Designer Version 6.0 Release Note ソフトウェア要件 Q-SYS Designer は下記の OS での動作確認をしております Windows 7 Professional 64-bit Windows 8.1 Professional 64-bit Windows 10 Pro 64bit 本バージョンより 32-bit OS はサポートされませんのでご注意ください

More information

Nuendo5_H1-H4_2010

Nuendo5_H1-H4_2010 http://japan.steinberg.net/ 0570-016-808 TEL.053-460-5270 http://www.yamaha.co.jp/support/steinberg/index.html The way you work. 5 points of 1. 2. 3. 4. 5. for Post Production for Recording for Sound Editor

More information

Oracle Policy Automation 10.0システム要件

Oracle Policy Automation 10.0システム要件 Oracle Policy Automation 10.0 システム要件 2009 年 12 月 - バージョン 1.01 Oracle Policy Automation 製品 バージョン 10.00 の概要 製品 プラットフォーム Oracle Policy Modeling Microsoft Windows( デスクトップ ) Oracle Policy Automation( ランタイム

More information

EPSON EHDMC10 ユーザーズガイド

EPSON EHDMC10 ユーザーズガイド Wireless Mirroring Adapter EHDMC10 ユーザーズガイド 2 EHDMC10 6 8 8 DVD MOVERIO Source 11 MOVERIO Sink 18 25 26 28 29 29 Copyright 2017 Seiko Epson Corporation. All rights reserved. 2017.04 2 AC 3 4 22cm MOVERIO

More information

untitled

untitled 2004.11.18 1 3C everywhere Aoyama Morikawa Laboratory 2 3C Everywhere Computing everywhere PDA, Contents everywhere XMLmp3 1 terabyte 1 zettabyte (10 21 ) Connectivity everywhere 2G/3G/4GLAN DSL, DSRC,

More information

pdf

pdf FUJIFILM Co,. Ltd. ACES Workflow using IS-100 and IS-mini 1. 2. 3. 4. 5. 1 1 Camera Settings Image Processing System ACES Image Processing System IS-100 IS-mini ACES RRT (Reference Rendering Transform)

More information

Agenda Windows 64-bit 概要マネージコード開発 ( 導入 ) マネージコード開発 ( 詳細 ) コーディング上の留意点まとめ

Agenda Windows 64-bit 概要マネージコード開発 ( 導入 ) マネージコード開発 ( 詳細 ) コーディング上の留意点まとめ Visual Studio 2005 時代の 64 ビットアプリケーション開発 ~ Itanium 上での.NET Framework 2.0 の展開 マイクロソフト株式会社エンタープライズプラットホーム本部プラットホーム本部エバンジェリスト佐藤直樹 Agenda Windows 64-bit 概要マネージコード開発 ( 導入 ) マネージコード開発 ( 詳細 ) コーディング上の留意点まとめ Windows

More information

ストリームを用いたコンカレントカーネルプログラミングと最適化 エヌビディアジャパン CUDAエンジニア森野慎也 GTC Japan 2014

ストリームを用いたコンカレントカーネルプログラミングと最適化 エヌビディアジャパン CUDAエンジニア森野慎也 GTC Japan 2014 ストリームを用いたコンカレントカーネルプログラミングと最適化 エヌビディアジャパン CUDAエンジニア森野慎也 GTC Japan 2014 コンカレントな処理の実行 システム内部の複数の処理を 平行に実行する CPU GPU メモリ転送 カーネル実行 複数のカーネル間 ストリーム GPU 上の処理キュー カーネル実行 メモリ転送の並列性 実行順序 DEFAULT STREAM Stream : GPU

More information

Presentation

Presentation OpenGL ES Agenda DMP OpenGL ES OpenGL ES 1.1 OpenGL ES 2.0 OpenGL OpenGL OpenGL ES EGL KTX DMP IP OpenGL ES E- PICA200 GPU DMP DMP www.dmprof.com D D JR 2 2002 7 OpenGL ES ULTRAY 2000 Chip (SIGGRAPH 2005)

More information

1 2 3 2 1 3 4 5 6 7 2 8 9 10 11 12 3 13 DMP は III との連携により 中国 台湾の SoC 顧客に対し共同でグラフィックスコアの販売を うほか グラフィックスコアを搭載した顧客製品を短期間で開発するためのソリューションを提供します OpenCL などの API を策定するコンソーシアム ( 標準化団体 ) であるクロノス グループからリリースされた最新の

More information