Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > VapourSynth

Reply
 
Thread Tools Search this Thread Display Modes
Old 31st May 2021, 14:38   #21  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
Images are allowed! I can send you an example / small tut later.
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database
ChaosKing is offline   Reply With Quote
Old 31st May 2021, 15:01   #22  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
Look here is your html code + a image on github: https://thechaoscoder.github.io/pagestest/
Image url https://thechaoscoder.github.io/pagestest/unnamed.png

I added a branch "homepage". You just choose this branch in your github repo settings and github will use it as the root folder to serve html pages. Repo: https://github.com/theChaosCoder/pag.../tree/homepage

I will upload a short video later on how to do it.

EDIT
You could also stay on avisynth.nl but host only the images on github. Basically what zorr suggested with an external img hoster.
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database

Last edited by ChaosKing; 31st May 2021 at 15:14.
ChaosKing is offline   Reply With Quote
Old 31st May 2021, 23:13   #23  |  Link
zorr
Registered User
 
Join Date: Mar 2018
Posts: 447
Quote:
Originally Posted by vcmohan View Post
Thanks for the link. The site probably shows some ads. It may be against the policy of this forum. I need to check.
You can link to the images without any ads. For example if you look at the first post in this thread the images are all hosted on postimages.org.

And like Chaos said Github is also an option. But you just need to figure out what works best for you.
zorr is offline   Reply With Quote
Old 4th June 2021, 10:35   #24  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
Took a bit longer but here's a quick how to setup github pages.


https://www.dropbox.com/s/q6ue2r2p8b...tpage.mp4?dl=0

or direct download link https://www.dropbox.com/s/q6ue2r2p8b...tpage.mp4?dl=1

* The "myhomepage" branch is optional, you could also just use "main".
* I just found out you can even drag and drop a folder with all your images in the upload box thingy!
* There a some good and free git GUIs like "GitHub Desktop" where you can clone, pull and push with just a mouse click.


Editing in ScreenToGif is not the best experience
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database

Last edited by ChaosKing; 4th June 2021 at 10:39.
ChaosKing is offline   Reply With Quote
Old 6th July 2021, 21:41   #25  |  Link
ReinerSchweinlin
Registered User
 
Join Date: Oct 2001
Posts: 454
Some PNGs could be reduced in size with some PNG Optimizer - but 100MB eventually will be not enough

If you want something traditional, I could give you some space to host stuff - not using it myself, so what better use than to support such fine filters I would gladly help you out!
ReinerSchweinlin is offline   Reply With Quote
Old 13th July 2021, 14:22   #26  |  Link
vcmohan
Registered User
 
Join Date: Jul 2003
Location: India
Posts: 890
Many thanks. I am examining my page and finding some unnecessary images. I will remove them and optimize rest. many thanks once again.
__________________
mohan
my plugins are now hosted here
vcmohan is offline   Reply With Quote
Old 17th July 2021, 10:28   #27  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,277
@vcmohan: Any hint in how to convert a defish(fov=114,scaling="fitxy") in an equivalent vcm.DeBarrel(..) call?
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 17th July 2021, 13:57   #28  |  Link
vcmohan
Registered User
 
Join Date: Jul 2003
Location: India
Posts: 890
I have not really thought about that. But may be try with a square sized frame and debarrel with relatively higher values for a and b. I am not sure it will work. I will try.
__________________
mohan
my plugins are now hosted here

Last edited by vcmohan; 17th July 2021 at 14:03.
vcmohan is offline   Reply With Quote
Old 17th July 2021, 16:10   #29  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,277
Quote:
I will try.
Thanks, I keep my fingers crossed, since I would really prefer to use Vapoursynth with vcm.DeBarrel instead of Avisynth with defish to drop the Avisynth dependency (which would allow me to do this on Linux and MacOS), but I now have spend quite some time and I don't seem to be anywhere near the results I (so easily) got with defish.

Cu Selur
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 18th July 2021, 12:37   #30  |  Link
vcmohan
Registered User
 
