Skip to content

Commit

Permalink
updated descriptions in files, verified functionality of looper-pro a…
Browse files Browse the repository at this point in the history
…nd overlay-img-pro
  • Loading branch information
cskonopka committed Jul 5, 2024
1 parent ae4a5e3 commit 7c5b23b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@
| extract_sound | Extract audio from video file |
| frame_delay_pro1 | Apply frame delay effect with parameter input |
| frame_delay_pro2 | Apply frame delay effect with parameter input |
| looper_pro | Apply video looper effect base on frame size & start frame |
| lsd_feedback | Apply LSD-like frame delay effect |
| mirror_delay | Apply a frame delay plus a mirrored effect |
| nostalgic_stutter | Apply frame stutter akin to a corrupted file |
| overexposed_stutter | Apply a frame stutter and exposing the video like the file is corrupted |
| overlay_img_pro | Overlay an image with location & dimension control |
| resize | Resizing the dimensions of a video file |
| reverse | Reverse video file |
| scrolling_pro | Apply video scrolling effect with definable parameters |
Expand Down
20 changes: 10 additions & 10 deletions videobeaux.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,12 +218,12 @@ def lsd_feedback_vb(
#################
# looper-pro
#################
@app.command('looper-pro', help='Apply scrolling pro effect to video file.')
@app.command('looper-pro', help='Apply video looper effect base on frame size & start frame.')
def scrolling_pro_video(
input_file: str = typer.Argument(None, help="Input video file"),
loop_count: str = typer.Argument(None, help="Horizontal scroll parameter"),
size_in_frames: str = typer.Argument(None, help="Vertical scroll parameter"),
start_frame: str = typer.Argument(None, help="Vertical scroll parameter"),
loop_count: str = typer.Argument(None, help="Number of video loops"),
size_in_frames: str = typer.Argument(None, help="Size of loop in frames"),
start_frame: str = typer.Argument(None, help="Starting frame of loop"),
output_file: str = typer.Argument(None, help="Output video file")
):
params = {
Expand Down Expand Up @@ -307,14 +307,14 @@ def overexposed_stutter_vb(

# overlay_img_pro
####################
@app.command('overlay-img-pro', help='Apply the pro1 frame delay to video file.')
@app.command('overlay-img-pro', help='Overlay an image with location & dimension control.')
def overlay_img_pro_vb(
input_file: str = typer.Argument(None, help="Input video file "),
overlay_image: int = typer.Argument(None, help="Input weight for frame delay"),
x_position: str = typer.Argument(None, help="Input weight for frame delay"),
y_position: str = typer.Argument(None, help="Output video file"),
overlay_width: str = typer.Argument(None, help="Output video file"),
overlay_height: str = typer.Argument(None, help="Output video file"),
overlay_image: int = typer.Argument(None, help="Image file"),
x_position: str = typer.Argument(None, help="X position of the image file"),
y_position: str = typer.Argument(None, help="Y position of the image file"),
overlay_width: str = typer.Argument(None, help="Overlay image width"),
overlay_height: str = typer.Argument(None, help="Overlay image height"),
output_file: str = typer.Argument(None, help="Output video file")
):
params = {
Expand Down

0 comments on commit 7c5b23b

Please sign in to comment.