Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/warnyul/fast-video-view
TextureView based VideoView implementation for Android.
https://github.com/warnyul/fast-video-view
android textureview videoview
Last synced: 23 days ago
JSON representation
TextureView based VideoView implementation for Android.
- Host: GitHub
- URL: https://github.com/warnyul/fast-video-view
- Owner: warnyul
- License: other
- Created: 2014-08-22T20:07:12.000Z (about 10 years ago)
- Default Branch: develop
- Last Pushed: 2023-01-30T10:03:50.000Z (almost 2 years ago)
- Last Synced: 2024-03-26T08:50:49.494Z (8 months ago)
- Topics: android, textureview, videoview
- Language: Java
- Size: 1.72 MB
- Stars: 46
- Watchers: 4
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# fast-video-view
develop: [![Build Status](https://travis-ci.org/warnyul/fast-video-view.svg?branch=develop)](https://travis-ci.org/warnyul/fast-video-view) master: [![Build Status](https://travis-ci.org/warnyul/fast-video-view.svg?branch=master)](https://travis-ci.org/warnyul/fast-video-view)## Overview
This implementation can only be used in a hardware accelerated window. When rendered in software, FastVideoView will display nothing.
Unlike basic [VideoView](http://developer.android.com/reference/android/widget/VideoView.html) on Android, does not create a separate window, but behaves as a regular view. This key difference allows a FastViewView to be moved, transformed, animated, etc. For instance, you can make a FastVideoView semi-translucent by calling `videoView.setAlpha(0.5)`. FastVideoView has featuring all of the TextureView.
Using a FastVideoView is simple: all you need is get its basic [VideoView](http://developer.android.com/reference/android/widget/VideoView.html) on Android. The following examples demonstrate how to use a VideoView:
Java code:
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);
FastVideoView videoView = (FastVideoView)findViewById(R.id.video);
videoView.setMediaController(new MediaController(this));
videoView.setVideoPath("http://yourwebsite.com/customvideo.3gp");
videoView.setAlpha(0.5f); // Set transparency.
videoView.setRotation(45.0f); // Set rotation.
videoView.start();
}
}## Download
Download [the latest JAR](https://oss.sonatype.org/content/groups/public/com/warnyul/android/fast-video-view/fast-video-view/1.0.2/fast-video-view-1.0.2.jar) or grab via Maven:
com.warnyul.android.fast-video-view
fast-video-view
1.0.2
or Gradle:compile 'com.warnyul.android.fast-video-view:fast-video-view:1.0.2'
Snapshots of the development version are available in [Sonatype's snapshots repository](https://oss.sonatype.org/content/repositories/snapshots/com/warnyul/android/fast-video-view/fast-video-view/).
Retrofit requires at minimum Java 6 or Android 4.0.
## Licence
Copyright © 2014 Balázs VargaLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.