NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support v
« Previous 1 … 20 21 22 23 24 … 43 Next »
HEVC TV Channels and Transcoding

 
  • 0 Vote(s) - 0 Average
HEVC TV Channels and Transcoding
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,671
Threads: 767
Joined: Nov 2003
#11
2021-07-24, 10:00 PM
What output do you get from ffmpeg if run the follow command in a command prompt:

Code:
"C:\Program Files\NextPVR\Other\ffmpeg.exe" -y   -i http://127.0.0.1:8867/live?channeloid=8503&transcoder=845f8e17-03d8-4419-a0bb-a2eeaa6e109b&sid=3bca6dab-62e8-4143-9772-8489d9cdcc16&client=3bca6dab-62e8-4143-9772-8489d9cdcc16 -map_metadata -1 -threads 0 -ignore_unknown  -map 0:v:0? -map 0:m:language:eng? -map 0:a:0 -map -0:s -codec:v:0 libx264 -pix_fmt yuv420p -preset superfast -crf 23 -vf yadif=0:-1:0 -b:v 4000000 -maxrate 4000000 -bufsize 8000000 -vsync vfr -profile:v high -level 41 -force_key_frames "expr:gte(t,n_forced*3)" -s 1280x720   -flags -global_header -sc_threshold 0 -codec:a:0 aac -strict experimental -ac 2 -ab 192000 c:\temp\test.ts

(will need to create a c:\temp directory)
The Solutor
Offline

Member

Italy
Posts: 50
Threads: 5
Joined: Jul 2021
#12
2021-07-24, 10:07 PM (This post was last modified: 2021-07-24, 10:07 PM by The Solutor.)
Code:
C:\Users\me>"C:\Program Files\NextPVR\Other\ffmpeg.exe" -y   -i http://127.0.0.1:8867/live?channeloid=8503&transcoder=845f8e17-03d8-4419-a0bb-a2eeaa6e109b&sid=3bca6dab-62e8-4143-9772-8489d9cdcc16&client=3bca6dab-62e8-4143-9772-8489d9cdcc16 -map_metadata -1 -threads 0 -ignore_unknown  -map 0:v:0? -map 0:m:language:eng? -map 0:a:0 -map -0:s -codec:v:0 libx264 -pix_fmt yuv420p -preset superfast -crf 23 -vf yadif=0:-1:0 -b:v 4000000 -maxrate 4000000 -bufsize 8000000 -vsync vfr -profile:v high -level 41 -force_key_frames "expr:gte(t,n_forced*3)" -s 1280x720   -flags -global_header -sc_threshold 0 -codec:a:0 aac -strict experimental -ac 2 -ab 192000 c:\temp\test.ts
ffmpeg version 4.2.2 Copyright (c) 2000-2019 the FFmpeg developers
  built with gcc 9.2.1 (GCC) 20200122
  configuration: --disable-static --enable-shared --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libdav1d --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libmfx --enable-amf --enable-ffnvcodec --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth --enable-libopenmpt
  libavutil      56. 31.100 / 56. 31.100
  libavcodec     58. 54.100 / 58. 54.100
  libavformat    58. 29.100 / 58. 29.100
  libavdevice    58.  8.100 / 58.  8.100
  libavfilter     7. 57.100 /  7. 57.100
  libswscale      5.  5.100 /  5.  5.100
  libswresample   3.  5.100 /  3.  5.100
  libpostproc    55.  5.100 / 55.  5.100
[tcp @ 0035eb00] Connection to tcp://127.0.0.1:8867 failed: Error number -138 occurred
http://127.0.0.1:8867/live?channeloid=8503: Unknown error
"transcoder" non è riconosciuto come comando interno o esterno,
un programma eseguibile o un file batch.
"sid" non è riconosciuto come comando interno o esterno,
un programma eseguibile o un file batch.
"client" non è riconosciuto come comando interno o esterno,
un programma eseguibile o un file batch.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,849
Threads: 954
Joined: May 2006
#13
2021-07-24, 10:11 PM
The problem is these test streams likely do not have audio or they might be ac4

