sony xavcs 240fps transcode

Questions and answers on how to get the most out of FFAStrans
Post Reply
imleotw
Posts: 10
Joined: Tue Aug 25, 2015 11:16 am

sony xavcs 240fps transcode

Post by imleotw »

Hello Steipal,
I'm trying to transcode sony XAVCS 720p 240fps footage to xdcam50 1080i 59.94 mxf
and I want to play it back for a slow-motion effect,
so I use FPS conversion filter to try , but can not success,
does FFAStrams have any filter to transcode high speed camera
thanks ,



Regards,
Leo
admin
Site Admin
Posts: 1669
Joined: Sat Feb 08, 2014 10:39 pm

Re: sony xavcs 240fps transcode

Post by admin »

Hi,

Try replacing the "FPS Conversion"-filter with a "Custom AviSynth-script"-filter. Create a new preset with this content:
...
#
m_clip = AssumeFPS(m_clip, 50)
# The following MUST be the last line of your script
Return m_clip


-steipal
imleotw
Posts: 10
Joined: Tue Aug 25, 2015 11:16 am

Re: sony xavcs 240fps transcode

Post by imleotw »

Hi Steipal
slow motion is works,but have some issue as below

source footage duration is 60 sec,output duration also 60 sec,
but use player to compare source and output file ,the output file slow motion
just 1~20 sec,21~60 sec is gone.thanks.

Regards
Leo
admin
Site Admin
Posts: 1669
Joined: Sat Feb 08, 2014 10:39 pm

Re: sony xavcs 240fps transcode

Post by admin »

I'm sorry but I have mislead you. Correct settings should be:
...
#
m_clip = AssumeFPS(m_clip, 59.94)
# The following MUST be the last line of your script
Return m_clip


Anyway, the output file should be 4 times as long as the original with this setting. If it cuts before then there must be an error somewhere. Do you have any other source material to test with?

-steipal
imleotw
Posts: 10
Joined: Tue Aug 25, 2015 11:16 am

Re: sony xavcs 240fps transcode

Post by imleotw »

Hi Steipal,

It's works,thank you very much.

Regards,
Leo
Ghtais
Posts: 157
Joined: Thu Jan 19, 2017 11:06 am

Re: sony xavcs 240fps transcode

Post by Ghtais »

Hi

I'am trying to run the same workflow except that I have 100 fps XAVC files and I want to transcode to Dnxhd 1080p25 to play them in slow motion in AVID
My script looks like : m_clip = AssumeFPS(m_clip, 25)
It works (I have the slowmotion effect) but it produces clip with the same length than the original while it should be 4 times longuer.
any ideas to help ?
Thank you
admin
Site Admin
Posts: 1669
Joined: Sat Feb 08, 2014 10:39 pm

Re: sony xavcs 240fps transcode

Post by admin »

Hi Ghtais,

Try with m_clip = AssumeFPS(m_clip, 25, sync_audio=true) and see if that helps.

-steinar
Ghtais
Posts: 157
Joined: Thu Jan 19, 2017 11:06 am

Re: sony xavcs 240fps transcode

Post by Ghtais »

Hi Steinar

thank you for your advice, now it works !!
Bye
Post Reply