This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loadplugin("C:\dev\FFAStrans\Processors\avs_plugins\ffms2\x64\ffms2.dll") | |
loadplugin("C:\AvsPmod\plugins\fmtconv.dll") | |
loadplugin("C:\AvsPmod\plugins\avsresize\x64\Release\avsresize.dll") | |
FFVideoSource("c:\temp\rgb2111.nut") #rgb2111.nut is BT2111 bgrp10le colorbar hlg,2020,2020 (vapoursynth: c = core.colorbars.ColorBars(format=vs.RGB30, resolution=5, hdr=1)) | |
##SCENE REFERRED | |
# | |
# BT.2111 seems to work with rgb source and target, we do the same here (avoid any yuv-rgb-yuv conversion) | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loadplugin("C:\dev\FFAStrans\Processors\avs_plugins\ffms2\x64\ffms2.dll") | |
loadplugin("C:\AvsPmod\plugins\fmtconv.dll") | |
loadplugin("C:\AvsPmod\plugins\avsresize\x64\Release\avsresize.dll") | |
FFVideoSource("C:\temp\vistek.mxf") #vistek is a bt.709 colorbar | |
#check initial values in rgb 10 bit format | |
#z_ConvertFormat(pixel_type="rgbp10",colorspace_op="709:709:709:limited=>rgb:same:same:limited") #full-limited and to 10 bit | |
#return last |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i "concat:v1.mp4|v2.mp4" -i "concat:a1.mp4|a2.mp4" -codec copy -map 0:v -map 1:a -video_track_timescale 25 out.mp4 -y | |
C:\temp\webinterface_1.4.0.5\tools\ffmpeg\ffprobe.exe -show_frames -select_streams v out.mp4 > out_frames.txt && C:\temp\webinterface_1.4.0.5\tools\ffmpeg\ffprobe -show_packets -select_streams v out.mp4 > out_packets.txt | |
working: | |
ffmpeg -i "concat:v1.mp4|v2.mp4" -i "concat:a1.mp4|a2.mp4" -codec copy -map 0:v -map 1:a -video_track_timescale 25 out.mp4 -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\Gam3r1\mpv.exe --lavfi-complex="[vid1]sidedata=delete,metadata=delete,yadif=deint=1,scale=1920:1080,pad=1920:1080:-1:-1:color=2D3039[vid_right_border],[vid_right_border]split[voriginal][vwfm],[vwfm]waveform=filter=lowpass:scale=digital:graticule=green:mirror=1:intensity=0.9:fitmode=size[vwfm],[voriginal][vwfm]vstack,scale=1920:1080[vid_right_border],[aid1][aid2][aid3][aid4][aid5][aid6][aid7][aid8][aid9][aid10][aid11][aid12][aid13][aid14][aid15][aid16]amerge=inputs=16[all],[all]pan=stereo|c0=c0|c1=c1[pc_audio],[pc_audio]asetpts=PTS-0.24/TB[ao],[vid_right_border]copy[withaudiobars],[withaudiobars]copy[vo]" c:\temp\xavc_Vistek_100_TRANSCODE_1stitched_4_1.mxf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XDCAMHD: | |
transcode 2 clips (closed GOP), then stitch with codec copy: | |
Application provided invalid, non monotonically increasing dts to muxer in stream 0: 49 >= 47 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
SET FFMAPS= | |
SET FPSFILTER= | |
:: Check if the file has a video stream | |
ffmpeg -v error -i "%1" -vframes 1 -map 0:v -f null - >nul 2>&1 | |
if %ERRORLEVEL%==0 ( | |
SET FFMAPS=!FFMAPS! -map 0:v |
OlderNewer