2021-07-24 23:42:30.914 [DEBUG][16] [FFMPEG]: Stream map '0:a:0' matches no streams.

and there is no provision in NextPVR for video only streams. I think that needs -map 0:a:0?

Martin
The Solutor
Offline

Member

Italy
Posts: 50
Threads: 5
Joined: Jul 2021
#14
2021-07-24, 10:15 PM
(2021-07-24, 10:11 PM)mvallevand Wrote: The problem is these test streams likely do not have audio or they might be ac4

2021-07-24 23:42:30.914 [DEBUG][16] [FFMPEG]: Stream map '0:a:0' matches no streams.

and there is no provision in NextPVR for video only streams.  I think that needs -map 0:a:0?

Martin

Correct, just a video test frame

So likely the problem is not a problem at all
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,671
Threads: 767
Joined: Nov 2003
#15
2021-07-24, 10:18 PM
Yeah, probably not a problem. If you had audio it would likely work.
The Solutor
Offline

Member

Italy
Posts: 50
Threads: 5
Joined: Jul 2021
#16
2021-07-24, 10:26 PM (This post was last modified: 2021-07-24, 10:27 PM by The Solutor.)
Ok I'll keep in mind this thread and I repost here when a real HEVC channel will be available.,to confirm everything is working

(maybe something that already happened and I missed it)

Thanks again
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,671
Threads: 767
Joined: Nov 2003
#17
2021-07-24, 10:32 PM
I'm pretty sure we've had a couple of real world tests on HEVC channels in the past (from Germany test channels, and from set top box using HEVC video encoder)
The Solutor
Offline

Member

Italy
Posts: 50
Threads: 5
Joined: Jul 2021
#18
2021-07-24, 10:56 PM
Very good.

But, you know, in the IT you never get anything for granted before some test.

Even the smallest variation on the compression schemes across the nations can provide troubles, on Friday the 13th Smile
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,671
Threads: 767
Joined: Nov 2003
#19
2021-07-24, 10:57 PM
Yes, absolutely. We'll worry about it when we see real-world examples causing issues though.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,849
Threads: 954
Joined: May 2006
#20
2021-07-24, 11:21 PM
HEVC transcoding is working for me with my HEVC streams. It is not optimized and doesn't factor in browsers like Safari which can play HEVC.

Martin
« 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
  DVB-T Channels [Streaming Failed (transcoder exited)] JaxMedia 4 186 2025-05-13, 10:09 AM
Last Post: JaxMedia
  Recording from the point you switch channels rather than when you press record Swindiff 2 187 2025-05-05, 12:30 PM
Last Post: Swindiff
  No program data for radio channels (Freesat) Swindiff 4 356 2025-04-29, 07:14 PM
Last Post: Swindiff
  Main UK channels not playing Swindiff 23 1,673 2025-04-08, 02:52 PM
Last Post: Swindiff
  Recurring Recordings Not Working After Merging Channels BrettB 2 250 2025-02-06, 04:00 AM
Last Post: mvallevand
  Swapped Channels Question SilverTiger 4 450 2024-11-19, 03:44 PM
Last Post: SilverTiger
  Connection Timeout Issue When Selecting Channels in Kodi with NextPVR Paul92 9 1,108 2024-11-02, 11:40 PM
Last Post: mvallevand
  It is far too easy to delete all channels. Paul92 1 355 2024-10-19, 01:46 PM
Last Post: mvallevand
  Channels keep Changing Randomly michael.j.pagel2 5 631 2024-10-02, 03:15 AM
Last Post: mvallevand
  Adding new channels - extras hdpvr-doug8796 20 1,903 2024-09-20, 05:26 PM
Last Post: sub

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

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

Linear Mode
Threaded Mode