Hello when I record IPTV always have lost packets and reconections, after when I play the file on Kodi or vlc local file *.ts its imposible to forward the time. To fix this with ffmpeg command "-avoid_negative_ts make_zero" its ok after its possible to advance the time.
My question is If there is any way to do a script? I'm not programer or TVH has an option to schedule task when finish recordigng?
Recording task to fix bad timestamp
tonidiek My question is If there is any way to do a script? I'm not programer or TVH has an option to schedule task when finish recordigng?
You can instruct TVH to run a script after the recording has completed.
http://[tvh_ip_address]:9981
Configuration -> Recording -> Digital Video Recorder Profiles -> Miscellaneous Settings -> Post-processor command
Thanks I do this script and all works fine.
#!/bin/bash
ffmpeg -avoid_negative_ts make_zero -i "$1" -c copy /mnt/d/grab/temp/"$2"
mv -f /mnt/d/grab/temp/"$2" "$1"