in03 / proxima

Transcode source media directly from DaVinci Resolve using multiple machines for encoding. Great for creating proxies quickly.
MIT License
50 stars 3 forks source link

feat: Extend rerender offline prompt #232

Closed in03 closed 1 year ago

in03 commented 1 year ago
Original issue description ## Re-render offline prompt should ask [y/n All/None] ### Problem Currently only asks [y/n or All]. If all clips are offline and you want none of them to be re-rendered, you have to keep pressing 'n'. If the next prompt is for final queue confirmation and you're still pressing 'n', you'll have to start again. ### Solution Add "None" option by: - Requiring uppercase 'N' for 'None' - Requiring full words for options ['yes', 'no', 'all', 'none'] - Using an interactive menu instead of a simple confirmation: ``` * Yes No All None ```

closes #189