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 > Avisynth Development
Register FAQ Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
Old 19th September 2011, 03:19   #81  |  Link
Chikuzen
typo lover
 
Chikuzen's Avatar
 
Join Date: May 2009
Posts: 595
update.

avs2pipemod-20110919.zip

*add new option 'trim'
__________________
my repositories
Chikuzen is offline   Reply With Quote
Old 20th December 2011, 17:45   #82  |  Link
SamKook
Registered User
 
Join Date: Mar 2011
Posts: 216
Do you still plan on releasing v0.0.4? I'd love to get a similar bump in speed I see with your alpha version benchmark since using this is the only way I found to prevent crashing with memory heavy filters and weird things happen when I use avs2yuv. Also, having everything all in one is pretty great.
SamKook is offline   Reply With Quote
Old 29th December 2011, 11:24   #83  |  Link
doobry
Totally Clueless
 
doobry's Avatar
 
Join Date: Nov 2010
Location: Edinburgh, UK
Posts: 31
Quote:
Originally Posted by SamKook View Post
Do you still plan on releasing v0.0.4? I'd love to get a similar bump in speed I see with your alpha version benchmark since using this is the only way I found to prevent crashing with memory heavy filters and weird things happen when I use avs2yuv. Also, having everything all in one is pretty great.
The source code is here, there is no tagged 0.0.4 release or binaries, but building it isn't hard

https://github.com/doobry/avs2pipe
doobry is offline   Reply With Quote
Old 30th December 2011, 19:42   #84  |  Link
Chikuzen
typo lover
 
Chikuzen's Avatar
 
Join Date: May 2009
Posts: 595
oh doobry! welcome back!
__________________
my repositories
Chikuzen is offline   Reply With Quote
Old 30th December 2011, 20:03   #85  |  Link
CarlEdman
Registered User
 
Join Date: Jan 2008
Posts: 185
Ditto to the Welcome Back, doobry.

But could you please make a tagged release with binaries of 0.04? Building binaries is something of a hassle for those without a Windows dev environment.
CarlEdman is offline   Reply With Quote
Old 30th December 2011, 20:32   #86  |  Link
Chikuzen
typo lover
 
Chikuzen's Avatar
 
Join Date: May 2009
Posts: 595
update

avs2pipemod-20111230.zip


*port video output processing from latest avs2pipe.
__________________
my repositories
Chikuzen is offline   Reply With Quote
Old 30th December 2011, 20:57   #87  |  Link
b66pak
Registered User
 
b66pak's Avatar
 
Join Date: Aug 2008
Location: The Land Of Dracula (Romania - EU)
Posts: 934
thanks a lot...
_
__________________
if you ask a question and somebody give you the correct answer don't forget to leave a "thank you" note...
Visit The Land Of Dracula (Romania - EU)!
b66pak is offline   Reply With Quote
Old 30th December 2011, 23:59   #88  |  Link
CarlEdman
Registered User
 
Join Date: Jan 2008
Posts: 185
Thanks!

CarlEdman is offline   Reply With Quote
Old 31st December 2011, 16:09   #89  |  Link
SamKook
Registered User
 
Join Date: Mar 2011
Posts: 216
Thanks doobry.

It's indeed very easy to compile; change the path to MinGW in the .bat, run it... and you're done.
It compiled so fast that I ran it twice since I was sure it had failed the first time.

And I got a 3.12% speedup in my first test so that's a good thing.

Edit: The second test when encoding them back to back in similar condition is less good though:
h264_10bit_a2p_0-0-3: 0:17:44.77
h264_10bit_a2p_0-0-4: 0:17:42.56
h264_10bit_a2pmod_0-0-3: 0:17:44.16
h264_10bit_a2pmod_0-0-4: 0:17:38.85

Last edited by SamKook; 31st December 2011 at 19:54.
SamKook is offline   Reply With Quote
Old 2nd January 2012, 22:27   #90  |  Link
Yellow_
Registered User
 
Join Date: Sep 2009
Posts: 378
hi

I'm struggling to migrate from avs2yuv to avs2pipemod. Any suggestion on corresponding avs2pipemod command line for this avs2yuv to imagemagick.

