glowie wrote:1. using AviSynth so I can open those MKVs in Premier for me to cut out those selected scenes that I want. (feasible?)
Yes, it's feasible, but rather cumbersome, especially considering 2).
As for the syncing issues... it's related to the audio yes? So if I don't intend to include audio... is it ok? Or should I still use FFmpegSource?
The syncing issues are related to the audio, yes. Frame accuracy, however, is not - which is the reason I advise using FFmpegSource. FFmpegSource doesn't load audio or subtitles by default, just in case you were to ask. Unpack the .rar and stick the .dll file(s) in AviSynth's plugins folder.
http://forum.doom9.org/showthread.php?t=127037
Just be aware that there are two versions of FFmpegSource, 1.21 and the 2.00 beta - if you want to use 1.21, then FFmpegSource("video.mkv") will work fine in the script (obviously replacing video.mkv with the actual filename). If you want to use the beta, then you also need to fetch the wrapper function from either one of the last pages on the Doom9 announcement thread, or from the AMVapp beta thread's last page. Using that wrapper function, then you can use FFmpegSource2("video.mkv") instead of trying to figure out the proper syntax for it otherwise.
From the guide it advice against using 23.976 fps for our Premier project which was why I was asking on the AssumeFPS switch. Thus, if I were to keep the fps to it's original (23.976 fps ... mkv), I shouldn't have problems in my 1st step (AviSynth -> Premier -> output AVI) yes?
It may say not to use 23.976, but the recommendation in those cases is actually to use 24, with or without the audio resampling trickery* before- and after-the-fact so that the distro version can be 23.976. You can still do that with AssumeFPS, though.
*The trickery is question:
A) Take your WAV file, load it into BeSweet. Choose the 23.976->24 conversion profile, and tell it to convert. Keep the original WAV around - you'll need it later.
B) Use AssumeFPS(24) while cutting your footage. Edit the video in Premiere using 24fps (in both the project and export settings).
C) After exporting, use AssumeFPS(23.976) to adjust the exported video back down (you can choose to convert it to H.264 or XviD, etc. at this point), and then join it with the original WAV (or the MP3, AAC, Vorbis, or whatever else you've used the original WAV to encode since PCM is a waste of space for distribution versions).
My next question will be... when should I convert [insert suitable word here] the framerate to be NTSC standard (ie. 29.97)? Should it be right before 2nd step? or should I be making Premier export it as 29.97 at the end of 1st step?
If you're going to make the video 29.97, then do it before you cut any clips - in other words, while working with the original video file. If you use AssumeFPS, then the video will play back faster than it did (although you can slow it down during the editing phase).