mrJean1

Results 79 comments of mrJean1

If "fat binary" means the same as Apple term `universal2 Apps`, that Python 3.10.1 and PyInstaller can only create `intel` bundles. PyInstaller can build `universal2` bundles only with a Python...

After tinkering with `vlc.py` and the PyInstaller `spec` to include the `libvlccore.dylib` and `libvlc.dylib` VLC files in an `--onefile` and `--onedir` bundle, the resulting apps do not work. Either PyInstaller...

Using PyInstaller on an M1 to build `--windowed` `--target-arch=universal2` bundles with `universal2` Python 3.10.2 works just fine for two `python-vlc` examples `cocoavlc.py` and `tkvcl.py`, both as `--onedir` and `--onefile`. All...

A) Possibly, but code signing is not needed if the bundle only runs on the machine where it is built. B) An `intel` bundle built on an `intel` machine _may_...

No. Code signing thru PyInstaller fails and I haven’t investigated this beyond that.

Unable to reproduce the issue ... ``` import vlc >>> rtsp = 'rtsp://[email protected]/0/av0' >>> i = vlc.Instance("-sout=#transcode{vcodec=h264,acodec=mp3,vb=500,fps=30.0}:std{mux=mp4,dst=test.mp4,access=file}") >>> p = i.media_player_new() >>> p.set_mrl(rtsp) >>> p.play() 0 >>> [00007fea788141b0] live555 demux...

Not sure what the best way would be. Using numpy or scipy would only be faster if the conversion is done by a function built-in to numpy or scipy. Show...

The [pygeodesy.EcefKarney](https://mrjean1.github.io/PyGeodesy/docs/pygeodesy.ecef.EcefKarney-class.html) class is a Python version of the [Geocentric](https://GeographicLib.SourceForge.io/html/classGeographicLib_1_1Geocentric.html) class transcribed from Karney's [GeographicLib](https://geographiclib.sourceforge.io/html/index.html) library _in C++_. That is one library to look into and perhaps other ones like...

Great, looking forward to that. Also do check the PyMap3d package, it uses numpy provided that is installed. It wraps several Python functions with numpy.vectorize. However, it is unclear how...

Which title functions in python-vlc did you search and/or try? Also, it is unclear which “title” the VLC app is showing. Is that the file name of the video? Or...