Hello guys,
I am a newbie about Pyinstaller, until now I made only a couple of exe on 
Windows using it without any problem but today I experienced the first 
problem and seem to be related to ffmpeg. So, how may I add ffmpeg to my 
spec file?
Thanks,
Massimo

This is the content of my spec file:

# -*- mode: python ; coding: utf-8 -*-


block_cipher = None


a = Analysis(['MediaLoader2.py'],
pathex=['C:\\Dati\\workspaces\\PythonPyCharm\\MediaLoader2\\src'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='MediaLoader2',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True )

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyinstaller/27543c77-b2d6-4285-a008-566d981fe3c6n%40googlegroups.com.

Reply via email to