fid-ffmpeg 0.3.6__tar.gz → 0.3.7__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fid-ffmpeg
3
- Version: 0.3.6
3
+ Version: 0.3.7
4
4
  Summary: based ffmpeg CLI for video operations
5
5
  Author-email: omar_abdalgwad <ahlawyomar95@gmail.com>
6
6
  Description-Content-Type: text/markdown
@@ -2,7 +2,7 @@ import typer
2
2
  import subprocess
3
3
  from pathlib import Path
4
4
  import shutil
5
- from welcome import welcome
5
+ from .welcome import welcome
6
6
  app = typer.Typer()
7
7
 
8
8
  formats = [".mp4",".mov",".avi",".webm"]
@@ -0,0 +1,16 @@
1
+ from rich.console import Console
2
+ from rich.panel import Panel
3
+ from rich.text import Text
4
+ console = Console()
5
+ def welcome():
6
+ logo = Text("fid-ffmpeg", style="bold gradient(blue , magenta)")
7
+ console.print(logo ,justify="center")
8
+ console.print( Panel.fit("[bold] fid-ffmpeg Helper [/bold]\n\n"
9
+ "[green]Commands:[/green]\n"
10
+ " • info Show video info\n"
11
+ " • audio Extract audio\n"
12
+ " • frames Extract frames\n"
13
+ " • gif Create gif\n"
14
+ " • mute Remove audio\n"
15
+ " • compress Compress video\n\n"
16
+ "[dim]Run : fid <command> <video path>[/dim]", border_style="cyan",))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fid-ffmpeg
3
- Version: 0.3.6
3
+ Version: 0.3.7
4
4
  Summary: based ffmpeg CLI for video operations
5
5
  Author-email: omar_abdalgwad <ahlawyomar95@gmail.com>
6
6
  Description-Content-Type: text/markdown
@@ -3,6 +3,7 @@ README.md
3
3
  pyproject.toml
4
4
  fid/__init__.py
5
5
  fid/fid.py
6
+ fid/welcome.py
6
7
  fid_ffmpeg.egg-info/PKG-INFO
7
8
  fid_ffmpeg.egg-info/SOURCES.txt
8
9
  fid_ffmpeg.egg-info/dependency_links.txt
@@ -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"
6
+ version = "0.3.7"
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