from http://www.animemusicvideos.org/phpBB/v ... light=partPwolf wrote:video = avisource("finalrenderhuffy.avi")
v1 = video.trim(firstframe,lastframe) #first part of video that doesn't have noise
v2 = video.trim(firstframe,lastframe) #part that has noise
v3 = video.trim(firstframe,lastframe) #next part that doesn't have noise
v1.addfiltershere.morehere.andhere.andhrerealso.untilyouaredone
v3.addthe.same.filtersas.v1here
return v1 + v2 + v3
well i followed this to preserve some noise i want.
Code: Select all
video = DirectShowSource("D:\source\First part.avi")
v1 = video.trim(15,30)
v2 = video.trim(31,45)
v1.tweak(sat=5.0)
v2.tweak(sat=5.0)
then i try to join the videos by adding "return v1 + v2"
so it becomes:
Code: Select all
video = DirectShowSource("D:\source\Yuki.N\Yuki N First part.avi")
v1 = video.trim(15,30)
v2 = video.trim(31,45)
v1.tweak(sat=5.0)
v2.tweak(sat=5.0)
return v1 + v2