Daily Shaarli

All links of one day in a single page.

December 23, 2019

How to remove transcoded video peertube

How to remove transcoding from peertube :
SELECT FROM video WHERE uuid = ; // Find the id of the video you want
SELECT
FROM videoFile WHERE "videoId" = ; // Find all the videos transcoded for that video, select by dimension
DELETE FROM videoFile WHERE id = ; // Delete the transcoded wanted
rm /var/www/peertube/storage/videos/uuid-dimension.mp4