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

Reply
 
Thread Tools Search this Thread Display Modes
Old 21st December 2013, 05:42   #1  |  Link
Youka
Registered User
 
Youka's Avatar
 
Join Date: Mar 2011
Location: Germany
Posts: 64
SSBRenderer

SSBRenderer is a filter for multiple frameservers to render new subtitle format SSB on frames.
SSB serves as alternative to ASS (Advanced Substation Alpha) for more powerful typesetting. This renderer is the first implementation of this format.

Download (Sourceforge)
Source code (Github)
Demos: 1 2 3 4 (YouTube)

Last edited by Youka; 7th February 2014 at 06:37.
Youka is offline   Reply With Quote
Old 21st December 2013, 19:14   #2  |  Link
Youka
Registered User
 
Youka's Avatar
 
Join Date: Mar 2011
Location: Germany
Posts: 64
Beta is out.
Please report found bugs. Feedback would be nice.
Youka is offline   Reply With Quote
Old 28th December 2013, 21:07   #3  |  Link
pbristow
Registered User
 
pbristow's Avatar
 
Join Date: Jun 2009
Location: UK
Posts: 263
Quote:
Originally Posted by Youka View Post
Beta is out.
Please report found bugs. Feedback would be nice.
What is it? What does it do?

pbristow is offline   Reply With Quote
Old 29th December 2013, 00:59   #4  |  Link
TheFluff
Excessively jovial fellow
 
Join Date: Jun 2004
Location: rude
Posts: 1,100
It's a subtitle renderer. Or, rather, a more accurate description would be "a programmable text/graphics effects renderer".
TheFluff is offline   Reply With Quote
Old 29th December 2013, 01:35   #5  |  Link
pbristow
Registered User
 
pbristow's Avatar
 
Join Date: Jun 2009
Location: UK
Posts: 263
Well, there you go. Even if I'd known what it was, I *still* wouldn't have been interested enough to download anything you (Youka) linked to.

...But maybe other people might have?


*GENERAL TIP*: If you want to generate some interest in - let alone some feedback from - what you're working on, then you have to do a bit more than just plonk a few links down and say "Hey folks, here's my new stuff! Tell me what you think!".

People have other things going on in their lives, y'know?


Good luck in your future endeavours. [SALUTE]
pbristow is offline   Reply With Quote
Old 29th December 2013, 06:24   #6  |  Link
Youka
Registered User
 
Youka's Avatar
 
Join Date: Mar 2011
Location: Germany
Posts: 64
It's currently in beta stage and i'm more interested in development than usage & description.
With the next release comes a DirectShow and Aegisub interface, so editing SSB in a subtitle editor and playing it softsub makes this renderer far more useful -> then i will make more demos and documentations.
Youka is offline   Reply With Quote
Old 29th December 2013, 13:08   #7  |  Link
BBA163
Registered User
 
Join Date: Feb 2013
Location: China
Posts: 13
It's powerful tools to make subtitles effects
Hoping to make a function to build kalaoke,likes .ass file in aegisub
BBA163 is offline   Reply With Quote
Old 2nd January 2014, 19:21   #8  |  Link
Youka
Registered User
 
Youka's Avatar
 
Join Date: Mar 2011
Location: Germany
Posts: 64
New version is available.
I shouldn't be so lazy to write texts, but added 2 more demos in first post.
Youka is offline   Reply With Quote
Old 22nd January 2014, 09:27   #9  |  Link
Youka
Registered User
 
Youka's Avatar
 
Join Date: Mar 2011
Location: Germany
Posts: 64
Currently i'm on porting to Unix and thinking about Vapoursynth interface implementation.

Suggestions for format improvements can be posted here.

Last edited by Youka; 5th February 2014 at 09:24.
Youka is offline   Reply With Quote
Old 5th February 2014, 09:23   #10  |  Link
Youka
Registered User
 
Youka's Avatar
 
Join Date: Mar 2011
Location: Germany
Posts: 64
Released SSBRenderer v0.0.2 with some important bug fixes and blur improvements:
changelog
files

Additionally ssb_xport replaces ssb_export as Aegisub macro for SSB exporting and adds importing.

For building on unix, follow these simple instructions (in the SSBRenderer directory):
Code:
sudo apt-get install libmuparser-dev libcairo-dev libpango1.0-dev
make
sudo make install
Example application
Pics: 1 2
Youka is offline   Reply With Quote
Old 12th February 2014, 20:26   #11  |  Link
BBA163
Registered User
 
Join Date: Feb 2013
Location: China
Posts: 13
I don't know waht's mean is "fade-out" in Animation
Is the end alpha or something, and what's the range of this?Or is same with fade x,x?
BBA163 is offline   Reply With Quote
Old 12th February 2014, 22:49   #12  |  Link
Youka
Registered User
 
Youka's Avatar
 
Join Date: Mar 2011
Location: Germany
Posts: 64
fade in SSB is the same as \fad in ASS. fade-out just sets the second value of fade, so the duration before the line end to fade out.
Using fade in an animation is an interpolation of the fade value like with any other style tag.

Code:
{fade-out=1000;animate=-1000,0,(fade-out=0)}...
In this example, the animation negates the outfade.

Last edited by Youka; 12th February 2014 at 23:01.
Youka is offline   Reply With Quote
Old 13th February 2014, 06:46   #13  |  Link
BBA163
Registered User
 
Join Date: Feb 2013
Location: China
Posts: 13
Why not make a tag likes \fade in ass?
It's can setting normal alpha and so on
BBA163 is offline   Reply With Quote
Old 13th February 2014, 12:39   #14  |  Link
Youka
Registered User
 
Youka's Avatar
 
Join Date: Mar 2011
Location: Germany
Posts: 64
\fade was a rarely used tag in ASS and required mostly more values than needed. In SSB, an animation of alpha with a math formula for progress control can be used for effects like blinking.
Code:
{animate=0.5*(sin(_pi*t*20)+1),(alpha=00;line-alpha=00)}...
Youka is offline   Reply With Quote
Old 13th February 2014, 15:29   #15  |  Link
BBA163
Registered User
 
Join Date: Feb 2013
Location: China
Posts: 13
A nice code with loop,even I understand why use pi*t*20 and plus 1
BBA163 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 05:04.


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