Articles in the Technology category

  1. x264 Overview

    Tue 14 November 2017
    By YF

    Introduction


    x264 version compilable by visual studio, generated by Shift Media Project I have forked my own version and put it in my github website: git@github.com:huyunf/x264.git

    Code Overview


    h = x264_encoder_open( );
    
    for(loop by frame number){
        ...
        encode_frame( );
        ...
    }
    

    The x264_encoder_open() function does several initial task for the …

    Tagged as : Video Codec x264
  2. H264 Video Compression Algorithm Overview

    Mon 13 November 2017
    By YF

    Overview and Materials


    H.264 or MPEG-4 Part 10, Advanced Video Coding (MPEG-4 AVC) is a block-oriented motion-compensation-based video compression standard. As of 2014 it is one of the most commonly used formats for the recording, compression, and distribution of video content. It supports resolutions up to 4096×2304, including …

    Tagged as : Video Codec h264

Page 2 / 2