Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: VLC pvr not enabled in 14.04

  1. #11
    Join Date
    Jul 2013
    Beans
    14

    Re: VLC pvr not enabled in 14.04

    I think I found a solution with avconv:

    Code:
    avconv -i /dev/video0 -c copy -c:v h264 -f mpegts udp://<destination-ip-address>:5004
    At the destination I use VLC and open udp://@:5004

    I need to check video quality and a/v sync more closely but it seems to work.

  2. #12
    Join Date
    Apr 2014
    Beans
    1

    Re: VLC pvr not enabled in 14.04

    Found this in the wiki: https://wiki.videolan.org/Documentation:Modules/v4l2

    You need to use the 'compressed' alias (v4l2 with c):
    Code:
    vlc 'v4l2c://'
    The frequency setting doesn't work though, it has a strange factor on it. If you enter for example 50, then you get 195.3125 MHz, so you never can set an integer value.

    Code:
    vlc 'v4l2c://:tuner-frequency=50'
    As a workarround you can use this (for 216MHz):

    Code:
    ivtv-tune -f 216 && vlc 'v4l2c://'
    Opening the TV from the VLC GUI doesn't seem to be possible. The only way I got it to work was through the "Network" tab and entering "v4l2c://" as URL. This does not allow for setting a frequency though, that would still have to be done from a commandline (ivtv-tune -f 216).

  3. #13
    Join Date
    Mar 2006
    Location
    Williams Lake
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: VLC pvr not enabled in 14.04

    Moved to Multimedia & Video, as 14.04 has been released, and is no longer in development.

Page 2 of 2 FirstFirst 12

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •