Search found 9 matches

Go to advanced search

by xrddd
09 Aug 2019 09:14
Forum: VLC for Android and Chrome OS
Topic: Textureview not displaying the video, only sound is audible with(version 1.5.1.1)
Replies: 2
Views: 936

Re: Textureview not displaying the video, only sound is audible with(version 1.5.1.1)

hi RupaK, you can try this: yourTextureView.setSurfaceTextureListener(this); ... public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { final IVLCVout vout = getPlayer().getVLCVout(); vout.setVideoView(yourTextureView); vout.attachViews(); Media m = new Media(mLibVLC,...
by xrddd
05 Aug 2019 04:53
Forum: VLC for iOS, iPadOS and Apple TV
Topic: In VLCKit,is there an approach that can get pixels buff of video every frame?
Replies: 9
Views: 3003

Re: In VLCKit,is there an approach that can get pixels buff of video every frame?

Hi,

On libvlc 4, you would have opengl callbacks for this, but it isn't released yet and vlckit isn't compatible yet.
hi, unidan,thanks for your reply. is a VLCKit branch(even developing) available that has the feature? I can build from it.
by xrddd
26 Jul 2019 05:45
Forum: Development around libVLC
Topic: failed to compile libVLC for Android (Error: unknown register alias 'GP')
Replies: 4
Views: 1577

Re: failed to compile libVLC for Android (Error: unknown register alias 'GP')

Hi, you didn't write what you did, it's hard to help you as a normal project configuration doesn't fail on this. Hi,unidan. I want a libVLC to develop an media player on Android. I has cloned from https://code.videolan.org/videolan/vlc-android.git. But when running "sh compile.sh -l -a armeabi...
by xrddd
24 Jul 2019 09:21
Forum: Development around libVLC
Topic: failed to compile libVLC for Android (Error: unknown register alias 'GP')
Replies: 4
Views: 1577

failed to compile libVLC for Android (Error: unknown register alias 'GP')

I am stucked in android libVLC compiling. This is the output: {standard input}: Assembler messages: {standard input}:146: Error: unknown register alias 'GP' clang70: error: assembler command failed with exit code 1 (use -v to see invocation) make[1]: *** [libavcodec/arm/ac3dsp_armv6.o] Error 1 make[...
by xrddd
24 Jul 2019 07:12
Forum: Development around libVLC
Topic: When using libVLC to play mp4 in my android app, no video output ,just pure gray color shown.
Replies: 0
Views: 850

When using libVLC to play mp4 in my android app, no video output ,just pure gray color shown.

Hi there, I would like to get the video frame texture,then draw it with opengles.But when run on device,only get pure color. My code fragment: @Override //Activity method, init and play. protected void onStart(){ super.onStart(); ............ // Create LibVLC ArrayList<String> options = new ArrayLis...
by xrddd
23 Jul 2019 18:15
Forum: VLC for Android and Chrome OS
Topic: When using libVLC to play mp4 in my android app, no video output ,just gray color shown.
Replies: 1
Views: 368

When using libVLC to play mp4 in my android app, no video output ,just gray color shown.

Hi there, I would like to get the video frame texture,then draw it with opengles.But when run on device,only get pure color. My code fragment: @Override //Activity method, init and play. protected void onStart(){ super.onStart(); ............ // Create LibVLC ArrayList<String> options = new ArrayLis...
by xrddd
04 Jun 2019 12:55
Forum: VLC for iOS, iPadOS and Apple TV
Topic: building for MobileVLCKit.framework has a fatal error
Replies: 1
Views: 252

building for MobileVLCKit.framework has a fatal error

This is the terminal output: [info] ...vlc/plugins/libstream_out_chromecast_plugin.a fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: install-iPhoneOS/armv7s/lib/vlc/plugins/libstream_out_chromecast_plugin.a (No such fil...
by xrddd
04 Jun 2019 05:48
Forum: VLC for iOS, iPadOS and Apple TV
Topic: In VLCKit,is there an approach that can get pixels buff of video every frame?
Replies: 9
Views: 3003

Re: In VLCKit,is there an approach that can get pixels buff of video every frame?

The only supported way for this is to use the vmem output module, which would require all your frames to pass through the main application memory, which can have a significant performance impact and would require changes to VLCKit itself, as we currently don't expose this API on the ObjC side of th...
by xrddd
03 Jun 2019 06:48
Forum: VLC for iOS, iPadOS and Apple TV
Topic: In VLCKit,is there an approach that can get pixels buff of video every frame?
Replies: 9
Views: 3003

In VLCKit,is there an approach that can get pixels buff of video every frame?

I want get the video pixels buff in my app loop,so I can use it as texture to render myself.
Any help appreciate!

Go to advanced search