Results 1 to 8 of 8

Thread: How to encode h.265

  1. #1
    Join Date
    Oct 2011
    Beans
    9

    How to encode h.265

    I've been looking through the mencoder docs, but I can't find a way to encode h.265 video for my Galaxy S4. How do I do this?

  2. #2
    Join Date
    May 2010
    Beans
    627
    Distro
    Ubuntu Development Release

    Re: How to encode h.265

    Edit: Misread--my bad.

    So you want video...Video codec is specificed by the -ovc option in the mencoder options list. To figure out which codecs you have installed, run:
    Code:
    $ mencoder -ovc help
    MEncoder svn r34540 (Ubuntu), built with gcc-4.7 (C) 2000-2012 MPlayer Team
    
    Available codecs:
       copy     - frame copy, without re-encoding. Doesn't work with filters.
       frameno  - special audio-only file for 3-pass encoding, see DOCS.
       raw      - uncompressed video. Use fourcc option to set format explicitly.
       nuv      - nuppel video
       lavc     - libavcodec codecs - best quality!
       vfw      - VfW DLLs, read DOCS/HTML/en/encoding-guide.html.
       qtvideo  - QuickTime DLLs, currently only SVQ1/3 are supported.
       xvid     - XviD encoding
       x264     - H.264 encoding
    Thus you would specify -ovc x264 on the command line for h.265 video.


    Thanks,
    Cipherboy LOC
    Last edited by cipherboy_loc; May 22nd, 2013 at 01:11 AM.

  3. #3
    Join Date
    Oct 2011
    Beans
    9

    Re: How to encode h.265

    Quote Originally Posted by cipherboy_loc View Post
    So you want video...Video codec is specificed by the -ovc option in the mencoder options list. To figure out which codecs you have installed, run:
    Code:
    $ mencoder -ovc help
    MEncoder svn r34540 (Ubuntu), built with gcc-4.7 (C) 2000-2012 MPlayer Team
    
    Available codecs:
       copy     - frame copy, without re-encoding. Doesn't work with filters.
       frameno  - special audio-only file for 3-pass encoding, see DOCS.
       raw      - uncompressed video. Use fourcc option to set format explicitly.
       nuv      - nuppel video
       lavc     - libavcodec codecs - best quality!
       vfw      - VfW DLLs, read DOCS/HTML/en/encoding-guide.html.
       qtvideo  - QuickTime DLLs, currently only SVQ1/3 are supported.
       xvid     - XviD encoding
       x264     - H.264 encoding
    Thus you would specify -ovc x264 on the command line for h.265 video.


    Thanks,
    Cipherboy LOC
    That makes no sense. How does -ov x264 give you h.265?

  4. #4
    Join Date
    May 2010
    Beans
    627
    Distro
    Ubuntu Development Release

    Re: How to encode h.265

    I misread--my bad. However, according to Wikipedia, which could be wrong, it appears that the standard has not yet been finalized and as such, likely not to have support yet. I guess patience is expected here. In the meantime, perhaps you could find a different option that would work for your Galaxy S4?


    Thanks,
    Cipherboy

  5. #5
    Join Date
    Dec 2006
    Beans
    7,349

    Re: How to encode h.265

    I suspect that MEncoder would be unlikely to ever support HEVC, and FFmpeg has not joined the bandwagon yet. Interestingly enough some samples here:

    http://www.elecard.com/en/download/videos.html

    I gather that you will need their player as well.
    You think that's air you're breathing now?

  6. #6
    Join Date
    Oct 2011
    Beans
    9

    Re: How to encode h.265

    Quote Originally Posted by andrew.46 View Post
    I suspect that MEncoder would be unlikely to ever support HEVC, and FFmpeg has not joined the bandwagon yet. Interestingly enough some samples here:

    http://www.elecard.com/en/download/videos.html

    I gather that you will need their player as well.
    Why not?

  7. #7
    Join Date
    Dec 2006
    Beans
    7,349

    Re: How to encode h.265

    Quote Originally Posted by raptorhunter View Post
    Why not?
    MENcoder has not been developed for years and is unlikely to restart development. Most are using FFmpeg which is very, very actively developed.
    You think that's air you're breathing now?

  8. #8
    Join Date
    Aug 2005
    Location
    Rio de Janeiro, Brasil
    Beans
    92

    Re: How to encode h.265

    To find if a file is really h.264, try this command:

    ffprobe -show_streams "file.mp4"
    Last edited by josir; July 9th, 2013 at 12:31 PM. Reason: fix

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
  •