Search found 258 matches
- Sat Nov 02, 2024 2:53 am
- Forum: Feature requests
- Topic: Closed captions 608 to 708 VANC
- Replies: 4
- Views: 421
Re: Closed captions 608 to 708 VANC
yeah... emcodem is right, unfortunately with open source tools the only thing we can do is preserve a subtitles track, like if you wanted to remux it in the end file but without changing container nor Teletext page. Unfortunately there's no way to convert it or indeed change the page. :( I know 'cau...
- Fri Nov 01, 2024 8:20 pm
- Forum: Bug reporting
- Topic: Status Monitor bug
- Replies: 2
- Views: 299
Re: Status Monitor bug
What the status monitor is reading are the tickets in processors/db/cache/monitor. This is because each "job" has a json file put there to which the relevant host is writing to and keeps it updated so that you can actually see the progress with the status being updated as the job goes thro...
- Wed Oct 30, 2024 5:11 pm
- Forum: Usage, tips and tricks
- Topic: Can't get avisynt workflow working
- Replies: 4
- Views: 282
Re: Can't get avisynt workflow working
Hi Zeego, I'm happy to see that you're using the best frameserver in the world. :D Now, the first part of the script is what FFAStrans is creating automatically with the indexing stuff, so I'm gonna ignore that and I'm gonna focus on the box you named "Antialiasing". I can see that you're ...
- Tue Oct 15, 2024 12:02 pm
- Forum: Usage, tips and tricks
- Topic: Webinterface
- Replies: 392
- Views: 389698
Re: Webinterface
Sometimes there's an error getting queued jobs ("Error getting queued jobs. If FFAStrans installation moved, please correct Path in Admin settings.)". Yep, that's something I noticed as well and reported privately to emcodem a few days ago, but I'm really glad that you could reproduce it ...
- Wed Oct 02, 2024 5:20 am
- Forum: Feature requests
- Topic: Couple requests for Web Interface
- Replies: 4
- Views: 1260
Re: Couple requests for Web Interface
Uuuuuh a new web interface release and this time it's reading straight from the DB folder? Am I dreaming?
Amazing, emcodem, as always.
Amazing, emcodem, as always.
- Tue Oct 01, 2024 9:22 am
- Forum: Usage, tips and tricks
- Topic: Farm vs Workflow specifics
- Replies: 8
- Views: 1319
Re: Farm vs Workflow specifics
it means that you need more machines in your farm or expand to cloud like @FranceBB does ;-) I think that what I do isn't applicable to like 99.9% of users, but... sure! I mean, you don't really have resource issues when you can spin up 640 EC2 in the blink of an eye on AWS ehehehehe Behold to the ...
- Tue Sep 24, 2024 7:36 am
- Forum: Bug reporting
- Topic: DVCPRO adds 1 frame to the file metadata
- Replies: 13
- Views: 7451
Re: DVCPRO adds 1 frame to the file metadata
Sure. As for the 2 frames in FadeIn(), I hope it's gonna be fixed in the AviSynth+ 3.7.4 release due by the end of the year.
- Mon Sep 23, 2024 5:21 pm
- Forum: Bug reporting
- Topic: DVCPRO adds 1 frame to the file metadata
- Replies: 13
- Views: 7451
Re: DVCPRO adds 1 frame to the file metadata
I can reproduce ColorBars(848, 480, pixel_type="YV12") trim(0, 100) This will give you a 101 frames clip. https://i.imgur.com/nFNTGJ5.png ColorBars(848, 480, pixel_type="YV12") trim(0, 100) FadeIn(1) This will give you a 103 frames clip (2 frames are added). https://i.imgur.com/M...
- Tue Aug 20, 2024 5:38 pm
- Forum: Bug reporting
- Topic: DVCPRO adds 1 frame to the file metadata
- Replies: 13
- Views: 7451
Re: DVCPRO adds 1 frame to the file metadata
Thanks, will check that! Let me know how it goes. :) In the meantime I did check it with an actual file and it worked. :D Also how exactly do you check the length with avspmod? Oh, that's pretty easy, the first thing I've done was indexing a file with LWLibav and after that I checked at the bottom ...
- Tue Aug 20, 2024 5:23 pm
- Forum: Feature requests
- Topic: BITC Features
- Replies: 4
- Views: 11241
Re: BITC Features
Yep, if you need something "basic" you can use either the Text() function or the Subtitle() function. For instance, you could do something like this: ShowSMPTE(m_clip, fps=%f_frame_rate%, offset="%s_start_tc%") Subtitle("%s_original_name%") m_clip=last return m_clip and...