Skip to content

webilisim/WEBPlayer

Repository files navigation

WEBPlayer

license platform API Download

Android video player supports mp4, m3u8, 3gp and more format.

QuickStart

  1. Implementation
implementation 'net.webilisim.webplayer:webplayer:1.0.11'
  1. Set player in your XML
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="200dp">
    <net.webilisim.webplayer.WEBPlayerStd
        android:id="@+id/webplayer"
        android:layout_width="match_parent"
        android:layout_height="200dp" />
</LinearLayout>
  1. Set video to webplayer
WEBPlayerStd webPlayerStd = findViewById(R.id.webplayer);
webPlayerStd.setUp("YOUR VIDEO URL", "YOUR VIDEO TITLE");
webPlayerStd.thumbImageView.setImage("YOUR VIDEO THUMB IMAGE");
  1. Some activity tools
@Override
public void onBackPressed() {
    if (WEBPlayer.backPress()) {
        return;
    }
    super.onBackPressed();
}
@Override
protected void onPause() {
    super.onPause();
    WEBPlayer.releaseAllVideos();
}
  1. Manifest Settings
<activity
    android:name=".MainActivity"
    android:configChanges="orientation|screenSize|keyboardHidden"
    android:screenOrientation="portrait" /> <!-- or android:screenOrientation="landscape"-->

6.proguard-rules.pro settings

-keep public class net.webilisim.webplayer.WEBPlayerMediaSystem {*; }

Licence

Copyright [2020] [We Bilişim Interactive]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Android video player supports mp3, mp4, m3u8 and more formats.

Resources

License

Stars

Watchers

Forks

Packages

No packages published