This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
ffmpeg_term [2012/02/04 20:42] cerberus [Option 2] |
ffmpeg_term [2012/02/04 20:50] (current) cerberus add MAC kill process :) |
||
|---|---|---|---|
| Line 6: | Line 6: | ||
| ==== Option 1 ==== | ==== Option 1 ==== | ||
| - | |||
| 1. Download and extract the ffmpeg kill.bat from the attached ZIP file | 1. Download and extract the ffmpeg kill.bat from the attached ZIP file | ||
| Line 15: | Line 14: | ||
| ==== Option 2 ==== | ==== Option 2 ==== | ||
| - | |||
| 1. Create FFmpeg kill.bat | 1. Create FFmpeg kill.bat | ||
| Line 26: | Line 24: | ||
| 5. Enjoy | 5. Enjoy | ||
| - | ====== On Linux/ | + | ===== On Linux/ |
| 1. From command prompt type | 1. From command prompt type | ||
| < | < | ||
| + | |||
| + | ===== On Mac ===== | ||
| + | |||
| + | For MAC we have 2 options. | ||
| + | |||
| + | 1. To force-kill a process one has to send the KILL signal: | ||
| + | |||
| + | killall -KILL ffmpeg | ||
| + | |||
| + | 2. To kill a process that runs under a different user: (may ask for a password) | ||
| + | |||
| + | sudo killall -KILL ffmpeg | ||
| + | |||