Quantcast
Channel: Active questions tagged youtube-api - Stack Overflow
Viewing all articles
Browse latest Browse all 3831

.exe file, works different than .py file

$
0
0

I've made the YouTube Dowbloader App, and everything is working properly (run in PyCharm), but when I try to make it executable with pyinstaller, it's not working.

This is the link to the repo:

YouTube Downloader

Command for making exe file:pyinstaller project.spec

project.spec file:

# project.spec# -*- mode: python ; coding: utf-8 -*-block_cipher = Nonea = Analysis(    ['gui.py'],    pathex=['.'],    binaries=[],    datas=[('static_files/*', 'static_files')],    hiddenimports=[],    hookspath=[],    runtime_hooks=[],    excludes=[],    win_no_prefer_redirects=False,    win_private_assemblies=False,    cipher=block_cipher,)pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)exe = EXE(    pyz,    a.scripts,    [],    exclude_binaries=True,    name='YouTube Downloader',    debug=False,    bootloader_ignore_signals=False,    strip=False,    upx=True,    upx_exclude=[],    runtime_tmpdir=None,    console=False,    icon='static_files/logo.ico')coll = COLLECT(    exe,    a.binaries,    a.zipfiles,    a.datas,    strip=False,    upx=True,    upx_exclude=[],    name='YouTube Downloader')app = BUNDLE(    coll,    name='YouTube Downloader',    icon='static_files/logo.ico',    bundle_identifier=None)

The file structure:

project/├── backend.py├── gui.py├── temp_mp3 # temporary mp3 for Audio player├── static_files/│├── icon.ico│├── image1.png│├── image2.png│└── setup.json  # setup.json file└── project.spec

Search block diagram:Search block diagram

After searching and fetching the YouTube URL, the app downloaded an MP3 file (in temp_mp3) for the audio player section.

And here is the difference between .exe and .py, when I run .exe the APP downloads the audio segment from the URL in .webm format and stop[ed there. Even if the format is different, it should be converted to MP3 (in PyCharm does).

Find possible problem with moviepy/ffmpeg.exe (library for converting files).

project.spec

a = Analysis(    ['gui.py'],    pathex=['.'],    binaries=[('C:\\path\\to\\ffmpeg\\bin\\ffmpeg.exe', 'ffmpeg')],    datas=[('static_files/*', 'static_files')],

add binaries => path to ffmpeg.exe , but still doesnt work


Viewing all articles
Browse latest Browse all 3831

Trending Articles