Join Date: Jul 2003
Location: India
Posts: 890
The problem with the input is the center of frame is not the center of the fish eye. Need to correct for that first. As the fish eye looks like a circular photo, the value of c be 0.5 with a and b at zero. Sorry I misguided you. I also added borders on left, top, bottom and right for centering and for accommodating the corrected image. Finally I cropped to be equal to that of the defish_eye image seen in the link.
the script used is
<code>
ret = core.std.AddBorders(ret,left = 100, right = 100, top = 100, bottom = 740)
ret = core.vcm.DeBarrel(ret,abc =[ 0.0, 0.0, 0.5],pin = 0)
ret=core.std.Crop(ret,left = 60, right = 60, top = 40, bottom = 740)
</code>
__________________
mohan
my plugins are now hosted here
vcmohan is offline   Reply With Quote
Old 18th July 2021, 13:41   #31  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,277
Nice! Thanks!
Avisynth with defish(fov=114,scaling="fitxy"):

DeBarrel:


Cu Selur
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 18th July 2021, 14:07   #32  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
defish looks extremly cropped, is this normal?
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database
ChaosKing is offline   Reply With Quote
Old 18th July 2021, 14:13   #33  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,156
Can you share me original picture to compare??

Last edited by kedautinh12; 18th July 2021 at 14:54.
kedautinh12 is offline   Reply With Quote
Old 18th July 2021, 14:22   #34  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,277
Quote:
Can you share me original pickture to compare??
Original pic was linked in the thread I linked to, you can download it from https://mars.nasa.gov/mars2020/multi...Z02002_01_295J
Quote:
defish looks extremly cropped, is this normal?
Not sure whether it's normal, but since it by default keeps the input resolution it's to be expected to crop quite a bit.
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 18th July 2021, 16:38   #35  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,277
btw. when using:
Code:
defish(fov=114,scaling="fitxy", scale=0.5)
you see why the cropping is so strong:


Cu Selur
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 22nd July 2021, 11:51   #36  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,156
Success to port script to avisynth x64, thank vcmohan very much
kedautinh12 is offline   Reply With Quote
Old 28th July 2021, 20:11   #37  |  Link
zorr
Registered User
 
Join Date: Mar 2018
Posts: 447
I'm testing vcm.F1QLimit and noticed some oddities.
  • The max value of span is 99, with bigger values I get error message "F1QLimit: limit percentage value can be 0 to 99". I tested with 1920x1080 source so the max should be 1920/8 = 240.
  • Documentation states that frequencies should be at least 10 larger than span but on some cases it needs to be 11 larger. For example span=90 and freqs=[100] gives error message "F1QClean: freqs must be between 10 + span and nuquist - span". Changing span to 89 or frequency to 101 makes the error go away.
  • The max frequency should be 512 - span but if span is even then the correct formula is 512 - span - 1. For example with span 6 the max frequency is 505. Does even span make sense, should it always be odd?
zorr is offline   Reply With Quote
Old 2nd August 2021, 13:27   #38  |  Link
vcmohan
Registered User
 
Join Date: Jul 2003
Location: India
Posts: 890
As my laptop was and still down since last week, I did not see this comment. It looks like the problem is in floating point and integer conversion. I will rectify It as soon as I get either a new battery pack for my laptop or buy a new one(Expensive)
__________________
mohan
my plugins are now hosted here
vcmohan is offline   Reply With Quote
Old 29th August 2021, 00:19   #39  |  Link
sl1pkn07
Pajas Mentales...
 
Join Date: Dec 2004
Location: Spanishtán
Posts: 496
Hi seems the latyest source code fail build for me

Code:
In file included from vcm.cpp:79:
F2Quiver.cpp:203:10: fatal error: hammingCodeInsert.cpp: No such file or directory
  203 | #include "hammingCodeInsert.cpp"
      |          ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
greetings
__________________
[AUR] Vapoursynth Stuff
[AUR] Avisynth Stuff
sl1pkn07 is offline   Reply With Quote
Old 29th August 2021, 13:24   #40  |  Link
vcmohan
Registered User
 
Join Date: Jul 2003
Location: India
Posts: 890
[QUOTE=zorr;1948668]I'm testing vcm.F1QLimit and noticed some oddities.[?QUOTE}

At last I could get most of data into my new laptop. The documentation for these two filters (F1QClean and F1QLimit) are revised. Please check now. Thanks for pointing out the errors. regards.

@sl1pkn07: The missing file is inserted now.
__________________
mohan
my plugins are now hosted here
vcmohan is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 00:54.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.