Questions tagged [vlc-android]

66 questions
1
vote
0 answers

flutter_vlc_player lag when calling mediaPlayer.stop() on android native

I'm using flutter_vlc_player for video playback on Android and ios. When I dispose the player controller, it cause jank for a few frames. When I debug the native android code, I see that mediaPlayer.stop() in void dispose() took about 40ms to…
dante
  • 984
  • 3
  • 10
  • 24
1
vote
2 answers

Where can I find a list of all Media options in libVLC

I used the command prompt command vlc --longhelp Which generates a long text file, but it's missing a bunch of options like network-caching, or any caching. Anyone have any insight into a complete list of options for the Media object in libvlc?
1
vote
1 answer

Using specific network with libVLC on Android

I'm using libVLC in my Android app to stream video over rtsp from the camera that I'm connected to over WiFi. In general, streaming works fine, but there seems to be streaming problem if I'm connected do the camera by WiFi (that provides no…
Mohru
  • 725
  • 1
  • 7
  • 17
1
vote
0 answers

How Skip late frame when video lagging on play UDP stream by LibVLC in Android Kotlin

I try to play UDP stream by LibVLC in Android Box but I have some problem. In some HD channels video lagging and it stop but the sound is okay and continue. I tried lot's of option but it didn't work. this is my Vlc Controller class: class…
H.Fa8
  • 318
  • 3
  • 10
1
vote
1 answer

Docker - mount directory's owner and group

I ran a docker container with binding a host directory to a container directory, but the permissions for the container directory and its files are given differently depending on the hosts. docker run -w /vlc-android -v…
Hoon Lee
  • 13
  • 1
  • 4
1
vote
0 answers

libvlc "picture is too late to be displayed" error on Android

I'm using the code below to display a live RTSP stream on android device. it works fine but the problem is the video is late about 2-4 sec from reality and 2sec late from Xmeye application. I receive tones of "picture is too late to be displayed"…
Amir jodat
  • 569
  • 6
  • 13
1
vote
0 answers

EPG on Android vlc project

How to get EPG using android-vlc I am currently implementing 'com.yyl.vlc:vlc-android-sdk:3.0.13' package for using android-vlc player into my project. In this project i am trying to implement IPTV. I don't know how to get EPG from the android vlc.…
manosk
  • 34
  • 1
  • 5
1
vote
1 answer

Is there any fast alternatives for TextureView.getBitmap() function?

I'm using android vlc (LibVLC) along with a TextureView in order to play a live rtsp stream in my android application. Everything is working fine, however i need to get the current playing frame every possible time for some object detection tasks,…
peter bence
  • 782
  • 3
  • 14
  • 34
1
vote
1 answer

libVLC Zoom and Pan

There is method in MediaPlayer class named setScale which can be used for zooming which can be implemented for example inside pinch gesture, but the center of zooming is center of view. so the details in the sides of image can not be shown. So is…
M.Armoun
  • 1,075
  • 3
  • 12
  • 38
1
vote
0 answers

VLC android build faled in MAC OS

Build Environment Informations DATE: 2018.04.11 MACHINE: MACBOOK PRO 2015 256GB 8GB OS: MAC OS 10.13.4 (17E199) BUILD CODE: https://code.videolan.org/videolan/vlc-android on branch 3.0.x Problem Solved Problems The missing dependences such as…
MLYA
  • 11
  • 4
1
vote
1 answer

Can't load vlcjni library: java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList couldn't find "libvlcjni.so"

After extending support for Android 6.0+. The app is getting crash while playing video using VLC-SDK. Previously we have make changes in SDK library a little bit as per our project need. Hence can't make changes in vlc-SDK. I have tried the…
Maverick
  • 116
  • 11
1
vote
0 answers

How can I play .sdp file with vlc player?

I created the .sdp file locally using ffmpeg, Try to play through vlc on Android. I tried to play through vlc, but the video does not come out. Below is my sdp file v = 0 o = - 0 0 IN IP4 127.0.0.1 s = H.264 Video, streamed by the LIVE555 Media…
NGMong
  • 21
  • 3
1
vote
1 answer

libVLC: How do I know if subtitles (text track) are external or part of video container file?

When using libVLC for Android how do I know if subtitles (text track) are external (.srt, ass) or part of video container file (text track inside…
user25
  • 2,873
  • 2
  • 30
  • 66
1
vote
2 answers

Can't install my application to my phone when sign release apk

I try to install my app to my phone but I get app not installed error when sign as release apk this is my gradle for app apply plugin: 'com.android.application' android { signingConfigs { signingConfigs { keyAlias 'newv' …
1
vote
1 answer

VLC is unable to open the MRL in android

I have integrated vlclib in my app to play video stream in following way try { mMediaPlayer = VLCInstance.getLibVlcInstance(); } catch (LibVlcException e) { e.printStackTrace(); } mSurfaceHolder =…
mSapps
  • 601
  • 9
  • 24