[REL] Wildflowers - The Children of Never (2020) short [Belgium]

Short films and movies available on-line at Vimeo, YouTube and similar sites can be posted here once they have an ed2k link.
User avatar
ghost
Site Admin
Posts: 8552
Likes:
Joined: Sun Mar 07, 2004 1:00 am

[REL] Wildflowers - The Children of Never (2020) short [Belgium]

Post by ghost »   70 likes

https://www.imdb.com/title/tt14064146/
During a boring summer vacation, new girl Willow tries to find her way in a very special boarding school. She is trying to come to terms with her traumatic past. As she meets the other residents and tries to make friends, she finds out that their dark past is exactly what ties them together.
[Image]

Trailer on Vimeo: https://vimeo.com/489622827

The movie had Dutch hardburned subtitles. I removed them (as far it was possible).

Like this post to see ed2k links  [742.36 Mb]

German subtitles for those, who need them:
Like this post to see ed2k links  [17.4 Kb]
User avatar
ghost
Site Admin
Posts: 8552
Likes:
Joined: Sun Mar 07, 2004 1:00 am

Re: [REL] Wildflowers - the children of never (2020) short [Belgium]

Post by ghost »   0 likes

I think, you didn't use the search function. ;)

Topics merged.
User avatar
jezevex
Posts: 1969
Likes:
Joined: Sun Jun 05, 2011 1:00 am

Re: [REL] Wildflowers - The Children of Never (2020) short [Belgium]

Post by jezevex »   0 likes

I used, trust me. But it didn't return me anything... And it wasn't the first case - the searching engine is probably not so strong... But it doesn't matter if we have patient admins... :-)
Last edited by jezevex on Sat Jan 15, 2022 8:01 am, edited 1 time in total.
User avatar
ghost
Site Admin
Posts: 8552
Likes:
Joined: Sun Mar 07, 2004 1:00 am

Re: [REL] Wildflowers - The Children of Never (2020) short [Belgium]

Post by ghost »   0 likes

But it doesn't matter if we have patient admins :-)
:mrgreen:

I don't know what went wrong. I found it at once using "wildflowers".
David32441
Posts: 805
Likes:
Joined: Thu Jul 22, 2021 2:48 am

Re: [REL] Wildflowers - The Children of Never (2020) short [Belgium]

Post by David32441 »   0 likes

ghost wrote:
But it doesn't matter if we have patient admins :-)
:mrgreen:

I don't know what went wrong. I found it at once using "wildflowers".
How on Earth did you remove the original subtitles!!
I know there's a filter called "Logoaway" for VirtualDub where you can make a square of screen transparent - take the appearance of the data around it. You can even multi-layer it to make various shapes. But that's a fixed bit of the video image - not something as dynamic as subtitles!! Very interested as a few times I've wanted to do the same!
User avatar
ghost
Site Admin
Posts: 8552
Likes:
Joined: Sun Mar 07, 2004 1:00 am

Re: [REL] Wildflowers - The Children of Never (2020) short [Belgium]

Post by ghost »   0 likes

How on Earth did you remove the original subtitles!!
I used an avisynth script which I found some time ago: https://forum.videohelp.com/threads/358 ... ELP-PLEASE
Spoiler:

Code: Select all

#############################################################################################################################
#                                  HARDCODED SUBTITLE and LOGO REMOVAL by Skier70                                           #
#   You can use this script to remove hard coded subtitles or Logos.                                                        #
#                                                                                                                           #
#   All you need to do is to;                                                                                               #
#   1) Edit the Virtualdub plugin direcotry path in LINE 1 and LINE 2 according to your computer.                           #
#   2) Check your video, find a suitable scene with the longest subtitle, save the image of the screen,                     #
#   then write down the Top Left Corner coordinates (X and Y) of the longest subtitle. Let's say it is X=238 Y=470.         #
#   Then edit the script line 3 and 4 in order to write those coordinates into the variables                                #
#   SubtitleTopLeftX and SubtitleTopLefty respectively.                                                                     #
#   #3) Then Please replace the text "Pandora (2016).HARDSUB.WEB.HEVC.720p.mp4" in line 5 with your source video name.      #
#                                                                                                                           #
#   LINE 3 SubtitleTopLeftX = 238                                                                                           #
#   LINE 4 SubtitleTopLeftX = 470                                                                                           #
#   LINE 5 clip = FFVideoSource("Pandora (2016).HARDSUB.WEB.HEVC.720p.mp4").ConvertToRGB32()                                #
#                                                                                                                           #
#   4) You can feed this scipt to MeGUI (it's the fastest) and encode your video.                                           #
#   Please note that I have not included audio in this script to keep it simple and trouble free.                           #
#   You can mux the audio afterwards by using any tool like mkvmerge, AviDemux etc.                                         #
#                                                                                                                           #
#############################################################################################################################

