Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
![]() |
#1 | Link |
Registered User
Join Date: Jul 2010
Posts: 4
|
vspipe Ignoring Contents of VPY Script
Hello, I have the following VapourSynth script:
Code:
import vapoursynth as vs import havsfunc as haf core = vs.get_core() clip = core.ffms2.Source(source='T:\Captured\\LV_3.mpg') clip = haf.QTGMC(clip, Preset='Slower', TFF=False) clip = core.resize.Spline36(clip, 640, 480) clip = core.std.Crop(clip, 8,8,0,4) clip.set_output() Code:
vspipe LV.vpy - | ffmpeg -i pipe: -i "T:\Captured\LV_3.mpg" -c:v libx264 -crf 18 "K:\LV3_1.mp4" The only warnings I get when running FFMPEG are: Code:
Format ADP detected with only a low score of 25, misdetection possible! Code:
Thread message queue blocking; consider raising the thread_queue_size option (current value: 8) Any ideas? |
![]() |
![]() |
![]() |
#3 | Link |
Registered User
Join Date: Oct 2001
Location: Germany
Posts: 7,034
|
If your source is video only I agree with Junkus.
![]() Assuming that your input is not video only: My guess is that your aim was to process the video using Vapoursynth and process the audio through ffmpeg. Problem with you call is that you have two inputs, but you are not providing a mapping to what ffmpeg should do with the content. And you are also not specifying what should happen with the audio (so ffmpeg will use some default audio reencoding settings, which is probably not what you want.) Thus FFmpeg probably simply only processes the second input and ignores the first. -> you might want to read up on ffmpeg and mapping (https://trac.ffmpeg.org/wiki/Map) and ffmpeg and audio handling (https://trac.ffmpeg.org/wiki/Encode/HighQualityAudio). Cu Selur |
![]() |
![]() |
![]() |
Tags |
ffmpeg, vapoursynth, vspipe |
Thread Tools | Search this Thread |
Display Modes | |
|
|