NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Legacy (v4.x and earlier) v
« Previous 1 … 125 126 127 128 129 … 433 Next »
Record in MP4 Format

Record in MP4 Format
p37307
Offline

Senior Member

Posts: 252
Threads: 46
Joined: Jul 2016
#11
2016-07-20, 07:32 PM
I use HandbrakeCLI. I call a batch file in PostProcessing.

The code below is saved under c:\users\public\NPVR\tools and is named HBcovertTS.bat

I then call it in PostProcessing.bat as

Code:
Call :LOGMSG Now trying to convert %FILENAME% TS to MP4
Call "C:\Users\Public\NPVR\tools\HBconvertTS.bat" %1
Call :LOGMSG Finished Converting

The code I use is:
Code:
set hb_dir=E:\handbrake

"%hb_dir%\HandBrakeCLI.exe" -i %1 -o "%~dpn1.mp4" --preset="High Profile"

Play around with the different Handbrake presets (I use "High Profile") to get the results you want.

Oh, to do a recursive search of recording already in your PVR, I use the following code that I found on How-to-batch-convert-multiplex-any-files-with-ffmpeg: Of course I adapted it for my HandbrakeCLI command.

Code:
@echo off
dir/b/s *.*ts >mkvlist.txt
for /F "delims=;" %%F in (mkvlist.txt) do e:\handbrake\HandBrakeCLI.exe  -i "%%F" -o "%%~dF%%~pF%%~nF.mp4" --preset="High Profile"
del mkvlist.txt

To create a batch file just create a text file with notepad then change whatever.txt to whatever.bat.

~Paul
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): « Previous 1 2


Possibly Related Threads…
Thread Author Replies Views Last Post
  Can't watch certain channels on live tv (but can record) tvwatcher 4 2,299 2021-05-05, 06:23 AM
Last Post: tvwatcher
  Recordings with Next PVR 4.2.5 (CL0116) have background music but no voice in record DavidF 4 2,223 2021-01-07, 08:47 AM
Last Post: sub
  Possible to record in different format than .ts files? gadgetgaz 29 13,405 2020-10-04, 03:05 PM
Last Post: Ehrlichia
  Recordings Date Format NumberFive 3 2,087 2020-05-14, 11:08 PM
Last Post: NumberFive
  Can't record repeating programs dave22 2 1,916 2020-04-20, 04:27 PM
Last Post: sub
  Windows 10 Record Issues Captain Jack 11 5,678 2020-02-02, 09:11 PM
Last Post: Captain Jack
  Record direct from live tv? rv0987 3 2,025 2019-11-01, 12:29 PM
Last Post: rv0987
  Won't Record with Windows 10 v. 1903 GWCowling323 5 3,564 2019-10-15, 03:51 PM
Last Post: mvallevand
  NextPVR - black screen when watching and can't record XC-3730C 5 3,125 2019-10-14, 05:08 PM
Last Post: sub
  Issues with file format S01E01 nonob 39 8,836 2019-09-22, 05:57 AM
Last Post: nonob

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode