Skip to content

ZReC/pipeclip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pipeclip

Currently, this software has the sole purpose of serializing whatever image|text you have in the clipboard through the standard output.
The image format of choice is called Portable Arbitrary Map.

Build

cargo build --release

The executable will be located at target/release/pipeclip

Usage

This program was meant to be used in conjunction with FFmpeg or similar:

pipeclip | ffmpeg -f pam_pipe -i - .webp

Though, you could use it to dump the contents into a file:

pipeclip > .pam
ffplay -f pam_pipe -i .pam

Acknowledgment

This app is cross-platform thanks to arboard.

License

See here