Search found 16 matches

Go to advanced search

by yairko
14 Jun 2017 11:09
Forum: VLC for Android and Chrome OS
Topic: NEON optimization
Replies: 1
Views: 310

NEON optimization

Hello,

Does VLC for Android includes NEON optimization in general, and module level (video filters) in specific ?

Thanks
by yairko
12 Jun 2017 10:25
Forum: VLC for Android and Chrome OS
Topic: module file extension
Replies: 1
Views: 267

module file extension

Hello,

Does module files have to be written in C or can I write a module in C++ ?

Thanks
by yairko
07 Jun 2017 09:10
Forum: VLC for Android and Chrome OS
Topic: OpenGL rendering
Replies: 1
Views: 303

OpenGL rendering

Hello, With the help of Jean Baptiste Kempf I managed to run a video filter on Android ( setHWDecoderEnabled(false,false) ). Well it works but only on the CPU. I also been told that the way to make hw filter work is by using TextureView and render with OpenGL. Right now TextureView does work but I f...
by yairko
29 May 2017 16:01
Forum: General VLC media player Troubleshooting
Topic: reading module parameters
Replies: 1
Views: 283

reading module parameters

Hello, I having difficulties passing arguments to a video filter module and read them successfully. This is the module descriptor: vlc_module_begin () set_description( N_("viva video filter") ) set_shortname( N_("viva" )) set_category( CAT_VIDEO ) set_subcategory( SUBCAT_VIDEO_VF...
by yairko
11 May 2017 15:25
Forum: VLC for Android and Chrome OS
Topic: VLC filter load
Replies: 0
Views: 204

VLC filter load

I have a clone of VLC for android and although it doesn't have any reference for video filters in the UI ( unlike vlc for windows), I do try to make VLC load a video filter from code. Class VLCOptions.java creates an ArrayList of options that are passed to the LibVLC. When I add an option for video ...
by yairko
25 Apr 2017 13:52
Forum: VLC for Android and Chrome OS
Topic: Video filters
Replies: 1
Views: 334

Re: Video filters

I wonder if anyone knows the answer to my question above ?
by yairko
18 Apr 2017 11:38
Forum: VLC for Android and Chrome OS
Topic: Video filters
Replies: 1
Views: 334

Video filters

Hello,

Does VLC for Android support video filters, like invert, mirror and puzzle ?

Thanks
by yairko
18 Apr 2017 08:47
Forum: General VLC media player Troubleshooting
Topic: Applying video filter on streaming video
Replies: 1
Views: 317

Applying video filter on streaming video

Hello,

I try to run a video filter on a streaming video with no success.
For example, this option "--video-filter=invert" responds with an error that video filter invert failed to create.

Can someone guide me through this ?
Thank you
by yairko
09 Apr 2017 12:21
Forum: Development around libVLC
Topic: Writing my own filter
Replies: 1
Views: 232

Writing my own filter

Hello,

I'm looking for the best location to write my own filter. It should be applied to each frame.
Should I write a VLC module, or maybe an ffmpeg filter ?

Your help is appreciated
by yairko
27 Mar 2017 17:32
Forum: General VLC media player Troubleshooting
Topic: git 2.0.6 instead of master
Replies: 0
Views: 1500

git 2.0.6 instead of master

Hello, As I compile VLC it appeared that git clone is on the latest / master version: Grgit.clone ( https://code.videolan.org/videolan/vlc-android.git ) What I need is version 2.0.6 but no matter what I try I can't get it to clone successfully. Like: Grgit.clone ( https://code.videolan.org/videolan/...
by yairko
21 Mar 2017 14:24
Forum: VLC for Android and Chrome OS
Topic: libvlc clear cache
Replies: 0
Views: 2194

libvlc clear cache

Hello, I stream video on vlc with the following code: Media m = new Media( libvlc, media ); // media is sdp file m.setHWDecoderEnabled( true, true ); m.addOption( ":network-caching=10" ); m.addOption( ":clock-jitter=0" ); m.addOption( ":clock-synchro=0" ); Notice that &...
by yairko
08 Mar 2017 16:44
Forum: VLC for Android and Chrome OS
Topic: delayed UDP stream
Replies: 1
Views: 1196

Re: delayed UDP stream

For future visitors, this made a huge difference on the latency for me: ArrayList<String> options = new ArrayList<>(); options.add("-vvv"); options.add("--aout=opensles_android"); options.add("--audio-time-stretch"); options.add("--no-drop-late-frames"); optio...
by yairko
06 Mar 2017 13:52
Forum: VLC for Android and Chrome OS
Topic: delayed UDP stream
Replies: 1
Views: 1196

delayed UDP stream

Hello,

I play a video with sdp file and it seems to reach my client delayed about 3 seconds relative to the server.
I added a call to setNetworkCaching but it doesn't seem t o have an impact on the delay.

Could it be that the source of the delay is the sdp file ?

Help is appreciated
by yairko
27 Feb 2017 19:18
Forum: VLC for Android and Chrome OS
Topic: playing sdp from resource
Replies: 0
Views: 762

playing sdp from resource

Hello,

Does libvlc for android can play sdp file from resource or file system ?

Thanks
by yairko
23 Feb 2017 16:01
Forum: VLC for Android and Chrome OS
Topic: Media Controller
Replies: 1
Views: 1252

Media Controller

Hello

I have a working vlc project on android and I need to add media controller with features like pause stop seek etc.
I'm in a dead end about how to do that. I simply can not find any reference for that feature.

Please help if you can
Appreciate
by yairko
06 Dec 2016 12:30
Forum: VLC for Android and Chrome OS
Topic: VLC Toolbar not showing
Replies: 0
Views: 275

VLC Toolbar not showing

Hello,

I have a working Android project but what I don't see is a toolbar (Stop, Puase, Slider, Forward, etc ... ).
Any idea how to show the toolbar ?

Thank you

Go to advanced search