Pwolf 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
from http://www.animemusicvideos.org/phpBB/v ... light=part
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)
this is the little test i did, the colour tweak works well(the sat value is big so i can see it is working or not
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
but what now? the tweak filtering is GONE!! i changed to another filter like deen and it is not working as well as other filters. So can anyone helps me?