LoadVirtualdubplugin("C:\Program Files (x86)\VirtualDub\plugins32\exorcist.vdf", "Exorcist", 1)
LoadVirtualdubplugin("C:\Program Files (x86)\VirtualDub\plugins32\Bright.vdf", "Brightness_Contrast", 1)
SubtitleTopLeftX = 238
SubtitleTopLeftY = 470
clip = FFVideoSource("Pandora (2016).HARDSUB.WEB.HEVC.720p.mp4").ConvertToRGB32()
maskclip = Levels(clip, 111, 10.000, 255, 99, 211)
maskclip = GeneralConvolution(maskclip, 0, "
   10 10 10 10 10
   10 10 10 10 10 
   10 10 10 10 10 
   10 10 10 10 10 
   10 10 10 10 10 ", 256, false)
clip2 = OverLay(clip,maskclip,0,0,mode="subtract")
clip2 = Blur(clip2, 1.58)
clip2 = ConvertToYUY2(clip2)
clip2= Tweak(clip2, hue=-180.0,bright=22,cont=10.0)
maskclip = Crop(clip2, SubtitleTopLeftX,SubtitleTopLeftY,-SubtitleTopLeftX,0).ConvertToRGB32.crop(0,0,0,-2).Trim(0,0)
maskclip = maskclip.Brightness_Contrast(-254, 32) 
maskclip = ConvertToYUY2(maskclip)
maskclip = Tweak(maskclip, hue=-180.0,sat=0.0,bright=22,cont=10.0)
maskclip = ConvertToRGB32(maskclip)
maskclip = maskclip.Levels(0, 0.281, 100, 6, 255)
maskclip = maskclip.Greyscale()
maskclip = maskclip.Exorcist(2, 100) 
maskclip = maskclip.Exorcist(-2, 100) 
maskclip = maskclip.Brightness_Contrast(-21, 32) 
maskclip = GeneralConvolution(maskclip, 0, "
   25 25 25 25 25
   25 25 25 25 25
   25 25 25 25 25
   25 25 25 25 25
   25 25 25 25 25   ", 256, false) 
maskclip = maskclip.Core(116,0)
maskclip = maskclip.Blur(1.58)
clip = dekafka(clip, maskclip, SubtitleTopLeftX, SubtitleTopLeftY, maskclip.width, maskclip.height, 256)
clip = ConvertToYV12(clip)
return clip
David32441
Posts: 805
Likes:
Joined: Thu Jul 22, 2021 2:48 am

Re: [REL] Wildflowers - The Children of Never (2020) short [Belgium]

Post by David32441 »   0 likes

ghost wrote:
How on Earth did you remove the original subtitles!!
I used an avisynth script which I found some time ago: https://forum.videohelp.com/threads/358 ... ELP-PLEASE
Spoiler:

Code: Select all

#############################################################################################################################
#                                  HARDCODED SUBTITLE and LOGO REMOVAL by Skier70                                           #
#   You can use this script to remove hard coded subtitles or Logos.                                                        #
#                                                                                                                           #
#   All you need to do is to;                                                                                               #
#   1) Edit the Virtualdub plugin direcotry path in LINE 1 and LINE 2 according to your computer.                           #
#   2) Check your video, find a suitable scene with the longest subtitle, save the image of the screen,                     #
#   then write down the Top Left Corner coordinates (X and Y) of the longest subtitle. Let's say it is X=238 Y=470.         #
#   Then edit the script line 3 and 4 in order to write those coordinates into the variables                                #
#   SubtitleTopLeftX and SubtitleTopLefty respectively.                                                                     #
#   #3) Then Please replace the text "Pandora (2016).HARDSUB.WEB.HEVC.720p.mp4" in line 5 with your source video name.      #
#                                                                                                                           #
#   LINE 3 SubtitleTopLeftX = 238                                                                                           #
#   LINE 4 SubtitleTopLeftX = 470                                                                                           #
#   LINE 5 clip = FFVideoSource("Pandora (2016).HARDSUB.WEB.HEVC.720p.mp4").ConvertToRGB32()                                #
#                                                                                                                           #
#   4) You can feed this scipt to MeGUI (it's the fastest) and encode your video.                                           #
#   Please note that I have not included audio in this script to keep it simple and trouble free.                           #
#   You can mux the audio afterwards by using any tool like mkvmerge, AviDemux etc.                                         #
#                                                                                                                           #
#############################################################################################################################

LoadVirtualdubplugin("C:\Program Files (x86)\VirtualDub\plugins32\exorcist.vdf", "Exorcist", 1)
LoadVirtualdubplugin("C:\Program Files (x86)\VirtualDub\plugins32\Bright.vdf", "Brightness_Contrast", 1)
SubtitleTopLeftX = 238
SubtitleTopLeftY = 470
clip = FFVideoSource("Pandora (2016).HARDSUB.WEB.HEVC.720p.mp4").ConvertToRGB32()
maskclip = Levels(clip, 111, 10.000, 255, 99, 211)
maskclip = GeneralConvolution(maskclip, 0, "
   10 10 10 10 10
   10 10 10 10 10 
   10 10 10 10 10 
   10 10 10 10 10 
   10 10 10 10 10 ", 256, false)
clip2 = OverLay(clip,maskclip,0,0,mode="subtract")
clip2 = Blur(clip2, 1.58)
clip2 = ConvertToYUY2(clip2)
clip2= Tweak(clip2, hue=-180.0,bright=22,cont=10.0)
maskclip = Crop(clip2, SubtitleTopLeftX,SubtitleTopLeftY,-SubtitleTopLeftX,0).ConvertToRGB32.crop(0,0,0,-2).Trim(0,0)
maskclip = maskclip.Brightness_Contrast(-254, 32) 
maskclip = ConvertToYUY2(maskclip)
maskclip = Tweak(maskclip, hue=-180.0,sat=0.0,bright=22,cont=10.0)
maskclip = ConvertToRGB32(maskclip)
maskclip = maskclip.Levels(0, 0.281, 100, 6, 255)
maskclip = maskclip.Greyscale()
maskclip = maskclip.Exorcist(2, 100) 
maskclip = maskclip.Exorcist(-2, 100) 
maskclip = maskclip.Brightness_Contrast(-21, 32) 
maskclip = GeneralConvolution(maskclip, 0, "
   25 25 25 25 25
   25 25 25 25 25
   25 25 25 25 25
   25 25 25 25 25
   25 25 25 25 25   ", 256, false) 
maskclip = maskclip.Core(116,0)
maskclip = maskclip.Blur(1.58)
clip = dekafka(clip, maskclip, SubtitleTopLeftX, SubtitleTopLeftY, maskclip.width, maskclip.height, 256)
clip = ConvertToYV12(clip)
return clip
That's amazing - thanks! I've used Virtual dub filters so would be impressed to try this - it's some super-skilled god-like code!
User avatar
popdrome
Posts: 2241
Likes:
Joined: Sat Mar 25, 2006 1:00 am

Re: [REL] Wildflowers - The Children of Never (2020) short [Belgium]

Post by popdrome »   1 likes

I used my gogo-gadget-binoculars and can see the subtitles! Good for me cos I'm dutch :thumbsup :icon_biggrin2 :smile-l

Don't go quietly into the night.
User avatar
ghost
Site Admin
Posts: 8552
Likes:
Joined: Sun Mar 07, 2004 1:00 am

Re: [REL] Wildflowers - The Children of Never (2020) short [Belgium]

Post by ghost »   0 likes

my gogo-gadget-binoculars
WTF! What's that? :o :o
Post Reply