Search found 16 matches

Go to advanced search

by SaundersB
21 Mar 2017 14:48
Forum: VLC for Android and Chrome OS
Topic: Is there a way to rotate the libVLC surface instance?
Replies: 1
Views: 2147

Re: Is there a way to rotate the libVLC surface instance?

Is there no solution to rotate video/image playback with libVLC for Android?
by SaundersB
16 Mar 2017 19:55
Forum: VLC for Android and Chrome OS
Topic: Hardware Acceleration seems broken
Replies: 3
Views: 1826

Re: Hardware Acceleration seems broken

Go back to the command line and run the commands: "git tag" and "git log". When you run git tag it'll provide you with the most up to date tagged release version. Since you've pulled down the most recent master branch, you should have the latest release build. When you run git lo...
by SaundersB
08 Mar 2017 16:24
Forum: VLC for Android and Chrome OS
Topic: Hardware Acceleration seems broken
Replies: 3
Views: 1826

Re: Hardware Acceleration seems broken

What version if libVLC and git hash are you pulling from?
by SaundersB
06 Mar 2017 15:34
Forum: Development around libVLC
Topic: mediacodec decoder: AMediaCodec.configure failed
Replies: 2
Views: 3617

Re: mediacodec decoder: AMediaCodec.configure failed

What I think he means is that you need to manually reinitialize the libVLC instance yourself along with the other things you specified.
by SaundersB
05 Mar 2017 19:14
Forum: VLC for Android and Chrome OS
Topic: Media Controller
Replies: 1
Views: 1266

Re: Media Controller

First, include the libVLC library via Maven in Android. Then you'll create a libVLC instance object. You'll have to provide a file path of the media you want to play. You'll create a libVLC MediaPlayer and load the media into the MediaPlayer object. That MediaPlayer object will have commands like, s...
by SaundersB
05 Mar 2017 00:06
Forum: VLC for Android and Chrome OS
Topic: VLC don´t loop my video
Replies: 1
Views: 2569

Re: VLC don´t loop my video

I did figure this out for the Android VLC SDK. What you need to do is create an Android Surface View, and then instantiate the libVLC object to that surface view. From there, you'll need to figure out where the file is located. Once you have the file path and file name on the local device, you'll pr...
by SaundersB
03 Mar 2017 23:24
Forum: Web and scripting
Topic: What is the best method to stream multiple video inputs to the same IP address?
Replies: 3
Views: 4352

Re: What is the best method to stream multiple video inputs to the same IP address?

RTSP tends to displays a green or grey overlay until the frame refreshes after a few seconds. Especially over wifi. Have you experienced the same?
by SaundersB
03 Mar 2017 23:23
Forum: VLC for Android and Chrome OS
Topic: Is there a way to rotate the libVLC surface instance?
Replies: 1
Views: 2147

Is there a way to rotate the libVLC surface instance?

I'd like to be able to rotate a libVLC surface instance in quarter turns. I know how to set the size of the surface which I've embedded inside a Frame. But how would I go about quarter turning the video? I'm using libVLC for Android 2.0.6. public void setPlayerDimensions(int mPlayerWidth, int mPlaye...
by SaundersB
13 Feb 2017 16:59
Forum: Development around libVLC
Topic: Stretching Video and Images
Replies: 3
Views: 4796

Re: Stretching Video and Images

Thank you for your help. I ended up calculating the aspect ratio dynamically. int gcd = greatest_common_divisor(window_width, window_height); int new_width = window_width / gcd; int new_height = window_height / gcd; std::string ratio = convert_int_to_string(new_width) + ":" + convert_int_t...
by SaundersB
03 Feb 2017 23:10
Forum: Development around libVLC
Topic: Stretching Video and Images
Replies: 3
Views: 4796

Stretching Video and Images

I'm attempting to play video and images inside a Qt QFrame. I have to set the QFrame dimensions manually, and need to stretch the video to match the QFrame dimensions. No matter what I do I can't seem to get the video to stretch to both the horizontal and vertical. I want to change the video and not...
by SaundersB
10 Jan 2017 20:50
Forum: Development around libVLC
Topic: Video Resolution of Mosaic Inputs with libVLC
Replies: 1
Views: 2299

Re: Video Resolution of Mosaic Inputs with libVLC

FYI to anybody else that has the same problem as me. I ended up figuring out how to add the command line switched to the mosiac. The trick is to add the {} brackets after mosaic in the transcode command. There you can set your parameters. Hope this helps somebody. libvlc_vlm_add_broadcast(vlc, "...
by SaundersB
10 Jan 2017 18:43
Forum: Development around libVLC
Topic: Video Resolution of Mosaic Inputs with libVLC
Replies: 1
Views: 2299

Video Resolution of Mosaic Inputs with libVLC

Good morning, I have a question about specifying the individual broadcast inputs resolution for a mosaic. Currently, when I load a static file twice as two independent inputs, I'm seeing them at a fixed resolution. I set the resolution in the output, but it doesn't affect the resolution. I read: &qu...
by SaundersB
06 Jan 2017 16:06
Forum: Web and scripting
Topic: What is the best method to stream multiple video inputs to the same IP address?
Replies: 3
Views: 4352

Re: What is the best method to stream multiple video inputs to the same IP address?

FYI. So far I've found that the VLC mosaic is the best option to send multiple video inputs to a single receiver. I'm still trying to figure out the most efficient video streaming protocol though. Please let me know if anybody on this forum has any suggestions. Thank you.
by SaundersB
05 Jan 2017 17:26
Forum: VLC stream-output (sout)
Topic: Mosaic not working
Replies: 2
Views: 6214

Re: Mosaic not working

The command i'm using is : vlc -vvv --color --vlm-conf --mosaic-width=360 --mosaic-height=288 --mosaic-keep-picture --mosaic-rows=2 --mosaic-cols=2 --mosaic-position=1 --mosaic-order=1,2,3,4 mosaic.vlm --ttl 12 --udp-caching 800 --file-logging Correct me if I'm wrong but shouldn't you be specifying...
by SaundersB
05 Jan 2017 01:01
Forum: Web and scripting
Topic: What is the best method to stream multiple video inputs to the same IP address?
Replies: 3
Views: 4352

What is the best method to stream multiple video inputs to the same IP address?

I've been researching different video streaming protocols. I.E. HTTP, RTP, RTSP, UDP, etc... And I'm trying to figure out what the best method to send several video inputs (web cams, SDI inputs on a Blackmagic card, etc...) to either an Android tablet or an iPad. What would be my best bet in terms o...

Go to advanced search