Quote:
avs2yuv.exe -raw "script.avs" -o - | convert -limit memory 500MiB -limit map 1GiB -size 1920x1088 -depth 16 -define quantum:format=floating-point -define quantum:scale=65536.0 -set colorspace RGB -colorspace RGB rgb:- "%06d_output.tif"
Cheers.
Yellow_ is offline   Reply With Quote
Old 3rd January 2012, 01:06   #91  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
"-depth 16"
Does avs2pipemod support the high bit hacks that avs2yuv uses in the first place?
sneaker_ger is offline   Reply With Quote
Old 3rd January 2012, 06:41   #92  |  Link
the_weirdo
Yes, I'm weird.
 
the_weirdo's Avatar
 
Join Date: May 2010
Location: Southeast Asia
Posts: 271
avs2pipemod supports raw output like avs2yuv too. I think here is the equivalent of Yellow_'s command line for avs2pipemod:
Quote:
avs2pipemod.exe -rawvideo "script.avs" | convert -limit memory 500MiB -limit map 1GiB -size 1920x1088 -depth 16 -define quantum:format=floating-point -define quantum:scale=65536.0 -set colorspace RGB -colorspace RGB rgb:- "%06d_output.tif"
the_weirdo is offline   Reply With Quote
Old 3rd January 2012, 07:34   #93  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
Quote:
Originally Posted by the_weirdo View Post
avs2pipemod supports raw output like avs2yuv too.
You seem to be correct. I didn't got it working in my last tests, but it seems I just picked the wrong mode (stacked instead of interleaved) and wrongly assumed the piping tool would convert the high bitdepth into a different format.
sneaker_ger is offline   Reply With Quote
Old 3rd January 2012, 16:29   #94  |  Link
Yellow_
Registered User
 
Join Date: Sep 2009
Posts: 378
hey, thanks that's done the trick. :-)
Yellow_ is offline   Reply With Quote
Old 5th January 2012, 04:12   #95  |  Link
SamKook
Registered User
 
Join Date: Mar 2011
Posts: 216
I was wondering, would it be possible to pipe the audio and video at the same time? To encode in XviD and MP3 with virtualdub without having to mux them afterwards for example.
SamKook is offline   Reply With Quote
Old 5th January 2012, 13:39   #96  |  Link
Chikuzen
typo lover
 
Chikuzen's Avatar
 
Join Date: May 2009
Posts: 595
update

avs2pipemod-0.1.1.7z(removed)

I rewrote almost code.

* avs2pipemod detects avisynth version, and changes the actions.
 (thus, avs2pipe26mod was removed.)

* avisynth.lib is unnecessary any longer.
 for win64 builds can also be compiled now.
__________________
my repositories

Last edited by Chikuzen; 28th January 2012 at 15:18.
Chikuzen is offline   Reply With Quote
Old 5th January 2012, 18:24   #97  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
Thanks.
I noticed a "avs2pipe26mod.exe" is no longer included. Is this obsolete now?
sneaker_ger is offline   Reply With Quote
Old 5th January 2012, 18:29   #98  |  Link
the_weirdo
Yes, I'm weird.
 
the_weirdo's Avatar
 
Join Date: May 2010
Location: Southeast Asia
Posts: 271
I think the answer is "Yes".

Quote:
Originally Posted by Chikuzen View Post
* avs2pipemod detect avisynth version and change actions.
(thus, avs2pipemod26 was removed.)
the_weirdo is offline   Reply With Quote
Old 5th January 2012, 19:15   #99  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
I'm blind, thx.
sneaker_ger is offline   Reply With Quote
Old 6th January 2012, 11:56   #100  |  Link
Chikuzen
typo lover
 
Chikuzen's Avatar
 
Join Date: May 2009
Posts: 595
Quote:
Originally Posted by SamKook View Post
I was wondering, would it be possible to pipe the audio and video at the same time? To encode in XviD and MP3 with virtualdub without having to mux them afterwards for example.
Your request means "I want a realtime streaming encoder only for uncompressed format."

Is it a very difficult subject ?

For present me, yes, it is very difficult...
Although I began to study the C language and one year has passed, it may be able to do, if I will try hard for three or more years.
__________________
my repositories

Last edited by Chikuzen; 30th January 2012 at 12:09.
Chikuzen is offline   Reply With Quote
Reply

Tags
avs2pipe


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 01:21.


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