Yury Kostov
Yury Kostov
In earlier versions ot the plugin (6.0.5 f.e.) I changed size of the Container: ``` return Container( height: height, width: width, child: VlcPlayer( controller: _controller, aspectRatio: 16 / 9, placeholder:...
Working workaround (for me): ``` controller = VlcPlayerController.file(File(filepath_with_spaces)); // doesn't work on iOS controller = VlcPlayerController.file(File(Uri.file(filepath_with_spaces).path)); // works both on iOS and Android ``` (fixed: bracket was in wrong place)
> choosing **approximate** location here will result in failing retreiving the network name, since the `ACCES_FINE_LOCATION` won't be requested. Choosing here the precise location however will still result in retrieving...
@kakopappa Which profile you mean? In case of precise location is chosen, network_info_plus works fine. (https://pub.dev/packages/network_info_plus requires just two keys in Info.plist file. It's certainly done.)
@mvanbeusekom "Access WiFi information" is added (I just add it and forgot). If it would be not, as I said to kakopappa, it would be impossible the network_info_plus can work...
@mvanbeusekom Yes.
Same problem: no audio, log (I think no decoder was found, see below): I/IJKMEDIA(30422): Stream #0:0 I/IJKMEDIA(30422): (eng) I/IJKMEDIA(30422): : Video: h264 (avc1 / 0x31637661), yuvj420p(pc, bt709), 1920x1080 [SAR 1:1...
There is need to know which location (approximate or precise) was selected due to some functionality depends on it. For example, network_info_plus will do not work correctly if approximate location...
Same problem. MacOS Sonoma 14.2.1, Xcode: Version 15.1, iPhone 12, iOS 17.2. The bug appears on iOS 17+, doesn't appear on iOS 16-.
In the plugin code (flutter_vlc_player-7.4.1/ios/Classes/VlcViewController.swift) we can remove comments from these 2 lines: ``` // self.vlcMediaPlayer.libraryInstance.debugLogging = true // self.vlcMediaPlayer.libraryInstance.debugLoggingLevel = 3 ``` and will see more. Look at [iOS17_failed.log](https://github.com/solid-software/flutter_vlc_player/files/14005377/iOS17_failed.log)...