Cleanvid code name "Gooey" has been released and is in beta.
Please leave comments below and dont forget to ticket any bugs you find.
MD5 SUM: b4c1cde98a0d9c938e3ec9476e8b74330b427769036e9fbae5de622cbcd6e516
Features
- Remove commercials from playon.tv recordings
- Trim First 7 and Last 15 Seconds
- Re-Encode to x265 mp4 with aac audio
Categories
MultimediaFollow CleanVid
You Might Also Like
Full Control for Complex IT - Try PRTG Now
As an IT monitoring expert, you need more than basic alerts - you need actionable data and full transparency. PRTG gives your team a single pane of glass for all systems, devices, and applications, with customizable dashboards and granular user management. Detect issues before they escalate, automate reporting, and ensure compliance with SLAs. PRTG’s scalable engine and advanced analytics help you optimize resources, reduce manual effort, and keep your organization running smoothly. Take control of your IT landscape and make smarter decisions with real-time, enterprise-grade monitoring.
Rate This Project
Login To Rate This Project
User Reviews
-
Great addition to the PlayOn capabilities! The install process could be a bit more clear: (1) FFmpeg needs to be installed and then added to the path (such as C:\ffmpeg\bin). I used Start Menu -> Search -> env and then "Edit environment variables for your account.lnk" to update the Path variable. (2) Sendto folder is located at %AppData%\Microsoft\Windows\SendTo Also the cleanvid batch file needed a bit of work: IF EXIST %1.cleaned.mp4 rm %1.backup mv %1.backup %1 mkdir "%~p1\cleaned\" move %1.cleaned.mp4 "%~p1\cleaned\%~n1.mp4" Deletes the backup file if the clean completes and then attempts to restore (move) the backup. I simplified this (removing the cleaned subdir) to: IF EXIST %1.cleaned.mp4 rm %1.backup IF EXIST %1.backup mv %1.backup %1 IF EXIST %1.cleaned.mp4 move %1.cleaned.mp4 %1