I am trying to pipe images using windows Powershell
Get-Content test_*.bmp | .\ffmpeg -framerate 1 -i - -c:v libx264 -r 25 -pix_fmt yuv420p -y video.mp4
Unfortunately, everything is working fine except that the resulting video is corrupted.
Then I tried a simple command in PowerShell like this:
Get-Content test.bmp > simple.bmp
This is corrupting the image very similar to the video I created earlier.
Is there a method to PIPE images to FFmpeg using Windows Powershell?