videoplayer使用说明

合集下载

vue-video-player视频播放器使用配置详解

vue-video-player视频播放器使用配置详解

vue-video-player视频播放器使⽤配置详解本⽂实例为⼤家分享了vue-video-player视频播放器的使⽤配置,供⼤家参考,具体内容如下1、安装npm install vue-video-player -save2、在main.js中添加import VueVideoPlayer from 'vue-video-player' // 视频播放器import 'video.js/dist/video-js.css'e(VueVideoPlayer)3、新建⼀个vueVideoPlayer.vue组件供调⽤<template><div id="vueVideoPlayer"><video-player class="video-player vjs-custom-skin" ref="videoPlayer" :playsinline="true" :options="playerOptions"></video-player></div></template><script>export default {name: 'vueVideoPlayer',props: {src: {type: String},cover_url: {type: String}},data () {return {// 配置信息playerOptions: {playbackRates: [0.7, 1.0, 1.5, 2.0], // 播放速度autoplay: false, // 如果true,浏览器准备好时开始回放。

muted: false, // 默认情况下将会消除任何⾳频。

video-player组件的使用方法

video-player组件的使用方法

video-player组件的使用方法(实用版2篇)目录(篇1)1.引言2.video-player 组件的功能和特点3.video-player 组件的基本使用方法4.video-player 组件的属性设置5.video-player 组件的实例6.结语正文(篇1)【引言】在现代网页设计中,视频播放器已经成为了必不可少的组成部分。

为了让用户获得更好的观看体验,我们需要选择一款功能强大且易于使用的视频播放器组件。

其中,video-player 组件就是一个很好的选择。

本文将为大家介绍 video-player 组件的使用方法。

【video-player 组件的功能和特点】video-player 组件是一款功能齐全、操作简便的视频播放器。

它具有以下特点:1.支持多种视频格式,包括 mp4、webm、ogg 等。

2.提供多种播放控制按钮,如播放、暂停、快进、快退等。

3.支持视频循环播放和自动播放。

4.可以显示视频进度条和音量调节滑块。

5.支持全屏和窗口模式播放。

【video-player 组件的基本使用方法】要在网页中使用 video-player 组件,首先需要引入相应的 CSS 和JavaScript 文件。

具体做法如下:1.在 HTML 文件中引入 video-player 组件的 CSS 文件。

例如:```html<link rel="stylesheet" href="path/to/video-player.css"> ```2.在 HTML 文件中引入 video-player 组件的 JavaScript 文件。

例如:```html<script src="path/to/video-player.js"></script>```3.在 HTML 文件中创建一个用于存放视频播放器的容器。

video-player组件的使用方法

video-player组件的使用方法

video-player组件的使用方法包括以下步骤:
1. 引入video-player组件:在需要使用video-player组件的页面中,通过import引入video-player组件。

2. 创建video-player实例:在页面中创建一个video-player实例,可以通过new VideoPlayer()来创建。

3. 设置视频路径:通过实例的setOptions方法,设置视频的路径以及其他相关参数。

4. 渲染video-player组件:将创建的video-player实例渲染到页面中。

5. 控制播放:通过实例的play、pause等方法,控制视频的播放和暂停。

6. 监听视频播放状态:通过实例的onPlay、onPause等方法,监听视频的播放状态。

7. 销毁video-player组件:在组件不再使用时,通过实例的destroy 方法销毁组件,释放资源。

具体使用方法可以参考video-player组件的文档或者相关教程。

vue视频播放插件vue-video-player的具体使用方法

vue视频播放插件vue-video-player的具体使用方法

