FMUSER Wirless Transmit Video And Audio More Easier !

[email protected] WhatsApp +8618078869184
Language

    Encoding and packaging of live broadcast technology

     

    The meaning of video coding


    Large storage space for original video data, a 1080P 7 s video requires 817 MB
    The original video data transmission occupies a large bandwidth, and it takes 11 minutes to transmit the above 7 s video with a bandwidth of 10 Mbps
    After H.264 encoding and compression, the video size is only 708 k, and the 10 Mbps bandwidth only needs 500 ms, which can meet the needs of real-time transmission. Therefore, the original video collected from the video acquisition sensor must be video encoded.

     

    Fundamental


    So why can a huge original video be encoded into a very small video? What is the technology in this? Before talking about technology, we should first establish the concept of video that is continuous pictures.

    The core idea is to remove redundant information:

    Spatial redundancy: there is a strong correlation between adjacent pixels of a picture
    Temporal redundancy: similar content between adjacent pictures in a video sequence
    Coding redundancy: different pixel values ​​have different probabilities
    Visual redundancy: the human visual system is not sensitive to certain details
    Knowledge redundancy: the structure of regularity can be obtained from prior knowledge and background knowledge
    Video is essentially a series of pictures that are played continuously and quickly, so the easiest way to compress a video is to compress each frame of pictures. For example, the older MJPEG encoding is to compress each frame of pictures in the video. This encoding method There is only intra-frame coding, which uses spatial sample prediction to code. The image metaphor is to treat each frame as a picture, and use the JPEG encoding format to compress the picture. This kind of encoding only considers the compression of redundant information in a picture.

     

    However, because of the time correlation between frames, some advanced encoders have been developed that can use inter-frame coding. Simply put, certain areas on the frame are selected through the search algorithm, and then the current frame is calculated It is a form of encoding with the vector difference between the front and rear reference frames. Through the following two consecutive frames in Figure 2, we can see that the skier is shifting forward, but in fact the snow scene is shifting backwards, and the P frame is referenced Frames (I or other P frames) can be encoded, the size after encoding is very small, and the compression ratio is very high.

     

    Reference link about the frame http://mp.weixin.qq.com/s/ox6MsWx71b-GFsZihaOwww

    Some students may be interested in how these two pictures came from. Here are two lines of FFmpeg commands to achieve. For more details on FFmpeg, please see the following chapters:

    The first line generates a video with a moving vector
    The second line outputs each frame as a picture
    Use the command

    ffmpeg -flags2 +export_mvs -i tutu.mp4 -vf codecview=mv=pf+bf+bb tutudebug2.mp4

    ffmpeg -i tutudebug2.mp4'tutunormal-%03d.bmp'
       

    In addition to spatial redundancy and temporal redundancy compression, there are mainly encoding compression and visual compression. The following is the main flow chart of an encoder:

    Figure 3 and Figure 4 are two processes. Figure 3 is intra-frame coding, and Figure 4 is inter-frame coding. The main difference seen from the figure is that the first step is different. In fact, these two processes are also combined. Generally speaking, I frame and P frame use intra-frame coding and inter-frame coding respectively.

     

    Encoder selection


    I have sorted out the principle and basic process of the encoder. The encoder has experienced decades of development. It has evolved from only supporting intra-frame encoding to the new generation of encoders represented by H.265 and VP9 today. At present, some common encoders are analyzed, and we will take you to explore the world of encoders.

     

    H.264


    Introduction

    The H.264/AVC project intends to create a video standard. Compared with the old standard, it can provide high-quality video at a lower bandwidth (in other words, only half the bandwidth of MPEG-2, H.263 or MPEG-4 Part 2 or less) without adding too much design complexity Makes it impossible to achieve or the cost of implementation is too high. Another purpose is to provide sufficient flexibility to be used in various applications, networks and systems, including high and low bandwidth, high and low video resolutions, broadcasting, DVD storage, RTP/IP networks, and ITU-T multimedia phones system.

    H.264/AVC contains a series of new features, making it not only more efficient than previous codecs, but also can be used in applications in various network environments. This technical foundation makes H.264 become the main codec used by online video companies including YouTube, but using it is not a very easy task. In theory, using H.264 requires a lot of money. Patent fees.

     

    Patent license

    Like the first and second parts of MPEG-2 and the second part of MPEG-4, product manufacturers and service providers that use H.264/AVC need to pay patent license fees to patent holders. The main source of these patent licenses is a private organization called MPEG-LA LLC. This organization has nothing to do with the MPEG Standardization Organization, but this organization also manages the MPEG-2 Part One System, Part Two Video, and MPEG-4 Part One. Two-part video and other technology patent licenses.
    Other patent licenses need to apply to another private organization called VIA Licensing, which also manages patent licenses for audio compression standards such as MPEG-2 AAC and MPEG-4 Audio.

     

    Open source implementation of H.264

    openh264 is an open source H.264 encoding program implemented by Cisco. Although H.264 requires a high patent fee, there is an annual limit on the patent fee. After Cisco pays the annual patent fee for OpenH264, OpenH264 is actually free Use it freely.

    x264 is a video coding free software licensed under GPL. The main function of x264 is to perform H.264/MPEG-4 AVC video encoding, not as a decoder.

    Excluding the cost issue for comparison:
    The CPU usage of openh264 is much lower than that of x264
    openh264 only supports baseline profile, x264 supports more profiles

     

     

    HEVC/H.265


    Introduction

    High Efficiency Video Coding (HEVC) is a video compression standard (also called H.265), which is regarded as the successor of the ITU-T H.264/MPEG-4 AVC standard. In 2004, ISO/IEC Moving Picture Experts Group (MPEG) and ITU-T Video Coding Experts Group (VCEG) began to develop as ISO/IEC 23008-2 MPEG-H Part 2 or ITU-T H.265. The first version of the HEVC/H.265 video compression standard was accepted as the official standard of the International Telecommunication Union (ITU-T) on April 13, 2013. HEVC is considered not only to improve video quality, but also to achieve twice the compression rate of H.264/MPEG-4 AVC (equivalent to a 50% reduction in bit rate under the same picture quality), and can support 4K resolution and even ultra-high-definition TV (UHDTV), the highest resolution can reach 8192×4320 (8K resolution).

     

    Patent license

    HEVC requires all content manufacturers that use H.265 technology, including Apple, YouTube, Netflix, Facebook, and Amazon, to pay 0.5% of their content revenue as a technology usage fee. The entire streaming media market reaches about 100 billion U.S. dollars each year, and it continues to In the growth, the levy of 0.5% is definitely a huge fee. And they have not let go of equipment manufacturers, among which TV manufacturers need to pay 1.5 US dollars per unit and mobile device manufacturers 0.8 US dollars per unit in patent fees. They have not even let go of manufacturers such as Blu-ray device players, game consoles, and video recorders, which must pay $1.1 each.

    Open source implementation of H.265/HEVC

    libde265 HEVC is provided by struktur company under the open source license GNU Lesser General Public License (LGPL), and viewers can enjoy the highest quality images at slower internet speeds. Compared with previous decoders based on the H.264 standard, the libde265 HEVC decoder can bring your full HD content to up to twice the audience, or reduce the bandwidth required for streaming by 50%.

    x265 is developed by MulticoreWare and is open sourced under the GPL agreement.

     

     

    VP8


    Introduction

    VP8 is an open video compression format that was first developed by On2 Technologies and then released by Google. At the same time, Google also released the VP8 coded implementation library: libvpx, which was released in the form of BSD license terms, and subsequently added the right to use the patent. After some arguments, the authorization of VP8 was finally confirmed as an open source authorization.

    Currently, the web browsers that support VP8 are Opera, Firefox and Chrome.

     

    Patent license

    In March 2013, Google reached an agreement with MPEG LA and 11 patent holders to allow Google to obtain VP8 and its previous VPx and other encodings that may be infringed on patents. At the same time, Google can also re-authorize related patents to VP8 users free of charge. , This agreement is also suitable for the next generation of VPx encoding. So far, MPEG LA has given up the establishment of the VP8 patent centralized licensing alliance, and VP8 users will be able to determine to use this code free of charge without worrying about possible patent infringement royalties.

    Open source implementation of VP8

    Libvpx is the only open source implementation of VP8. It was developed by On2 Technologies. After Google acquired it, it opened its source code. The license is very loose and can be used freely.

     

     

    VP9


    Introduction

    The development of VP9 began in the third quarter of 2011. The goal is to reduce the file size by 50% compared to VP8 encoding under the same image quality. Another goal is to surpass HEVC encoding in encoding efficiency.

    On December 13, 2012, the Chromium browser added support for VP9 encoding. Chrome browser started to support VP9 encoded video playback on February 21, 2013.

    Google announced that it will complete the development of the VP9 code on June 17, 2013, when the Chrome browser will guide the VP9 code by default. On March 18, 2014, Mozilla added VP9 support to the Firefox browser.

    On April 3, 2015, Google released libvpx1.4.0, which added support for 10-bit and 12-bit bit depth, 4:2:2 and 4:4:4 chroma sampling, and VP9 multi-core encoding/decoding.

     

    Patent license

    VP9 is an open format, royalty-free video encoding format.

    Open source implementation of VP9

    libvpx is the only open source implementation of VP9, ​​developed and maintained by Google. Some of the codes are shared by VP8 and VP9, ​​and the rest are the codec implementations of VP8 and VP9 respectively.

    Comparison of VP9 and H.264 and HEVC
    Comparison of HEVC and H.264 at different resolutions
    Compared with H.264/MPEG-4, the average bit rate reduction of HEVC is:

    It can be seen that the bit rate has dropped by more than 60%

    HEVC (H.265) has a greater advantage in bit rate saving for VP9 and H.264, saving 48.3% and 75.8% respectively under the same PSNR
    H.264 has a huge advantage in encoding time. Compared with VP9 and HEVC (H.265), HEVC is 6 times that of VP9, ​​and VP9 is nearly 40 times that of H.264.

    a

     

     

     

     

     

     

    How far(long) the transmitter cover?

    The transmission range depends on many factors. The true distance is based on the antenna installing height , antenna gain, using environment like building and other obstructions , sensitivity of the receiver, antenna of the receiver . Installing antenna more high and using in the countryside , the distance will much more far.

    EXAMPLE 5W FM Transmitter use in the city and hometown:

    I have a USA customer use 5W fm transmitter with GP antenna in his hometown ,and he test it with a car, it cover 10km(6.21mile).

    I test the 5W fm transmitter with GP antenna in my hometown ,it cover about 2km(1.24mile).

    I test the 5W fm transmitter with GP antenna in Guangzhou city ,it cover about only 300meter(984ft).

    Below are the approximate range of different power FM Transmitters. ( The range is diameter )

    0.1W ~ 5W FM Transmitter :100M ~1KM

    5W ~15W FM Ttransmitter : 1KM ~ 3KM

    15W ~ 80W FM Transmitter : 3KM ~10KM

    80W ~500W FM Transmitter : 10KM ~30KM

    500W ~1000W FM Transmitter : 30KM ~ 50KM

    1KW ~ 2KW FM Transmitter : 50KM ~100KM

    2KW ~5KW FM Transmitter : 100KM ~150KM

    5KW ~10KW FM Transmitter : 150KM ~200KM

    How to contact us for the transmitter?

    Call me +8618078869184 OR
    Email me [email protected]
    1.How far you want to cover in diameter ?
    2.How tall of you tower ?
    3.Where are you from ?
    And we will give you more professional advice.

    About Us

    FMUSER.ORG is a system integration company focusing on RF wireless transmission / studio video audio equipment / streaming and data processing .We are providing everything from advice and consultancy through rack integration to installation, commissioning and training.
     
    We offer FM Transmitter, Analog TV Transmitter, Digital TV transmitter, VHF UHF Transmitter, Antennas, Coaxial Cable Connectors, STL, On Air Processing, Broadcast Products for the Studio, RF Signal Monitoring, RDS Encoders, Audio Processors and Remote Site Control Units, IPTV Products, Video / Audio Encoder / Decoder, designed to meet the needs of both large international broadcast networks and small private stations alike.
     
    Our solution has FM Radio Station / Analog TV Station / Digital TV Station / Audio Video Studio Equipment / Studio Transmitter Link / Transmitter Telemetry System / Hotel TV System / IPTV Live Broadcasting / Streaming Live Broadcast / Video Conference / CATV Broadcasting system.
     
    We are using advanced technology products for all the systems, because we know the high reliability and high performance are so important for the system and solution . At the same time we also have to make sure our products system with a very reasonable price.
     
    We have customers of public and commercial broadcasters, telecom operators and regulation authorities , and we also offer solution and products to many hundreds of smaller, local and community broadcasters .
     
    FMUSER.ORG has been exporting more than 15 years and have clients all over the world. With 13 years experience in this field ,we have a professional team to solve customer's all kinds of problems. We dedicated in supplying the extremely reasonable pricing of professional products & services.
    Contact email : [email protected]

    Our Factory

    We have modernization of the factory . You are welcome to visit our factory when you come to China.

    At present , there are already 1095 customers around the world visited our Guangzhou Tianhe office . If you come to China , you are welcome to visit us .

    At Fair

    This is our participation in 2012 Global Sources Hong Kong Electronics Fair . Customers from all over the world finally have a chance to get together.

    Where is Fmuser ?

    You can search this numbers " 23.127460034623816,113.33224654197693 " in google map , then you can find our fmuser office .

    FMUSER Guangzhou office is in Tianhe District which is the center of the Canton . Very near to the Canton Fair , guangzhou railway station, xiaobei road and dashatou , only need 10 minutes if take TAXI . Welcome friends around the world to visit and negotiate .

    Contact: Sky Blue
    Cellphone: +8618078869184
    WhatsApp: +8618078869184
    Wechat: +8618078869184
    E-mail: [email protected]
    QQ: 727926717
    Skype: sky198710021
    Address: No.305 Room HuiLan Building No.273 Huanpu Road Guangzhou China Zip:510620

    English: We accept all payments , such as PayPal, Credit Card, Western Union, Alipay, Money Bookers, T/T, LC, DP, DA, OA, Payoneer, If you have any question , please contact me [email protected] or WhatsApp +8618078869184

    • PayPal.  www.paypal.com

      We recommend you use Paypal to buy our items ,The Paypal is a secure way to buy on internet .

      Every of our item list page bottom on top have a paypal logo to pay.

      Credit Card.If you do not have paypal,but you have credit card,you also can click the Yellow PayPal button to pay with your credit card.

      ---------------------------------------------------------------------

      But if you have not a credit card and not have a paypal account or difficult to got a paypal accout ,You can use the following:

      Western Union.  www.westernunion.com

       

      Pay by Western Union to me :

      First name/Given name: Yingfeng
      Last name/Surname/ Family name: Zhang
      Full name: Yingfeng Zhang
      Country: China
      City: Guangzhou 

      ---------------------------------------------------------------------

      T/T .  Pay by T/T (wire transfer/ Telegraphic Transfer/ Bank Transfer)
       
      First BANK INFORMATION (COMPANY ACCOUNT):
      SWIFT BIC: BKCHHKHHXXX
      Bank name: BANK OF CHINA (HONG KONG) LIMITED, HONG KONG
      Bank Address: BANK OF CHINA TOWER, 1 GARDEN ROAD, CENTRAL, HONG KONG
      BANK CODE: 012
      Account Name : FMUSER INTERNATIONAL GROUP LIMITED
      Account NO. : 012-676-2-007855-0
      ---------------------------------------------------------------------
      Second BANK INFORMATION (COMPANY ACCOUNT):
      Beneficiary: Fmuser International Group Inc
      Account Number: 44050158090900000337
      Beneficiary's Bank: China Construction Bank Guangdong Branch
      SWIFT Code: PCBCCNBJGDX
      Address: NO.553 Tianhe Road, Guangzhou, Guangdong,Tianhe District, China
      **Note: When you transfer money to our bank account, please DO NOT write anything in the remark area, otherwise we won't be able to receive the payment due to government policy on international trade business.

    * It will be sent in 1-2 working days when payment clear.

    * We will send it to your paypal address. If you want to change address, please send your correct address and phone number to my email [email protected]

    * If the packages is below 2kg,we will be shipped via post airmail, it will take about 15-25days to your hand.

    If the package is more than 2kg,we will ship via EMS , DHL , UPS, Fedex fast express delivery,it will take about 7~15days to your hand.

    If the package more than 100kg , we will send via DHL or air freight. It will take about 3~7days to your hand.

    All the packages are form China guangzhou.

    * Package will be sent as a "gift" and declear as less as possible,buyer don't need to pay for "TAX".

    * After ship, we will send you an E-mail and give you the tracking number.

    For Warranty .
    Contact US--->>Return the item to us--->>Receive and send another replace .

    Name: Liu xiaoxia
    Address: 305Fang HuiLanGe HuangPuDaDaoXi 273Hao TianHeQu Guangzhou China.
    ZIP:510620
    Phone: +8618078869184

    Please return to this address and write your paypal address,name,problem on note:

    List all Question

    Nickname

    Email

    Questions

      Enter email  to get a surprise

      fmuser.org

      es.fmuser.org
      it.fmuser.org
      fr.fmuser.org
      de.fmuser.org
      af.fmuser.org ->Afrikaans
      sq.fmuser.org ->Albanian
      ar.fmuser.org ->Arabic
      hy.fmuser.org ->Armenian
      az.fmuser.org ->Azerbaijani
      eu.fmuser.org ->Basque
      be.fmuser.org ->Belarusian
      bg.fmuser.org ->Bulgarian
      ca.fmuser.org ->Catalan
      zh-CN.fmuser.org ->Chinese (Simplified)
      zh-TW.fmuser.org ->Chinese (Traditional)
      hr.fmuser.org ->Croatian
      cs.fmuser.org ->Czech
      da.fmuser.org ->Danish
      nl.fmuser.org ->Dutch
      et.fmuser.org ->Estonian
      tl.fmuser.org ->Filipino
      fi.fmuser.org ->Finnish
      fr.fmuser.org ->French
      gl.fmuser.org ->Galician
      ka.fmuser.org ->Georgian
      de.fmuser.org ->German
      el.fmuser.org ->Greek
      ht.fmuser.org ->Haitian Creole
      iw.fmuser.org ->Hebrew
      hi.fmuser.org ->Hindi
      hu.fmuser.org ->Hungarian
      is.fmuser.org ->Icelandic
      id.fmuser.org ->Indonesian
      ga.fmuser.org ->Irish
      it.fmuser.org ->Italian
      ja.fmuser.org ->Japanese
      ko.fmuser.org ->Korean
      lv.fmuser.org ->Latvian
      lt.fmuser.org ->Lithuanian
      mk.fmuser.org ->Macedonian
      ms.fmuser.org ->Malay
      mt.fmuser.org ->Maltese
      no.fmuser.org ->Norwegian
      fa.fmuser.org ->Persian
      pl.fmuser.org ->Polish
      pt.fmuser.org ->Portuguese
      ro.fmuser.org ->Romanian
      ru.fmuser.org ->Russian
      sr.fmuser.org ->Serbian
      sk.fmuser.org ->Slovak
      sl.fmuser.org ->Slovenian
      es.fmuser.org ->Spanish
      sw.fmuser.org ->Swahili
      sv.fmuser.org ->Swedish
      th.fmuser.org ->Thai
      tr.fmuser.org ->Turkish
      uk.fmuser.org ->Ukrainian
      ur.fmuser.org ->Urdu
      vi.fmuser.org ->Vietnamese
      cy.fmuser.org ->Welsh
      yi.fmuser.org ->Yiddish

       
  •  

    FMUSER Wirless Transmit Video And Audio More Easier !

  • Contact

    Address:
    No.305 Room HuiLan Building No.273 Huanpu Road Guangzhou China 510620

    E-mail:
    [email protected]

    Tel / WhatApps:
    +8618078869184

  • Categories

  • Newsletter

    FIRST OR FULL NAME

    E-mail

  • paypal solution  Western UnionBank OF China
    E-mail:[email protected]   WhatsApp:+8618078869184   Skype:sky198710021 Chat with me
    Copyright 2006-2020 Powered By www.fmuser.org

    Contact Us