2024-12-18, 05:20 AM
(2024-12-18, 02:21 AM)theguymadmax Wrote:(2024-12-18, 02:05 AM)lakinreid Wrote:(2024-12-17, 02:42 AM)theguymadmax Wrote:(2024-12-17, 02:17 AM)lakinreid Wrote: So I'm attempting to use the updated line of code, but can't seem to get it working.. Am I running the powershell window in the wrong place? This is my first time dealing with FFMPEG and very much a novice at command line prompts, so please excuse my ignorance..
You only typed the arguments for the program. You need to first call the executable, then pass the arguments. See the example below:
Code:.\ffmpeg.exe -y -hide_banner -stats -fflags ............
Here are the results of my second attempt.. I feel like I'm missing something just very obvious..
also quick note for theDreadPirate, I was successful in updating my Jellyfin! Though I couldn't find where ffmpeg was located within Jellyfin, so I'm using the downloaded one in my argument.
So in my example I told you to enter this commandbut instead you enteredCode:.\ffmpeg.exe -y -hide_banner -stats ......
Code:"c:\full_path_to\ffmpeg.exe" -y -hide_banner -stats ......
Do you see the difference?
Hell yes, finally got it. thank you very much!! Just out of curiosity, what does ".\" do? Just automatically finds where ffmpeg.exe is located?