vue 视频播放插件vue-video-player 的具体使⽤⽅法可以全局引⼊插件,也可以在需要⽤到该插件的组件内单独引⼊(⼆选⼀)【1】全局引⽤, 在main.js ⾥⾯导⼊并引⽤1234import VideoPlayer from 'vue-video-player'import 'vue-video-player/src/custom-theme.css'import 'video.js/dist/video-js.css'e(VideoPlayer)【2】组件内引⽤import { videoPlayer } from 'vue-video-player'123456import 'video.js/dist/video-js.css' export default { components: { videoPlayer}}使⽤【1】html 部分12345678<template> <div class='demo'> <video-player class="video-player vjs-custom-skin" ref="videoPlayer" :playsinline="true" :options="playerOptions"></video-player></div> </template>【2】js 部分123456789export default { data() { return { playerOptions: { playbackRates: [0.5, 1.0, 1.5, 2.0], // 可选的播放速度 autoplay: false, // 如果为true,浏览器准备好时开始回放。

unity videoplayer 的使用案例

unity videoplayer 的使用案例

Unity VideoPlayer 的使用案例1. 引言在现代的游戏开发中,视频播放已经成为游戏中不可或缺的一部分。

而 Unity 提供的 VideoPlayer 组件可以方便地实现视频播放功能。

在本文中,我们将探讨 Unity VideoPlayer 的使用案例,以便更好地理解如何在游戏中使用这一功能。

2. VideoPlayer 的基本介绍Unity 的 VideoPlayer 组件可以让我们在游戏中播放视频,支持多种视频格式,并且可以以纹理形式展示在游戏场景中。

这为游戏开发者提供了更多的可能性,可以在游戏中加入更多的剧情、故事情节或者广告内容。

3. 视频背景动画一种常见的使用案例是将视频作为游戏的背景动画。

通过VideoPlayer 组件,我们可以在游戏开始页面或者选关页面播放一个精美的视频,来吸引玩家的注意,为游戏增加更多的视觉效果。

4. 游戏剧情展示在游戏中加入视频可以更好地讲述游戏的剧情。

通过视频,我们可以展现更加丰富的故事情节,增加玩家的代入感和沉浸感。

在一些冒险类游戏或者解谜类游戏中,加入视频可以为游戏增加更多的趣味性。

5. 游戏广告内容在一些免费游戏中,开发者需要通过游戏中的广告来获得收益。

而VideoPlayer 组件可以很方便地实现在游戏中播放广告视频的功能。

通过精心设计的广告内容,可以为游戏增加更多的盈利机会。

6. 个人观点和理解对于我个人来说,我认为 Unity VideoPlayer 的使用案例是非常丰富多样的。

通过VideoPlayer,我们可以在游戏中呈现更多的内容形式,为游戏增加更多的亮点。

但在使用的过程中,我们也需要注意视频格式的兼容性、视频文件大小对游戏性能的影响等问题。

7. 总结与回顾通过本文的探讨,我们更深入地了解了 Unity VideoPlayer 的使用案例。

从背景动画到游戏剧情展示,再到游戏广告内容,VideoPlayer的应用范围非常广泛。

在游戏开发中,我们可以根据游戏的需求,灵活地运用 VideoPlayer 组件,为游戏增添更多的精彩内容。

VideoPlayer播放视频

VideoPlayer播放视频

VideoPlayer播放视频VideoPlayer的使用方法(Unity5.6以后才能使用)经测试之后,暂时仅支持的视频格式(格式工厂里面的)有avi,mp4,mov,wmv,webm (格式有问题,暂不支持音频,无声)。

使用步骤:(无需脚本即可播放)1.创建一个用于显示视频的“屏幕”,Hierarchy视图里面创建一个Plane,添加渲染纹理(在Assets里面创建,右键Create—>Render Texture,拖给Plane。

)2.Hierarchy视图里面右键Video—>VideoPlayer,在Video Player组件里面有个属性Source,有两个值VideoClip和URL,分别表示视频文件、视频文件路径。

直接拖进去。

完成复制。

同理选择URL(外部文件,本地和网络),把视频的路径赋值进去。

3.赋值完成后,播放会没有声音,需要添加一个Audio Source组件,拖到指定位置进行赋值。

4.以上即完成了视频播放的流程。

VideoPlayer可以使用一系列事件来监听播放的各个动作:errorReceived:错误监听到时被执行。

frameDropped:有丢帧发生时被执行。

frameReady:新的一帧准备好时被执行。

loopPointReached:播放结束或播放到循环的点时被执行。

prepareCompleted:视频准备完成时被执行。

seekCompleted:查询帧操作完成时被执行。

started:在Play方法调用之后立刻调用。

创建一个Plane,将Test挂上去。

即可播放代码控制:publicclass Test : MonoBehaviour {//public VideoClipvideoToPlay;private VideoPlayer videoPlayer;private VideoSource videoSource;private AudioSource audioSource;// Use this for initializationvoid Start(){Application.runInBackground = true;StartCoroutine(playVideo());}IEnumerator playVideo(){videoPlayer = gameObject.AddComponent();//用于播放音频audioSource = gameObject.AddComponent();videoPlayer.playOnAwake = false;audioSource.playOnAwake = false;//We want to play from video clip not from urlvideoPlayer.source = VideoSource.VideoClip;//将视频设置为播放,然后准备音频以防止缓冲// videoPlayer.clip = videoToPlay;videoPlayer.url = Application.dataPath + "/videos/2.mp4"; videoPlayer.source = VideoSource.Url;VideoClip clip = new VideoClip();//设置音频输出模式为AudioSourcevideoPlayer.audioOutputMode = VideoAudioOutputMode.AudioSource;//将视频中的音频分配给要播放的音频源videoPlayer.EnableAudioTrack(0, true);videoPlayer.SetTargetAudioSource(0, audioSource);videoPlayer.Prepare();while (!videoPlayer.isPrepared){Debug.Log("正在准备");yieldreturnnull;}Debug.Log("准备完成");videoPlayer.loopPointReached += EndReached;videoPlayer.Play();audioSource.Play();Debug.Log("播放中");while (videoPlayer.isPlaying){yieldreturnnull;}//会先打印End reached 再打印播放结束Debug.Log("播放结束");}void EndReached(VideoPlayer vPlayer) {Debug.Log("End reached!");}}。

vue-video-player的使用总结

vue-video-player的使用总结

vue-video-player的使⽤总结
由于公司的项⽬是⽹上教育的,像⽹易云课堂那种教育⽹站,因⽽会有很多课程需要在线观看的,所以视频插件是必不可少的。

由于我⽤vue开发项⽬,所以找视频插件也找和vue贴近的。

最后选择了vue-video-player。

这个视频插件还是挺好⽤的,好多事件都是可控的,挺⽅便的。

⾸先 npm install vue-video-player -S;
然后再main.js进⾏配置:
然后就可以在组件中使⽤了。

常⽤参数:
然后就可以按需使⽤⼀些事件,由于我们项⽬需要播放的时候进⾏视频埋点,还有暂停的时候需要统计⽤户的暂停时间,还有等视频播放完之后加个评分弹窗。

因⽽我使⽤了三个事件,播放事件,暂停事件,播放结束之后事件。

如何动态切换视频源呢?
就先写这些,后⾯想到关于该插件的其他信息再补充。

--------------------------------------------------------------------------
2020.1.13 补充:
vue-video-player如何打开⽹页就能⾃动播放视频?
将这两个属性都设置为true;
然后⾃调⽤播放的⽅法:
ok,这样就可以⾃动播放了。

iXVL Player操作手册说明书

iXVL Player操作手册说明书

iXVL Player Ver. 2.0 Operation ManualFunctions and Operations of iXVL Player July 2012T able of Contents1Introduction (3)1.1 iXVL Player overview and purpose of operation manual (3)1.2 System requirements (3)1.3 Sample data (3)2Major Functions (3)2.1 Major functions of iXVL Player (3)2.2 Restrictions (4)2.3 Known issues (4)3How to operate iXVL Player (5)3.1XVL file copy (5)3.2File list operation (7)3.3File download and link saving from W eb pages (Player) (8)3.43D view window operation #1 (Player) (10)3.53D view window operation #2 (Player) (13)4F AQ and Inquiry (20)4.1 F AQ (20)4.2Inquiry (21)5Release Information (21)6Copyrights (21)1 Introduction1.1 iXVL Player overview and purpose of operation manualiXVL Player is an iPad / iPhone application for browsing XVL files output by iXVL Publisher. IiXVL Player is provided for free in the App S tore of Apple Inc or distributed based on the iOS Developer Enterprise Program if you have made a contract with Apple Inc. This document introduces the main functions and how to operate iXVL Player. Note that some of the functions described in this document are not available on iPhone.1.2 System requirements・OS: iOS 4 (4.3 or later), iOS 5・Device: iPad, iPad 2, New iPad (3rd generation), iPhone 4, iPhone 4S, iPod T ouch (4th generation)1.3 Sample dataThe sample files used in this document are included with iXVL Player and they will be installed during the application installation. Y ou can also download them and other samples from the iXVL product information site: /products/ixvl/index.html2 Major Functions2.1 Major functions of iXVL PlayeriXVL Player is an iPad / iPhone application for browsing XVL files output by iXVL Publisher. On the iPad, you can use various 3D viewer functions such as rotation, translation and zoom as well as other operations such as assembly tree display, control an element’s visibility, check element properties or view snapshots saved in the XVL files. iXVL Player enables you to browse 3D data and the technical information anywhere you want and it enhances iPad / iPhone use for manufacturing services.・View XVL files created using iXVL Publisher. XVL files are typically less than 1% of the original CAD file size. (Only XVL files created with iXVL Publisher are supported.) ・Easy, intuitive multi-touch operation to rotate, pan and zoom in/out (Drag to rotate, T wo-finger drag to pan and pinch to zoom in/out).・Fit the screen to portrait and landscape according to the iPad / iPhone position.・Apply snapshots created by XVL S tudio.・Show assembly tree.・Select assembly / parts.・Show / Hide the selected assembly / parts.・Show Properties of selected assembly / parts.・Application includes icons to fit to screen and selected assembly / parts, restore original viewpoint and select shaded or shaded with wire display mode.・Switch the display accuracy using 3 different levels.・Easily copy files to your iPad using the iT unes file transfer function.・Download XVL files and save their URLs from any web server.・List XVL files on your iPad / iPhone.・Delete XVL files by swiping the file name.・Six XVL sample files are included.・Available on iPad / iPad 2 / iPhone 4 / iPhone 4S / iPod T ouch (4th Generation).2.2 Restrictions・XVL assembly files with the extension xv0 and encrypted XVL files cannot be shown.・Signed XVL files can be imported but the signatures are not shown.・Notes and dimensions are not shown.・The initial background color, visibility, layout and viewpoint saved in XVL files are applied to iXVL Player.・Some very large XVL files may not show correctly in iXVL Player. Such files may cause iXVL Player to close because of insufficient memory or the shape may not be shown correctly.・V-XVL Ver. 5 and Ver. 7 cannot be read.・T exture images and image notes can be used only if they are embedded in data files.・If Web files are opened in iXVL Player immediately after the iPad is turned on, the error message “No Internet connection” (on iOS4 only) appears. The files can be openedafter accessing to the Internet in Safari or other applications.・Fonts unavailable on the iPad or iPhone are not displayed.2.3 Known issues・Environmental texture mapping is disabled.・XVL data signed as browsable and measurable cannot be read.・Repeated file reading may cause a black screen or corrupt the display.・Japanese characters may not be displayed correctly in environments where languages other than Japanese and English are used.・Note and dimension views are listed as “Unknown” in the snapshot list.・3D notes may not be selectable in some cases.・Elements selected in the 3D view may not be reflected in the assembly tree.・Operating with three or more fingers to operate models may cause them to be hidden on the screen.・Notes or markups corresponding to annotation views applied may not be correctly reflected.・Changing display accuracy may cause parts of shapes to be hidden.・Snapshots added via automatic update may not be applied correctly.・When snapshots are applied, the display settings for cross sections, clipping and view areas may not be applied.・The display of the elements listed below is different from that in XVL S tudio and XVL Player.Rims of notes and trace linesInfinite lines, infinite points, user coordinate systemsTrace line typesBackgrounds of circle frames for notesEdges, wireframes, markups, bounding boxes with the same black or white status as the view backgroundParts to which transparent textures are set3 How to operate iXVL Player3.1XVL file copyXVL files are copied to the iXVL Player file list by using the file sharing function of iTunes.Connect iPad / iPhone with the PC where iTunes has been installed using a USB cable, and iT unes will start. Select the iPad / iPhone device from the iT unes screen.1. Se lect a device.Select “App” and scroll down the pane to show “File sharing.”From the “App ” list, select “iXVL Player .” T o add XVL files, drag and drop XVL files to the “Document” section.In the “Documents” section, the files can be deleted or renamed and files in iPad / iPhone can be saved in the PC.・ In the “Documents” section, pre-installed sample files or the ones downloaded in the proceduredescribed in 3.3 are not shown.2. Scroll down.1. Se lect “iXVL Play er .”ToyTractor.xv22. Drag and drop an XVL file to here.・ The files copied using iTunes can be deleted or renamed. ・ XVL assembly files (*.xv0) cannot be browsed on iXVL Player .After XVL file copy finishes, you may terminate iTunes and disconnect the iPad / iPhone.3.2File list operationT ap the iXVL Player icon on iPad / iPhone. As iXVL Player starts, the file list will be shown.In the list, six sample files are shown. (T o open C01-Digital_Camera.xv2, your iPad / iPhone must be connected to the internet.)T apping a file name opens the file to browse it.T apping shown in the top right of the title bar opens the message box, in which the iXVL Player version can be confirmed.If you swipe a file (set your finger on a file and slide it horizontally on the screen), the “Delete ” button appears to delete the selected file from iPad / iPhone.※ File deletion cannot be undone. If you have deleted a sample file and want to replace it,download it from the iXVL information site (/products/ixvl/index.html) and copy the file to iXVL Player as described in section 3.1 or in section 3.3.T ap a file: Browsing the selected XVL file.1. Swipe the file to be deleted.2. T ap “Delete.”3.3File download and link saving from Web pages (Player)XVL files on any Web pages can be downloaded or the URLs of the files can be saved.T apping shown in the top right of the title bar opens the web browser. T apping the “”button opens the iXVL information page. (/products/ixvl/index2.html)Open Web BrowserEnter the URL of the Web page of XVL files and tap the link to an XVL file on the Web page, and the dialog box shown below opens.If you want to view the latest file via Wifi network, “Add as a link” is recommended. If you take your iPad to somewhere where you can’t use a Wifi network, but would like to show 3D files with iXVL Player, “Download” is recommended.Selecting “Add as a link”, the file name and its URL are saved and then appear on file list. On the file list, the file name is shown in blue with the URL.Selecting “Download”, the file has downloaded and saved on your iPad / iPhone with the URL. On the file list, the file name is shown in black with the URL.If you don’t want to “add as a link” or “download”, tap the outside of the dialog. (With iPhone, “Cancel” button appears and tap it.)When using “Download” and both the XVL file and URL are saved, tapping,the files are automatically replaced with the latest files on that web site. It is useful when you need to update the files when connected to a network and then display the files in an area when not connected.iXVL product information site (http://www /products/ixvl/index.html ) provides some sample files for iXVL Player . Downloaded fileA dded as a linkiXVL Player Operation Manual3.4 3D view window operation #1 (Player)T apping a file as described in 3.2 opens the 3D view window . The XVL file can be browsed in the window by using the operations listed below:Tapping initializes the viewpoint and layout.The 3D view window appears as shown below . Use the icons to browse the model.iPadShows the current f ile name.Goes back to the file list. Shows the version information. Initia lizes the v ie wpoint and lay out.iPhoneSome of the functions are available on the iPhone.Even if the iPad / iPhone is rotated, the view is shown in the same direction.3.53D view window operation #2 (Player)On iXVL Player, as well as the basic view functions as described in 3.4, additional functions can be used for browsing manufacturing information.・Showing and hiding wireframe displayT apping opens the dialog box to show or hide the wireframe display.・ Selecting the display accuracyOn iXVL Player , the display accuracy can be selected. When is tapped, the dialog box opens. “Normal ” is selected by default. Selecting “Fine” or “Extra Fine” shows 3D models with a finer display .※ For large-size 3D data, switching the display accuracy may take a long time to refresh theview .・Applying snapshotsT apping shown at the bottom right of the screen shows the list of snapshots saved in the file created by XVL S tudio. Selecting a snapshot from the list applies it to the 3D view.shot with opens it・Browsing the assembly tree and selecting assemblies/parts (or parts in the following description)T apping in the bottom right of the 3D viewer shows the assembly tree. In the tree, tapping on the left expands the hierarchy and the child hierarchies will be opened. T apping a part name highlights it both in the tree and on the 3D view shown in the bounding box. When the assembly tree is open, tapping a part in the 3D view selects and highlights it in the assembly tree. The selected part name is shown at the bottom of the screen.T o close the assembly tree, tap again. T o cancel the part selection, tap anywhere in the background.Note that the assembly tree shows only assemblies and parts and subordinate bodies or shells arenot shown.T apping the same part twice or more in the 3D view changes the selection to the upper assemblies.・Fitting the entire model or the selected part to the screenWhen a part is selected and is tapped, the selected part is shown to fit it to the screen. T appingwithout selecting a part shows the entire model to fit it to the screen.・ Showing and hiding the selected part2. T ap the icon.Selecting a part and tapping hides the part. T apping the icon again shows the part.In the assembly tree, the names of hidden parts are shown in gray . If a hidden part is selected in the assembly tree and is tapped, the part will be shown.1. Se lect a p art.2. T ap the icon.・ Checking the properties of the selected partSelecting a part and tap shows its properties set by a CAD system or XVL S tudio. When a part of the properties is shown in the dialog box, tap the item to show all the information.3. T ap the ite m to show all the information.1. Se lect a p art.・External LinkIf a link is set to assemblies, parts or notes, tapping these elements opens Safari andshows the link destination. If the destination is an XVL file, tapping an element does notcause Safari to open.If the iXVL Player screen does not appear when Safari opens, swipe the window with fouror five fingers to return to the iXVL Player screen. This function is available if [MultitaskingGestures] on the [General] tab of the setting application is checked.・Specifying the center of view rotationLong-touching a point with a finger moves the screen center to the point. After that, 3Dmodels are rotated with the center lying on this point.4 FAQ and Inquiry4.1 F AQWhat size XVL file can be read?XVL files up to approximately 15MB in size can be opened and viewed on iPad 2. Actual performance may vary depending on the features of the model and the spec of devices. T ypically, 15MB XVL files can represent a CAD file of approximately 1GB or larger.I have XVL files copied or downloaded via iT unes and they are shown in the file list, but themessage ”iXVL Player cannot load an XVL which is not processed by iXVL Publisher.” appears to result in an error to open the files.iXVL Player can show only XVL files output by iXVL Publisher. XVL files output by XVL Converter or XVL S tudio can be shown on iXVL View.Although the XVL file was copied by iT unes, it is not displayed on the iXVL Player file list.Only XVL files with the extension .xv2 and .xv3 are supported by iXVL Player. xv2 and .xv3 is the extension used by P-XVL / V-XVL / U-XVL files. .xv0 files must be converted to .xv2 or .xv3 before viewing with iXVL Player.iXVL Player fails to open the file.This may occur when the XVL file is too large to process. If you encounter this, we recommend using XVL S tudio to create smaller files (e.g. sub-assemblies) from the larger file.Although I was able to open the file, not all of the data is displayed.This may occur in XVL files including a shape with an extremely large amount of display polygons.There is not solution at this time and we recommend using CAD system or XVL S tudio to divide the model into smaller segments.I restored iPad / iPhone from the backup file and the file name disappeared.When iPad / iPhone is restored from the backup file or the free storage space is running short, the XVL files with URLs downloaded from the Web site will disappear from the file list. This is the currentspecifications of iXVL Player. Please access to the Web site and download the files again.Is technical support available?T elephone support is not available for the free iXVL Player product. Y ou can submit support requests via email and tell us your opinion via the Lattice T echnologywebsite. /support/support_request.htmAre there any plans to add more features/function to iXVL Player?There are plans for future updates. We will announce updates via our website when they areavailable. /products/ixvl/index.htmlAre there any plans to support other mobile devices (Android, etc.)?We are looking at the possibility of developing other versions of iXVL Player. Additionally, with XVLS tudio 10.1 or later, it will be possible to save data in an HTML5 compatible form. This will allow 3D data to be viewed in any environment that supports HTML5 (Windows, Android, etc.). Please look for details at /products/ixvl/index.html4.2InquiryIf you have any issue or inquiry related with iXVL products, you can submit support requests via email and tell us your opinion via the Lattice T echnology website.Lattice T echnology Website /products/ixvl/index.html5 Release InformationJuly 27, 2012 iXVL Player Ver. 2.0・Enabled external linking.・Enabled specification of the center for view rotation.March 23, 2011 iXVL Player V er. 1.1・Reflected “Display view with its upper direction fixed” set by XVL Studio.・Changed the contents in the Information dialog box.・Changed the default Web page opened by clicking the “+” button.・Fixed bugs.January 27, 2011 iXVL Player V er. 1.0・First release.6 CopyrightsiXVL Player V er. 2.0Copyright (C) 2012 Lattice T echnology Co.,Ltd. All rights reserved.iXVL Player V er. 1.1Copyright (C) 2012 Lattice T echnology Co.,Ltd. All rights reserved.iXVL Kernel V er. 7.4aCopyright (C) 1998-2011 Lattice T echnology Co.,Ltd. All rights reserved.Zlib version 1.1.3Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler.All rights reserved.The Independent JPEG Group's JPEG software release 6bCopyright (C) 1991-1998, Thomas G. Lane. All rights reserved.Libpng version 1.2.6 - August 15, 2004Copyright (c) 1998-2004 Glenn Randers-PehrsonCopyright (c) 1996-1997 Andreas DilgerCopyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.Libtiff version 3.5.7Copyright (c) 1988-1997 Sam LefflerCopyright (c) 1991-1997 Silicon Graphics, Inc.Permission to use, copy, modify, distribute, and sell this software andits documentation for any purpose is hereby granted without fee, providedthat (i) the above copyright notices and this permission notice appear inall copies of the software and related documentation, and (ii) the namesof Sam Leffler and Silicon Graphics may not be used in any advertising orpublicity relating to the software without the specific, prior writtenpermission of Sam Leffler and Silicon Graphics.THE SOFTW ARE IS PROVIDED "AS-IS" AND WITHOUT W ARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHER WISE, INCLUDING WITHOUT LIMIT A TION, ANY W ARRANTY OF MERCHANT ABILITY OR FITNESS FOR A P ARTICULAR PURPOSE.IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR ANY SPECIAL, INCIDENT AL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHA TSOEVER RESUL TING FROM LOSS OF USE, DA T A OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTW ARE.Lattice T echnology, Inc.582 Market S treet, Suite 1215San Francisco, CA 94104+1 415- 274-1670******************※All trademarks belong to their respective owners.※It is prohibited to copy or distribute pictures, text or any other materials which appear in this document, in any form or by any means, including electronic or technical means, without written permission from Lattice T echnology.Copyright © Lattice T echnology Co., Ltd. All Rights Reserved.。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
相关文档
最新文档