Search found 39 matches

Go to advanced search

by shaybc
01 Oct 2021 11:18
Forum: VLC for iOS, iPadOS and Apple TV
Topic: tvOS nowPlayingInfo not showing - SOLVED
Replies: 1
Views: 1985

Re: tvOS nowPlayingInfo not showing - SOLVED

Found my problem - you need to populate the NowPlaying info !! BEFORE !! you start playing the media ( mediaPlayer.play() ) and add RemoteCommandCenter play/pause actions (not sure why the one related to the other), maybe apple tv 'listen' to the play event and only then it understands that the medi...
by shaybc
01 Oct 2021 07:53
Forum: VLC for iOS, iPadOS and Apple TV
Topic: tvOS nowPlayingInfo not showing - SOLVED
Replies: 1
Views: 1985

tvOS nowPlayingInfo not showing - SOLVED

trying to display played media info on the apple tv "Notification Center" area: https://www.imore.com/sites/imore.com/files/styles/large_wm_blw/public/field/image/2019/09/apple-tv-multiple-users.jpg using the nowPlayingInfo dictionary (i am using SwiftUI), but any working code sample would...
by shaybc
18 Sep 2021 14:45
Forum: VLC for iOS, iPadOS and Apple TV
Topic: TVVLCKit, is it possible to use the same VLCMedia object twice ?
Replies: 5
Views: 5838

Re: TVVLCKit, add video progress-bar & thumbnail

so i solved my problem, it was a memory leak from the 'NotificationCenter.default.addObserver' call, it set a value to a global @ObservableObject in the callback function and for some reason it caused a leak, i turned my player into the @ObservableObject that holds the player state values and that f...
by shaybc
18 Sep 2021 11:56
Forum: VLC for iOS, iPadOS and Apple TV
Topic: MobileVLCKit 3.0 not getting all events...
Replies: 2
Views: 1768

Re: MobileVLCKit 3.0 not getting all events...

