fid-ffmpeg 0.3.6__tar.gz → 0.3.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/PKG-INFO +1 -1
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/fid/fid.py +1 -1
- fid_ffmpeg-0.3.8/fid/welcome.py +24 -0
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/fid_ffmpeg.egg-info/PKG-INFO +1 -1
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/fid_ffmpeg.egg-info/SOURCES.txt +1 -0
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/pyproject.toml +1 -1
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/LICENSE +0 -0
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/README.md +0 -0
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/fid/__init__.py +0 -0
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/fid_ffmpeg.egg-info/dependency_links.txt +0 -0
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/fid_ffmpeg.egg-info/entry_points.txt +0 -0
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/fid_ffmpeg.egg-info/requires.txt +0 -0
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/fid_ffmpeg.egg-info/top_level.txt +0 -0
- {fid_ffmpeg-0.3.6 → fid_ffmpeg-0.3.8}/setup.cfg +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
from rich.console import Console
|
|
2
|
+
from rich.panel import Panel
|
|
3
|
+
from rich.text import Text
|
|
4
|
+
import pyfiglet
|
|
5
|
+
|
|
6
|
+
console = Console()
|
|
7
|
+
|
|
8
|
+
def welcome():
|
|
9
|
+
ascii=pyfiglet.figlet_format("fid-ffmpeg",font="slant")
|
|
10
|
+
logo = Text(ascii)
|
|
11
|
+
logo.stylize("bold gradient(blue, magenta)")
|
|
12
|
+
console.print(logo, justify="center")
|
|
13
|
+
content = (
|
|
14
|
+
"[bold]fid-ffmpeg Helper[/bold]\n\n"
|
|
15
|
+
"[green]Commands:[/green]\n"
|
|
16
|
+
" • info Show video info\n"
|
|
17
|
+
" • audio Extract audio\n"
|
|
18
|
+
" • frames Extract frames\n"
|
|
19
|
+
" • gif Create gif\n"
|
|
20
|
+
" • mute Remove audio\n"
|
|
21
|
+
" • compress Compress video\n\n"
|
|
22
|
+
"[dim]Run : fid <command> <video path>[/dim]")
|
|
23
|
+
console.print(
|
|
24
|
+
Panel(content,title="fid-ffmpeg",border_style="cyan",expand=True))
|
|
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.0", "wheel"]
|
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
[project]
|
|
5
5
|
name = "fid-ffmpeg"
|
|
6
|
-
version = "0.3.
|
|
6
|
+
version = "0.3.8"
|
|
7
7
|
description = " based ffmpeg CLI for video operations"
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
authors = [{ name = "omar_abdalgwad", email = "ahlawyomar95@gmail.com" }]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|