Hi,
Thanks again for your software, it is really good!!!
I would like to have an option to burn in text instead of just the logo. My scnenario would be that I can distribute video files with the recipients name burnt into the video.
I create a folder within the watch architecture with the recipients name
I burn in the name of the drop folder using %original_path~1% to catch the name to be burnt in.
I deliver in an output folder with the recipient's name or just upload to ftp or similar.
This would help me a lot while distributing a large amount of files
And by the way, any news about loudness
Regards
Robert
Burn in text instead of logo
Re: Burn in text instead of logo
Hi Robert and thanks
What you're really asking for is a basic character generator. Although this might be a good idea, it requires a lot of coding and will probably never have top priority. However, because FFAStrans can trigger any dos command through the "Command executor"-node, one can easily implement ImageMagick as a part of the workflow. ImageMagick lets you dynamically create text, fancy backgrounds, etc. at any transparent frame size and save it as a png-file. All in one dos command. I urge you to check i out: http://www.imagemagick.org/script/index.php
It's a bit of a learning curve but once you master it you can create almost any kind of graphics dynamically by utilizing FFSAtrans variables features, and a dose of creativity
I have not had the time to look at loudness yet. Sorry
-steinar
What you're really asking for is a basic character generator. Although this might be a good idea, it requires a lot of coding and will probably never have top priority. However, because FFAStrans can trigger any dos command through the "Command executor"-node, one can easily implement ImageMagick as a part of the workflow. ImageMagick lets you dynamically create text, fancy backgrounds, etc. at any transparent frame size and save it as a png-file. All in one dos command. I urge you to check i out: http://www.imagemagick.org/script/index.php
It's a bit of a learning curve but once you master it you can create almost any kind of graphics dynamically by utilizing FFSAtrans variables features, and a dose of creativity
I have not had the time to look at loudness yet. Sorry
-steinar
-
- Posts: 12
- Joined: Fri Aug 19, 2016 4:37 am
Re: Burn in text instead of logo
There is also a 'drawtext' filter in FFMpeg I believe... It might be easier to implement? http://stackoverflow.com/questions/1762 ... deo-ffmpeg
Re: Burn in text instead of logo
No, it would not be easier, just different. The challenge is with the user interface, which would be quite complex if you want a decent set of the functions of a character generator. I'm not saying it wont happen but at the moment the priority is be quite low.
-steinar
-steinar
Re: Burn in text instead of logo
Thanks a lot for both recommendations! Will probably try both methods and see what the different in speed would be.
Robert
Robert
Re: Burn in text instead of logo
If speed is you only concern then ffmpeg-filters is the way to go. But you will not be able to use any of the built in encoders except for the "Custom FFmpeg"-encoder.
-steinar
-steinar
Re: Burn in text instead of logo
Is it possible to use user variables in Custom AviSynth Script filter? If yes, then following should work:
m_clip = m_clip.Subtitle("%original_path~1%", align = 5, lsp=1)
Return m_clip
m_clip = m_clip.Subtitle("%original_path~1%", align = 5, lsp=1)
Return m_clip
Last edited by kibi on Mon Feb 26, 2018 3:20 pm, edited 1 time in total.
Alexander Sorkin
Re: Burn in text instead of logo
Yes, variables can be used all places where you have the "arrow head"-button.
-steinar
-steinar
Re: Burn in text instead of logo
This is great, works exactly as I want. Thanks!!!kibi wrote:Is it possible to use user variables in Custom AviSynth Script filter? If yes, then following should work:
m_clip = m_clip.Subtitle("%original_path~1%", align = 5, lsp=1)
Return m_clip