Serato Video General Discussion
IVTC'ing for the Advanced 2012 Edition.
Talk about Serato Video and Video-SL.
IVTC'ing for the Advanced 2012 Edition.
djpuma_gemini
6:42 PM - 3 January, 2012
Just as the title states.
Many of us now have become IVTC'ing gurus in regards to removing that god forsaken 5th frame thanks to Brett B's tutorial and the help of others.
I'm overall happy with my results, but I think with 2012 we need to figure out what's best and share some tips and secrets.
Obviously some people don't want to share their tips and I can sort of understand where they are coming from especially if they work for pool, sites etc.
Feel free to share your tips and ask questions here, not how to ivtc, See Brett B's tutorial for that.
I mean colorspace questions, different ways to decimate or tdeint vs tfm vs whatever.
I myself have become annoyed with sources that end up looking jagged or whatever. I can't describe it. I have to post a screenshot, but I don't know if it's the source that is that way or if it's the way I'm ivtc'ing the video.
Another one is color space.
I've been messing with that and I love how I can have an uncompressed file now at about 800MB vs 5GB.
I still need to get a handle on takeing a vob source, going to avi and then to mp4.
I'm not sure of the correct color space to use when going from vob to unc avi. Is it YV12, YUY2, or RGB?
Many of us now have become IVTC'ing gurus in regards to removing that god forsaken 5th frame thanks to Brett B's tutorial and the help of others.
I'm overall happy with my results, but I think with 2012 we need to figure out what's best and share some tips and secrets.
Obviously some people don't want to share their tips and I can sort of understand where they are coming from especially if they work for pool, sites etc.
Feel free to share your tips and ask questions here, not how to ivtc, See Brett B's tutorial for that.
I mean colorspace questions, different ways to decimate or tdeint vs tfm vs whatever.
I myself have become annoyed with sources that end up looking jagged or whatever. I can't describe it. I have to post a screenshot, but I don't know if it's the source that is that way or if it's the way I'm ivtc'ing the video.
Another one is color space.
I've been messing with that and I love how I can have an uncompressed file now at about 800MB vs 5GB.
I still need to get a handle on takeing a vob source, going to avi and then to mp4.
I'm not sure of the correct color space to use when going from vob to unc avi. Is it YV12, YUY2, or RGB?
djpuma_gemini
8:27 PM - 3 January, 2012
I got the overall workflow down. I'm just trying to tighten everything up.
Culprit
11:54 PM - 3 January, 2012
my only other tip is to use x264 and no cabac. There is a quality boost at performance hit for using cabac, but all my files that I have encoded with cabac off work perfect on dual core computers running vsl, no crashes whatsoever and the quality looks the same. 3 frames and your good to go.
Culprit
11:55 PM - 3 January, 2012
and when I mean dual core computers, i mean any computer being mac or pc using ffdshow or quicktime.
djpuma_gemini
12:04 AM - 4 January, 2012
I love Cabac, but that's pretty much from unc to mp4. I'm trying to get the best quality from interlaced vob to ivtc'd avi
djpuma_gemini
4:26 PM - 4 January, 2012
Glad to see so many care.
Nik, I know you know about this, you and swift were the ones who started in on the whole "pulldown removal"
Nik, I know you know about this, you and swift were the ones who started in on the whole "pulldown removal"
Rebelguy
5:12 PM - 4 January, 2012
I care but you guys just sound so nerdy with all the terminology...haha.
I am watching this thread intently for secret tips.
I am watching this thread intently for secret tips.
tomatoslice
5:46 PM - 4 January, 2012
you guys get respect for improving what you do.
making the videos better for the rest of us is very appreciated.
the time and work you put into this is amazing.
your patience is far beyond what mine is.
nerds!!
making the videos better for the rest of us is very appreciated.
the time and work you put into this is amazing.
your patience is far beyond what mine is.
nerds!!
djpuma_gemini
5:58 PM - 4 January, 2012
It's not patience, I think it's persistence.
I'll keep doing it until I get it right, but then I quickly get bored and move on to the next thing.
I'll keep doing it until I get it right, but then I quickly get bored and move on to the next thing.
Dj Nyce
8:34 PM - 4 January, 2012
automate DGIndex with a batch script or powershell
DGIndex -wait -argumentlist -i filename -o filename -fo 2 -om 2 -exit -hide
automate the creation of your avisynth scripts with a batch script or powershell
Create an avs template, put a place holder in for the filename. if you really want to get fancy you can parse the the DGIndex log to determine if the file is standard or widescreen.
if using MeGUI to encode, automate populating the queue with a batch script or powershell
This is tricky and requires a lot of steps. MeGUI stores queue info in several different files. Although it can be done it a batch script or powershell it was easiest for me to do in Automate (by Network Automation).
when going directly from DVD or VOB to MP4 your avisynth script should perform the following tasks (in this order)
DeInterlace *if needed
IVTC *if needed
crop *if desired or needed - usually to remove black space or artifacts from video edges
resize *resize to 640x480
crop *if the video is widescreen; (0,60,-0,-60) will result in a 640x360 resolution
ConvertToYV12 *this is the colourspace of the MPEG standard
when going from DVD or VOB to your NLE for editing and then to MP4 you need two avisynth scripts
1. Pre-NLE
DeInterlace *if needed
IVTC *if needed
crop *if desired or needed - usually to remove black space or artifacts from video edges
resize *resize to 640x480
crop *if the video is widescreen; (0,60,-0,-60) will result in a 640x360 resolution
ConvertToRGB *this is the colourspace of most NLE's (Premiere Pro, Final Cut Pro, Avid, Vegas, Final Cut Pro X er i mean iMovie Pro X, etc)
2. Post-NLE
ConvertToYV12 *this is the colourspace of the MPEG standard
***Post-NLE you could also export to uncompressed avi and encode to MP4 in your encoder of choice***
Colorspace Info
Digital Video can be stored in either RGB or YUV. RGB stores a color value for Red, Green and Blue per pixel which can be added together to create any color. YUV stores color in Luma (Brightness) aka Y and Chroma (color info) aka U/Cr and V/Cb.
YUV is sampled less per pixel than RGB because the accuracy of the chroma is less noticable. Because of this there are several subsampling variations. The most common two are YUY2 and YV12.
YUY2 samples the luma once every pixel but only samples the chroma every horizontal pair of pixels. YV12 samples the luma once every pixel but only samples the chroma every 2x2 pixel blocks.
MPEG1, 2 and 4 (x264, XviD, DivX, etc) - All use 4:2:0 YUV (YV12) color.
DVDs - Uses MPEG-2 with 4:2:0 YUV (YV12) color.
DV - Uses 4:1:1 YUV with the same number of chroma samples as MPEG-2 but in a different order.
MJPEG - Uses all kinds of YUV sampling, but 4:2:0 YUV (YV12) is the most common.
DGIndex -wait -argumentlist -i filename -o filename -fo 2 -om 2 -exit -hide
automate the creation of your avisynth scripts with a batch script or powershell
Create an avs template, put a place holder in for the filename. if you really want to get fancy you can parse the the DGIndex log to determine if the file is standard or widescreen.
if using MeGUI to encode, automate populating the queue with a batch script or powershell
This is tricky and requires a lot of steps. MeGUI stores queue info in several different files. Although it can be done it a batch script or powershell it was easiest for me to do in Automate (by Network Automation).
when going directly from DVD or VOB to MP4 your avisynth script should perform the following tasks (in this order)
DeInterlace *if needed
IVTC *if needed
crop *if desired or needed - usually to remove black space or artifacts from video edges
resize *resize to 640x480
crop *if the video is widescreen; (0,60,-0,-60) will result in a 640x360 resolution
ConvertToYV12 *this is the colourspace of the MPEG standard
when going from DVD or VOB to your NLE for editing and then to MP4 you need two avisynth scripts
1. Pre-NLE
DeInterlace *if needed
IVTC *if needed
crop *if desired or needed - usually to remove black space or artifacts from video edges
resize *resize to 640x480
crop *if the video is widescreen; (0,60,-0,-60) will result in a 640x360 resolution
ConvertToRGB *this is the colourspace of most NLE's (Premiere Pro, Final Cut Pro, Avid, Vegas, Final Cut Pro X er i mean iMovie Pro X, etc)
2. Post-NLE
ConvertToYV12 *this is the colourspace of the MPEG standard
***Post-NLE you could also export to uncompressed avi and encode to MP4 in your encoder of choice***
Colorspace Info
Digital Video can be stored in either RGB or YUV. RGB stores a color value for Red, Green and Blue per pixel which can be added together to create any color. YUV stores color in Luma (Brightness) aka Y and Chroma (color info) aka U/Cr and V/Cb.
YUV is sampled less per pixel than RGB because the accuracy of the chroma is less noticable. Because of this there are several subsampling variations. The most common two are YUY2 and YV12.
YUY2 samples the luma once every pixel but only samples the chroma every horizontal pair of pixels. YV12 samples the luma once every pixel but only samples the chroma every 2x2 pixel blocks.
MPEG1, 2 and 4 (x264, XviD, DivX, etc) - All use 4:2:0 YUV (YV12) color.
DVDs - Uses MPEG-2 with 4:2:0 YUV (YV12) color.
DV - Uses 4:1:1 YUV with the same number of chroma samples as MPEG-2 but in a different order.
MJPEG - Uses all kinds of YUV sampling, but 4:2:0 YUV (YV12) is the most common.
djpuma_gemini
8:37 PM - 4 January, 2012
mofucking Nyce with the info.
So can't I go from vob to YV12 into sony vegas.
I did this on the weekend and vegas will accept yv12 or RGB
So can't I go from vob to YV12 into sony vegas.
I did this on the weekend and vegas will accept yv12 or RGB
phatbob
9:05 PM - 4 January, 2012
So this is where the l33t Video editors hang out?
I'm watching lots and understanding little.
I'm watching lots and understanding little.
djpuma_gemini
6:02 PM - 5 January, 2012
nope.
sorenson does it, but it's very hit or miss. I don't trust it.
sorenson does it, but it's very hit or miss. I don't trust it.
djpuma_gemini
6:03 PM - 5 January, 2012
all I want is to be able to have those 23.976 frames be perfect frames, no interlacing, artifacts etc.
Niro
9:01 PM - 5 January, 2012
Culprit can you explain this: I would think most new computers would handle Cabac as easy as Cavlc and you get a higher quality output.
Thanks
Quote:
my only other tip is to use x264 and no cabac. There is a quality boost at performance hit for using cabac, but all my files that I have encoded with cabac off work perfect on dual core computers running vsl, no crashes whatsoever and the quality looks the same. 3 frames and your good to go.Culprit can you explain this: I would think most new computers would handle Cabac as easy as Cavlc and you get a higher quality output.
Thanks
DJ Soup
9:02 PM - 5 January, 2012
+1
I'm glad you guys are sharing the knowledge
Quote:
all I want is to be able to have those 23.976 frames be perfect frames, no interlacing, artifacts etc.+1
I'm glad you guys are sharing the knowledge
djpuma_gemini
9:12 PM - 5 January, 2012
Culprit can you explain this: I would think most new computers would handle Cabac as easy as Cavlc and you get a higher quality output.
Thanks
Yeah I'd like to know this too.
I started iwth Cavlc at baseline, then moved to Cabac at high and now I'm at Cabac Main.
Quote:
Quote:
my only other tip is to use x264 and no cabac. There is a quality boost at performance hit for using cabac, but all my files that I have encoded with cabac off work perfect on dual core computers running vsl, no crashes whatsoever and the quality looks the same. 3 frames and your good to go.Culprit can you explain this: I would think most new computers would handle Cabac as easy as Cavlc and you get a higher quality output.
Thanks
Yeah I'd like to know this too.
I started iwth Cavlc at baseline, then moved to Cabac at high and now I'm at Cabac Main.
djpuma_gemini
9:13 PM - 5 January, 2012
And not saying cabac at high, main or baseline. That's for the main concept stuff.
Culprit
1:02 AM - 6 January, 2012
Niro, newer computers yes, but I was specifically pointing out Dual Core Computers, or older pc's & macs in compatibility and stability. If you encode a dvd -> with cabac on most pc's will stutter or crash, with it off I get flawless performance.
Newer computers now and days you get a quality boost with it on. All personal preference, but I tried many encodes and did not notice MUCH of a difference.. but there still is a difference
Quote:
dual core computers running vsl, no crashes whatsoever and the quality looks the same. 3 frames and your good to go.Niro, newer computers yes, but I was specifically pointing out Dual Core Computers, or older pc's & macs in compatibility and stability. If you encode a dvd -> with cabac on most pc's will stutter or crash, with it off I get flawless performance.
Newer computers now and days you get a quality boost with it on. All personal preference, but I tried many encodes and did not notice MUCH of a difference.. but there still is a difference
Culprit
1:04 AM - 6 January, 2012
damnnittt.. i meant to say most dual core pcs.. but I am specifically pointing that out. Newer computers (especially with direct x 11 capable) you should not have an issue.
Culprit
1:11 AM - 6 January, 2012
The ivtc'ing is done before the editing/encoding so that really is not an issue you know.
djpuma_gemini
1:13 AM - 6 January, 2012
NO I know that, but this thread is about advanced IVTC'ing
Got any tips for decimating, de-interlacing, decombing, colorspace etc?
Got any tips for decimating, de-interlacing, decombing, colorspace etc?
Culprit
1:32 AM - 6 January, 2012
Got any tips for decimating, de-interlacing, decombing, colorspace etc?
Nah whats been posted above seems to be the standard workflow.
Quote:
NO I know that, but this thread is about advanced IVTC'ingGot any tips for decimating, de-interlacing, decombing, colorspace etc?
Nah whats been posted above seems to be the standard workflow.
djpuma_gemini
1:34 AM - 6 January, 2012
there has to be different ways, some people might use tdeint or tfm, decimate vs tdecimate etc.
DJMark
2:41 AM - 6 January, 2012
I've used Episode Encoder (Mac) for IVTC, and it usually seems to work quite well. Assuming the material can actually be IVTC'ed at all, of course (there's a lot of older stuff that cannot).
At scene changes you'll sometimes get some interlaced frames showing up (stuff that was shot on film, but edited on video). A bit of manual editing takes care of that.
At scene changes you'll sometimes get some interlaced frames showing up (stuff that was shot on film, but edited on video). A bit of manual editing takes care of that.
Dj Nyce
9:54 AM - 6 January, 2012
Debuging AVISynth Scripts
Firstly, use AVSP. It's like Visual Studio for avs files. It has intellisense for built-in functions and user-defined functions.
avisynth.org
To add your your custom user-defined functions (avsi): Edit->AviSynth Function->Show Function Definition or Ctrl+D. Close the edit function info window. Click 'Import from Files', browse for AVSI and check all the functions you want to import. Now your custom functions are included in the AVSP intellisense. *Make sure 'Include user functions in autocompletion lists' is checked.
Secondly, throw a SubTitle line in your script to display the value of a variable if you are getting errors.
Also if you would like to see the video information, use the Info() function.
Decomb
Alot of external functions for this process. I use the Decomb package which is a combination of Telecide, Field Deinterlace, Decimate and IsCombed. For DVD to MP4 the only function needed is Decimate, but for other material Telecide and Field Deinterlace can be used when appropriate.
Deinterlacing
The built-in function, BOB, is ok but it uses Bicubic Resizing. The most popular external functions are TDeint and YADIF. I always use TDeint.
Firstly, use AVSP. It's like Visual Studio for avs files. It has intellisense for built-in functions and user-defined functions.
avisynth.org
To add your your custom user-defined functions (avsi): Edit->AviSynth Function->Show Function Definition or Ctrl+D. Close the edit function info window. Click 'Import from Files', browse for AVSI and check all the functions you want to import. Now your custom functions are included in the AVSP intellisense. *Make sure 'Include user functions in autocompletion lists' is checked.
Secondly, throw a SubTitle line in your script to display the value of a variable if you are getting errors.
Also if you would like to see the video information, use the Info() function.
Decomb
Alot of external functions for this process. I use the Decomb package which is a combination of Telecide, Field Deinterlace, Decimate and IsCombed. For DVD to MP4 the only function needed is Decimate, but for other material Telecide and Field Deinterlace can be used when appropriate.
Deinterlacing
The built-in function, BOB, is ok but it uses Bicubic Resizing. The most popular external functions are TDeint and YADIF. I always use TDeint.
djpuma_gemini
5:07 AM - 9 November, 2012
When rendering to mp4
STOP USING BASELINE for the AVC Profile
Use Main,
Use MAIN,
Did I mention use main,
Also use CABAC, computers can handle this now.
AVC = Main
Cabac
Ref frames = 3
Next person I see using baseline on their edits is getting put on blast.
Thanks
STOP USING BASELINE for the AVC Profile
Use Main,
Use MAIN,
Did I mention use main,
Also use CABAC, computers can handle this now.
AVC = Main
Cabac
Ref frames = 3
Next person I see using baseline on their edits is getting put on blast.
Thanks
Culprit
7:03 AM - 9 November, 2012
Here's my sample settings, they been pretty solid on every machine (pc and mac) that i've put to the test, but i don't do much of any edits anymore
General
Complete name : E:\Crates\1990\Urban\E40 ft Nate Dogg - Nah Nah (Intro Dirty) - Widescreen [LALOUD].mp4
Format : MPEG-4
Format profile : Base Media
Codec ID : isom
File size : 84.4 MiB
Duration : 3mn 32s
Overall bit rate : 3 325 Kbps
Movie name : Nah Nah (Intro Dirty)
Album : Loyalty and Betrayal
Album/Performer : E40 ft Nate Dogg
Part/Position : 0
Part/Total : 0
Performer : E40 ft Nate Dogg
Composer : DJ Culprit
Genre : Urban
Recorded date : 1999
Encoded date : UTC 2011-03-31 08:29:44
Tagged date : UTC 2011-03-31 08:29:44
Writing application : Culprit Encode Script 20110223
BPM : 100
Copyright : Jive Records
Cover : Yes
Comment : 4A
initialkey : 4A
catg : 90's Urban
Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : Main@L3.0
Format settings, CABAC : No
Format settings, ReFrames : 3 frames
Format settings, GOP : M=2, N=21
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 3mn 32s
Bit rate mode : Variable
Bit rate : 3 000 Kbps
Maximum bit rate : 5 512 Kbps
Width : 640 pixels
Height : 360 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 23.976 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.543
Stream size : 76.2 MiB (90%)
Title : Nah Nah (Intro Dirty)
Writing library : x264 core 114 r1913 5fd3dce
Encoding settings : cabac=0 / ref=3 / deblock=1:0:0 / analyse=0x1:0x111 / me=umh / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=0 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=6 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / constrained_intra=0 / bframes=3 / b_pyramid=0 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=24 / keyint_min=2 / scenecut=40 / intra_refresh=0 / rc_lookahead=24 / rc=2pass / mbtree=1 / bitrate=3000 / ratetol=1.0 / qcomp=0.60 / qpmin=0 / qpmax=69 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / ip_ratio=1.40 / aq=1:1.00
Language : English
Encoded date : UTC 2011-03-31 08:29:44
Tagged date : UTC 2011-03-31 08:29:45
Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 3mn 32s
Bit rate mode : Variable
Bit rate : 319 Kbps
Maximum bit rate : 343 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 8.10 MiB (10%)
Title : Nah Nah (Intro Dirty)
Language : English
Encoded date : UTC 2011-03-31 08:29:45
Tagged date : UTC 2011-03-31 08:29:45
General
Complete name : E:\Crates\1990\Urban\E40 ft Nate Dogg - Nah Nah (Intro Dirty) - Widescreen [LALOUD].mp4
Format : MPEG-4
Format profile : Base Media
Codec ID : isom
File size : 84.4 MiB
Duration : 3mn 32s
Overall bit rate : 3 325 Kbps
Movie name : Nah Nah (Intro Dirty)
Album : Loyalty and Betrayal
Album/Performer : E40 ft Nate Dogg
Part/Position : 0
Part/Total : 0
Performer : E40 ft Nate Dogg
Composer : DJ Culprit
Genre : Urban
Recorded date : 1999
Encoded date : UTC 2011-03-31 08:29:44
Tagged date : UTC 2011-03-31 08:29:44
Writing application : Culprit Encode Script 20110223
BPM : 100
Copyright : Jive Records
Cover : Yes
Comment : 4A
initialkey : 4A
catg : 90's Urban
Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : Main@L3.0
Format settings, CABAC : No
Format settings, ReFrames : 3 frames
Format settings, GOP : M=2, N=21
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 3mn 32s
Bit rate mode : Variable
Bit rate : 3 000 Kbps
Maximum bit rate : 5 512 Kbps
Width : 640 pixels
Height : 360 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 23.976 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.543
Stream size : 76.2 MiB (90%)
Title : Nah Nah (Intro Dirty)
Writing library : x264 core 114 r1913 5fd3dce
Encoding settings : cabac=0 / ref=3 / deblock=1:0:0 / analyse=0x1:0x111 / me=umh / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=0 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=6 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / constrained_intra=0 / bframes=3 / b_pyramid=0 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=24 / keyint_min=2 / scenecut=40 / intra_refresh=0 / rc_lookahead=24 / rc=2pass / mbtree=1 / bitrate=3000 / ratetol=1.0 / qcomp=0.60 / qpmin=0 / qpmax=69 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / ip_ratio=1.40 / aq=1:1.00
Language : English
Encoded date : UTC 2011-03-31 08:29:44
Tagged date : UTC 2011-03-31 08:29:45
Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 3mn 32s
Bit rate mode : Variable
Bit rate : 319 Kbps
Maximum bit rate : 343 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 8.10 MiB (10%)
Title : Nah Nah (Intro Dirty)
Language : English
Encoded date : UTC 2011-03-31 08:29:45
Tagged date : UTC 2011-03-31 08:29:45
djpuma_gemini
3:59 PM - 9 November, 2012
At culprit. I remember you saying no cabac a year or two ago, but why not now.
I've seen most people use it and most pools.
I've seen most people use it and most pools.
Culprit
10:09 PM - 9 November, 2012
lmao i dont get it dub!
Yes CABAC causes less stress on the CPU, and makes all my videos for the PC work pretty flawless (even for older dual core pc's which is a plus), even though I have my mbp. I stick with it because I really was upset when I got my alienware computer so long ago and had to learn the hard way.
Yes CABAC causes less stress on the CPU, and makes all my videos for the PC work pretty flawless (even for older dual core pc's which is a plus), even though I have my mbp. I stick with it because I really was upset when I got my alienware computer so long ago and had to learn the hard way.
Culprit
10:11 PM - 9 November, 2012
fuck man, just repeating myself a zillion times in the same damn thread.. ignore plz and happy friday
Joshua Carl
5:20 PM - 14 July, 2015
Years later, I still really can't find a way to ivtc on a mac that works as good as the OG PC way.
They claim the pull down in after effects is made for it, but it gets mixed reviews
They claim the pull down in after effects is made for it, but it gets mixed reviews
Culprit
8:04 PM - 14 July, 2015
They claim the pull down in after effects is made for it, but it gets mixed reviews
I stick with the pc method, it's solid and easier anyways imho
Quote:
Years later, I still really can't find a way to ivtc on a mac that works as good as the OG PC way.They claim the pull down in after effects is made for it, but it gets mixed reviews
I stick with the pc method, it's solid and easier anyways imho
Joshua Carl
9:10 PM - 14 July, 2015
Yeah, I just haven't had a PC in 5 years.
Using this old bohemith to move files to it, ivtc, then move a uncompressed file back
(Without TB or usb3)
1st world problems
Using this old bohemith to move files to it, ivtc, then move a uncompressed file back
(Without TB or usb3)
1st world problems
Culprit
10:31 PM - 14 July, 2015
Using this old bohemith to move files to it, ivtc, then move a uncompressed file back
(Without TB or usb3)
1st world problems
bootcamp son!
Quote:
Yeah, I just haven't had a PC in 5 years.Using this old bohemith to move files to it, ivtc, then move a uncompressed file back
(Without TB or usb3)
1st world problems
bootcamp son!
djpuma_gemini
4:32 AM - 15 July, 2015
Using this old bohemith to move files to it, ivtc, then move a uncompressed file back
(Without TB or usb3)
1st world problems
I IVTC with my gig laptop using bootcamp, it's a 2011 and it works great for IVTC and editing in Vegas.
Would be faster in bootcamp, but I don't feel like booting to the windows side and I can easily edit audio in Ableton for use in Vegas.
Quote:
Yeah, I just haven't had a PC in 5 years.Using this old bohemith to move files to it, ivtc, then move a uncompressed file back
(Without TB or usb3)
1st world problems
I IVTC with my gig laptop using bootcamp, it's a 2011 and it works great for IVTC and editing in Vegas.
Would be faster in bootcamp, but I don't feel like booting to the windows side and I can easily edit audio in Ableton for use in Vegas.
To participate in this forum discussion please log in to your Serato account.