Defiasen
Member
I forget where on this website, but someone gave me this script for converting FLV into mp4 files:
However, I seem to be running into something and I'm not sure if it will have an effect on anything. First off, I stream at 48 fps. However, the batch file script seems to detect it as 50 fps and converts it into a 50 fps file. Even when I upload it to Youtube it's saying it's 720p50fps but my older files I uploaded say 720p48fps. I'm wondering if that 2 extra FPS detected might have some sort of VOD quality problems?
Code:
@echo off
set ffpath="D:\Stream Applications\FFmpeg\bin\ffmpeg.exe"
set outpath="D:\Stream Applications\Video Archive\Streamed\MP4\%~n1.mp4"
:start
if not exist %outpath% (
%ffpath% -i "%~f1" -c copy -copyts %outpath%
)
shift
if not [%1]==[] GOTO start
However, I seem to be running into something and I'm not sure if it will have an effect on anything. First off, I stream at 48 fps. However, the batch file script seems to detect it as 50 fps and converts it into a 50 fps file. Even when I upload it to Youtube it's saying it's 720p50fps but my older files I uploaded say 720p48fps. I'm wondering if that 2 extra FPS detected might have some sort of VOD quality problems?