i rely on: Stream Added event ... private var playerStateChangedNotification: NSObjectProtocol? override init(frame: CGRect) { super.init(frame: frame) mediaPlayer.media = VLCMedia(url: URL(string: "http://some.video.URL")!) mediaPlayer.delegate = self mediaPlayer.drawable = self playerSta...
by shaybc
17 Sep 2021 17:34
Forum: VLC for iOS, iPadOS and Apple TV
Topic: TVVLCKit, is it possible to use the same VLCMedia object twice ?
Replies: 5
Views: 5838

Re: TVVLCKit, is it possible to use the same VLCMedia object twice ?

hey bubu, thanks for the reply, i already done what you are suggesting (this is exactly what i wrote in my example code), it compiles and it works, but ever since i made that change i am hunting for leaks and trying to understand what is eating the AppleTV resources, the app started crashing only be...
by shaybc
17 Sep 2021 16:10
Forum: VLC for iOS, iPadOS and Apple TV
Topic: TVVLCKit, is it possible to use the same VLCMedia object twice ?
Replies: 5
Views: 5838

TVVLCKit, is it possible to use the same VLCMedia object twice ?

hi, i am developing a SwiftUI tvOS app and using the TVVLCKit to download files and play them i would like to use the already loaded media (video file) again as a preview small thumbnail when scrubbing, i want a VLCMediaPlayer clone but to use the same already downloaded and parsed media object and ...
by shaybc
05 May 2016 09:10
Forum: VLC for iOS, iPadOS and Apple TV
Topic: Apple TV Playback Issues
Replies: 11
Views: 11953

Re: Apple TV Playback Issues

Ricanz1, thanks for the answer, but i was talking about DEVELOPING using VLC (ATV4) and not simply using VLC,

but thanks for trying
by shaybc
02 May 2016 02:02
Forum: VLC for iOS, iPadOS and Apple TV
Topic: SMB write file using VLCKit
Replies: 7
Views: 1196

Re: SMB write file using VLCKit

so after trying the libDSM which is embedded within the TVVLCKit i have created a simple Objective C file that will allow me to read and write text files to an SMB share on apple TV (and IOS), I use the VLCMedia and VLCMediaList to get computers share, file tree browsing and actual streaming, but th...
by shaybc
01 May 2016 15:51
Forum: VLC media player for macOS Troubleshooting
Topic: url scheme doesn't work with percent-encoded white space url
Replies: 1
Views: 610

Re: url scheme doesn't work with percent-encoded white space url

did any one ever fixed this issue? i am still suffering from it, and escaping the URL did not work. if the URL has special characters (other then spaces) - it still behaves badly. i am using TVVLCKit from swift in the following manner: let currentURL: NSURL = NSURL(string: "\(currentPath.string...
by shaybc
28 Apr 2016 13:45
Forum: VLC for iOS, iPadOS and Apple TV
Topic: SMB write file using VLCKit
Replies: 7
Views: 1196

Re: SMB write file using VLCKit

Felix - you are the best, thank you for everything
by shaybc
28 Apr 2016 12:10
Forum: VLC for iOS, iPadOS and Apple TV
Topic: SMB write file using VLCKit
Replies: 7
Views: 1196

Re: SMB write file using VLCKit

i wen through the code and only seen write operations to the local device (for download purposes) - are you sure?
by shaybc
28 Apr 2016 10:40
Forum: VLC for iOS, iPadOS and Apple TV
Topic: SMB write file using VLCKit
Replies: 7
Views: 1196

Re: SMB write file using VLCKit

off topic (not a VLC question) - is there any smb lib for SMB that can write files for objective-c / IOS / Apple-tv ?
by shaybc
27 Apr 2016 23:58
Forum: VLC for iOS, iPadOS and Apple TV
Topic: SMB write file using VLCKit
Replies: 7
Views: 1196

SMB write file using VLCKit

i know that VLCKit is using the libdsm (smb client in c), i also successfully used VLCMedia, VLCMediaList and VLCMediaDiscoverer to browse my local network shares with a simple swift code, but is it possible to use the VLCKit to write files to a network SMB share ? for instance a text file (not a ca...
by shaybc
27 Apr 2016 23:10
Forum: Development around libVLC
Topic: Is there any support for RTMP with parameters?
Replies: 2
Views: 911

Re: Is there any support for RTMP with parameters?

i use libVLC to play RTMP streams, but never with swfUrl parameters, if you want to play URLs with swfUrl, then try reading this, its pretty old but it has some code that can be used as a starting point: https://trac.videolan.org/vlc/ticket/8102 also, the vlc app allows avid-option parameter to pass...
by shaybc
27 Apr 2016 00:38
Forum: VLC for iOS, iPadOS and Apple TV
Topic: Guide - how to compile TVVLCKit build from Dec 28 2015
Replies: 12
Views: 1820

Re: Guide - how to compile TVVLCKit build from Dec 28 2015

first of all, make sure the TVVLCKit project you added was really copied to your project file hierarchy, second - make sure that when you build or run your app - that the VLC project is being built as well, search for this: http://i.imgur.com/uezOySr.png last: make sure you have the VLCKit root fold...
by shaybc
26 Apr 2016 22:00
Forum: VLC for iOS, iPadOS and Apple TV
Topic: Guide - how to compile TVVLCKit build from Dec 28 2015
Replies: 12
Views: 1820

Re: Guide - how to compile TVVLCKit build from Dec 28 2015

no need to thank, this is why these forums are here for, some of these grate developers here helped me, and this is my way of giving back (just try to do the same when you are in a giving spot :-) regarding your question: i use swift so i have a bridge header and i include the main header that inclu...
by shaybc
26 Apr 2016 03:40
Forum: VLC for iOS, iPadOS and Apple TV
Topic: Guide - how to compile TVVLCKit build from Dec 28 2015
Replies: 12
Views: 1820

Re: Guide - how to compile TVVLCKit build from Dec 28 2015

i compile the libTVVLCKit.a every time i am building my app from xCode - i have included the MobileVLCKit project into mine by copying the folder under my project folder and simply dragging the .xproj file into my project tree, then i went to my project icon from the project navigator tree, selected...
by shaybc
26 Apr 2016 03:28
Forum: VLC for iOS, iPadOS and Apple TV
Topic: Guide - how to compile TVVLCKit build from Dec 28 2015
Replies: 12
Views: 1820

Re: Guide - how to compile TVVLCKit build from Dec 28 2015

Ok, so thanks to this: http://stackoverflow.com/a/31486233/530884 i understand that the build process is not enough for bitcode compile, so i did an archive just of the libTVVLCKit.a itself and extracted it from the xCode organizer and put the result in my drop box in the same place ( https://goo.gl...
by shaybc
25 Apr 2016 01:04
Forum: VLC for iOS, iPadOS and Apple TV
Topic: Guide - how to compile TVVLCKit build from Dec 28 2015
Replies: 12
Views: 1820

Re: Guide - how to compile TVVLCKit build from Dec 28 2015

hi gavla, so i am guessing this: http://stackexchange.com/users/2096973/gav?tab=activity is you ;-) the compiled versions i have shared are bitCode enabled, but just in case i made a mistake and shared the previous builds - i have recompiled everything in release mode and shared it again into my dro...
by shaybc
24 Apr 2016 16:39
Forum: VLC for iOS, iPadOS and Apple TV
Topic: Guide - how to compile TVVLCKit build from Dec 28 2015
Replies: 12
Views: 1820

Re: Guide - how to compile TVVLCKit build from Dec 28 2015

not sure this is the right way to go (sharing compiled files) i think it can create problems in the end result project, but i am not sure, however, since i know where are you coming from, here is a link to all compiled versions i successfully created (build folder with the simulator, appletv builds,...
by shaybc
19 Apr 2016 22:16
Forum: VLC for iOS, iPadOS and Apple TV
Topic: libTVVLCKit.a file size
Replies: 11
Views: 1399

Re: libTVVLCKit.a file size

the distribution part is understood, but isn't including the .a file as a dependant library enough? (in the target's Linked Framework and Libraries on the General tab)
if it is then 20M is definitely not what i got :-)
by shaybc
18 Apr 2016 21:21
Forum: Forum, Website and Artwork discussion
Topic: is it allowed to display the VLC logo in your app?
Replies: 1
Views: 3362

is it allowed to display the VLC logo in your app?

hello,

I am building an app for the apple tv store, i have integrated the libTVVLCKit as a player into the app,
and i was wondering if it is allowed to use the VLC cone logo displayed on my app (for instance a button with caption: "Play using VLC player"),

thanks,
Shay.BC.
by shaybc
18 Apr 2016 21:13
Forum: VLC for iOS, iPadOS and Apple TV
Topic: libTVVLCKit.a file size
Replies: 11
Views: 1399

Re: libTVVLCKit.a file size

i managed eventually to lower the size by removing the .Framework file and adding only the "libTVVLCKit.a" for the apple tv (and not the one for the simulator, that reduced it little (143 M), if i will find another way to reduce it even further - i will update this post, thanks for the reply
by shaybc
18 Apr 2016 21:09
Forum: VLC for iOS, iPadOS and Apple TV
Topic: Apple TV Playback Issues
Replies: 11
Views: 11953

Re: Apple TV Playback Issues

i used libc++ from the start, and i am not complaining on the playback - thats working, but there are allot of simple http streams that crash and will not play with libVLC, and the load time is terrible, it takes about 5-10 seconds to play while with AVPlayer it takes less then a second, thanks for ...
by shaybc
18 Apr 2016 21:03
Forum: Development around libVLC
Topic: [VLCKit - tvOS] libVLC build broken
Replies: 18
Views: 3885

Re: [VLCKit - tvOS] libVLC build broken

I used libstdc++ from the get go, and there are no jitters in playback, but load time is awful, there are http streams that will not play while in AVPlayer they play fast and smooth easily, so i concluded that there are things i can do with AVPlayer with VLC will not do - that is why i disabled thes...

Go to advanced search