Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codedejustin/video_xtractor
ATTENTION : L'EXTRACTION DE VIDÉOS ET D'AUDIO PEUT VIOLER LES DROITS D'AUTEUR ET LES LOIS DE PROTECTION DE LA VIE PRIVÉE. UTILISEZ CET OUTIL DE MANIÈRE RESPONSABLE ET CONFORMÉMENT AUX LOIS EN VIGUEUR! Ce programme extrait l'audio-vidéo de sites internet et les convertit en formats audio et vidéo. Utilisez cet outil de façon éthique et responsable.
https://github.com/codedejustin/video_xtractor
ffmpeg ffmpeg-wrapper git github python3 spec visual-studio-code
Last synced: about 2 months ago
JSON representation
ATTENTION : L'EXTRACTION DE VIDÉOS ET D'AUDIO PEUT VIOLER LES DROITS D'AUTEUR ET LES LOIS DE PROTECTION DE LA VIE PRIVÉE. UTILISEZ CET OUTIL DE MANIÈRE RESPONSABLE ET CONFORMÉMENT AUX LOIS EN VIGUEUR! Ce programme extrait l'audio-vidéo de sites internet et les convertit en formats audio et vidéo. Utilisez cet outil de façon éthique et responsable.
- Host: GitHub
- URL: https://github.com/codedejustin/video_xtractor
- Owner: CodeDeJustin
- License: mit
- Created: 2024-07-27T14:37:48.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-02T02:54:47.000Z (5 months ago)
- Last Synced: 2024-11-23T01:33:59.570Z (about 2 months ago)
- Topics: ffmpeg, ffmpeg-wrapper, git, github, python3, spec, visual-studio-code
- Language: Python
- Homepage: https://justinallard.ca
- Size: 38.6 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Visitez mon site web : justinallard.ca
Générer le fichier .spec :
Utilisez la commande suivante pour générer le fichier .spec de base:TERMINAL OU POWERSHELL→→→ pyinstaller --onefile --icon=snake.ico video_xtractor.py
Puis vous devez inclure le dossier ffmpeg à l'intérieur du fichier spec:
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(
['video_xtractor.py'],
pathex=['C:\\VotreDossier\\VotreSousDossier\\video_xtractor'],
binaries=[],
datas=[('ffmpeg/bin', 'ffmpeg/bin')],
hiddenimports=['yt_dlp', 'colorama'],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='video_xtractor',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon='snake.ico',
)Pour créer un fichier exécutable de ce projet (construction de l'exécutable), veuillez, dans le terminal du projet, à l'emplacement du programme, écrire la ligne de commande suivante:
TERMINAL OU POWERSHELL→→→ pyinstaller video_xtractor.spec
Le fichier exécutable video_xtractor.exe se trouvera à l'intérieur du dossier dist nouvellement créé.