SlideShare a Scribd company logo
1 of 32
Video Transmission Over Ethernet Using H.263 Codec |
                                2013




 VIDEO TRANSMISSION OVER ETHERNET USING
•Click to edit Master text styles
   –Second level H.263 CODEC
    •Third level
       –Fourth level
          »Fifth level

                     Presented by:
                        Kavisha
                      BTBTI09124
                   B.Tech(I.T.)-VII sem
Video Transmission Over Ethernet Using H.263 Codec |
                               2013

             AIM OF THE PROJECT

The project aims at capturing a real time video frame
 •Click to edit web camera and compressing the
sequence by a Master text styles
    –Second level
captured frames with H.263 codec and transmitting
        •Third bit
the encodedlevel stream over Ethernet, subsequently
decoding –Fourththe receiving end for display, by the
            it at level
               »Fifth level
implementation of codec & analyzing its performance
& its image quality.
Video Transmission Over Ethernet Using H.263 Codec |
                                 2013

                      TOOLS USED

Platform      :    Linux (Red Hat Enterprise Linux 6)
•Click to edit Master text styles
Language :         C
    –Second level
Tools Used :level Eclipse
       •Third
Hardware–Fourth level Webcam
              :    PC,
             »Fifth level
Video Transmission Over Ethernet Using H.263 Codec |
                                2013

               WHAT IS A VIDEO?

Video consists of a time ordered sequence of
 •Click to edit Master text styles
correlated images called frames.
    –Second level
       •Third level
Live streaming of video refers to the sequence of
          –Fourth level
frames constantlylevel
              »Fifth
                      received by and presented to the
end user while being delivered by the stream provider.
Video Transmission Over Ethernet Using H.263 Codec |
                                 2013

       WHY WE NEED COMPRESSION?

One movie video without compression having:
••Clickxto edit Master text styles
   640 480 pixels per frame
   –Second level
• 30 frames per second
      •Third level
• Total 90 minutes
          –Fourth level
• Full color »Fifth level

The total quantity of data = 167.96 GB !!

How to stream this large amount of data over network?
The purpose of video compression is to cram more
   information into less space and bandwidth.
Video Transmission Over Ethernet Using H.263 Codec |
                                  2013

              VIDEO COMPRESSION


•Click to edit Master text styles
  –Second level
       •Third level
          –Fourth level
             »Fifth level
  1.   Compress             and     in one frame.

  2.   Compress the motion of           in remaining frames.
Video Transmission Over Ethernet Using H.263 Codec |
                                2013

             VIDEO COMPRESSION
• CODEC stands for enCOder/DECoder.
•Click to edit Master text styles
--convert video stream into a format that takes up less
    –Second level
   space when its stored or transmitted & then decode
      •Third level
   that format into video stream again.
          –Fourth level
            »Fifth level
• A device or a program that compresses a video signal
  is called an encoder and a device or a program that
  decompresses the video signal is called a decoder.
Video Transmission Over Ethernet Using H.263 Codec |
                                    2013

                            H.263
• H.263 is a real time compression & decompression
  algorithm for video communication at low bitrates.
•Click to edit Master text styles
   –Second level
• It gives enhanced visual quality at very low bitrates
       •Third level
  say around 28 kbps.
          –Fourth level
             »Fifth level
• It is used for Video on Demand and streaming
  services.

• It is based on using the Discrete Cosine Transform
  (DCT) and Motion Estimation and Compensation to
  remove temporal redundancies.
Video Transmission Over Ethernet Using H.263 Codec |
                                2013

                VIDEO ENCODING


•Click to edit Master text styles
  –Second level
     •Third level
        –Fourth level
           »Fifth level


              Demonstration Flow Diagram
Video Transmission Over Ethernet Using H.263 Codec |
                                 2013

                  VIDEO CAPTURE

• Video stream is captured by means of a webcam with
 •Click to of SDLMaster DirectMedia Layer).
  the help edit (Simple text styles
   –Second level
• Simple DirectMedia Layer (SDL) is a free cross-
       •Third level
  platform multi-media development API.
          –Fourth level
             »Fifth level

• The code for video capture is written using SDL
  libraries and Video For Linux 2 (V4L2) specifications.

• The standard file for accessing webcam on linux is
  “/dev/video0”.
Video Transmission Over Ethernet Using H.263 Codec |
                                  2013

                  VIDEO CAPTURE
• The web cam captures video in YUV format but for
   rendering it on screen its converted to RGB format.
• •Click to edit Master text styles
    In the application it is converted to RGB(BITMAP)
     –Second level
   format using the formulae:
         •Third level
   r = y + (1.370705 * (v-128));
            –Fourth level
   g = y - (0.698001 * (v-128)) - (0.337633 * (u-128));
                »Fifth level
   b = y + (1.732446 * (u-128));
   where,
   y          : represents Luminance.
       u (Cb): is the Chroma channel, blue component.
       v (Cr) : is the Chroma channel, red component.
Video Transmission Over Ethernet Using H.263 Codec |
                            2013

             VIDEO CAPTURE

•Click to edit Master text styles
  –Second level
     •Third level
        –Fourth level
           »Fifth level
Video Transmission Over Ethernet Using H.263 Codec |
                                2013

           VIDEO FRAME FORMATS
All versions of H.263 support five standardized picture
formats:
•Click to edit Master text styles
   –Second level
      •Third level
         –Fourth level
            »Fifth level




• The choice of frame resolution depends on
  application and available storage or transmission
  capacity.
• CIF and QCIF are popular for the videoconferencing
  applications.
Video Transmission Over Ethernet Using H.263 Codec |
                                2013

               VIDEO ENCODING

• Video coding aims at providing a compact
 •Click to edit Masterinformation in the video frames
   representation of the text styles
   by removing spatial redundancies that exist within
    –Second level
   the frames, and also temporal redundancies that exist
       •Third level
   between successive frames.
          –Fourth level
             »Fifth level

• Each picture is divided into Macroblocks (16x16)
  where each macroblock consists of 4 luminance blocks
  and 2 spatially aligned color difference blocks. Each
  block consists of 8 pixels x 8 lines of luminance or
  chrominance.
Video Transmission Over Ethernet Using H.263 Codec |
                            2013

               VIDEO FORMAT


•Click to edit Master text styles
  –Second level
     •Third level
        –Fourth level
           »Fifth level
Video Transmission Over Ethernet Using H.263 Codec |
                            2013

             VIDEO ENCODING


•Click to edit Master text styles
  –Second level
     •Third level
        –Fourth level
           »Fifth level
Video Transmission Over Ethernet Using H.263 Codec |
                                           2013

                    VIDEO ENCODING

                     16 × 16 Macroblocks
•Click to Frame n Master text styles
          edit
    –Second level
        •Third level
Frame n-1                                          Y
           –Fourth level                                   DCT, Quantization,
               »Fifth level Residual                       Zigzag, Entropy coding
                                                   Cb

                                                   Cr

Motion vector   Search range
Video Transmission Over Ethernet Using H.263 Codec |
                              2013

        ENCODING PARAMETERS

• Input sequence is YUV format video with frame rate
•Click25fps. This is the video we get directly for
   of to edit Master text styles
   webcam.
  –Second level
• Bitmap format is used for rendering the image on
      •Third level
   screen.–Fourth level
             »Fifth level
• In encoder, profile is with 8x8 transform and VLC
   (Variable Length Coding) Entropy coding method is
   used.
• Frame rate is initialized with 25fps.
• Initialization Quantization Parameter is taken as
   10.
Video Transmission Over Ethernet Using H.263 Codec |
                               2013

                PACKETIZATION
• Datagram Sockets are created at both ends for
   sending & receiving encoded video bitstream.
••Clickencoded Master text styles packets of size
   The to edit bitstream is made into
    –Second to be
   1300 byteslevel transmitted over network.
      •Third packet_struct defines the packet header.
• Structure level
         –Fourth level
            »Fifth level
#define DATA_SIZE1300
typedef struct packet_struct
{
   int seq_no;
   int packets;
   int data_len;
}packet_struct;
Video Transmission Over Ethernet Using H.263 Codec |
                              2013

              PACKETIZATION

• The packets are formed after attaching the packet
 •Click toto data.
   header edit Master text styles
    –Second level
• The packets are pushed into the queue to be
       •Third level
   transmitted over the network.
          –Fourth level
             PACKET QUEUE
              »Fifth level
Video Transmission Over Ethernet Using H.263 Codec |
                                 2013

               PACKETIZATION

  /* to count the number of packets */
 •Click to edit% data_size) styles
  if(data_length
                     Master text
     –Second level
      total_packets = data_length/data_size+1;
        •Third level
  else      –Fourth level
      total_packetslevel
               »Fifth = data_length/data_size;



• At the receiver side the incoming packets are pushed
  in the queue until the complete buffer is received.
Video Transmission Over Ethernet Using H.263 Codec |
                            2013

               PACKETIZATION


•Click to edit Master text styles
  –Second level
     •Third level
        –Fourth level
           »Fifth level
Video Transmission Over Ethernet Using H.263 Codec |
                            2013

               PACKETIZATION


•Click to edit Master text styles
  –Second level
     •Third level
        –Fourth level
           »Fifth level
Video Transmission Over Ethernet Using H.263 Codec |
                            2013

               VIDEO DECODING


•Click to edit Master text styles
  –Second level
     •Third level
        –Fourth level
           »Fifth level
Video Transmission Over Ethernet Using H.263 Codec |
                            2013

               VIDEO DECODING


•Click to edit Master text styles
  –Second level
     •Third level
        –Fourth level
           »Fifth level
Video Transmission Over Ethernet Using H.263 Codec |
                               2013

                          OUTPUT


•Click to edit Master text styles
  –Second level
     •Third level
        –Fourth level
           »Fifth level




    Captured Image                 Decompressed Image
Video Transmission Over Ethernet Using H.263 Codec |
                                 2013

             COMPRESSION RATIO
• The size of a single YUV frame (176x144) is about 50KB.
• The captured YUV frame is converted to RGB (176x144)
 •Click to edit rendered for display.
  Bitmap image Master text styles
    –Second level
• The size of a single RGB frame is about 75 KB.
       •Third level
• The size–Fourth level
           of compressed bitstream for a single frame is
  ~9.6 KB. »Fifth level

      CR = Compressed Size / Uncompressed Size
             CR= 9.6 / 49.5 = 0.19 ~ 0.2

• The image is thus compressed nearly by 5 times with
  respect to the original one.
Video Transmission Over Ethernet Using H.263 Codec |
                                           2013

             Quality Measurement & PSNR


• •Click(Peak Signal to Noise Ratio) calculation of two
  PSNR to edit Master text styles
  images, one level
     –Second    original and an altered image, describes
  how far two level
        •Third images are equal.
• A higher–Fourth level
              PSNR would normally indicate that the
               »Fifth level
  reconstruction is of higher quality.




                          . PSNR formula
MSE: Mean-Square error.
x: width of image.
y: height.
Video Transmission Over Ethernet Using H.263 Codec |
                                         2013

         Quality Measurement & PSNR

The Peak Signal to Noise Ratio (PSNR) for a QCIF Frame
  •Click to calculated at text styles
(176x144) is edit Masterdifferent frame rates say 25 fps,
    –Second level
30fps.
       •Third level
             Component
          –Fourth level                      PSNR(dB)
             »Fifth level
              PSNR_Y                            30.74
              PSNR_Cb                           29.95
              PSNR_Cr                           30.58

                            PSNR at 30 fps
Video Transmission Over Ethernet Using H.263 Codec |
                                       2013

       Quality Measurement & PSNR

          Component                        PSNR(dB)
•Click to edit Master text styles
           PSNR_Y              31.16
  –Second level
            PSNR_Cb
     •Third level                           30.47
        –Fourth level
           PSNR_Cr                          29.79
           »Fifth level

                          PSNR at 25 fps
Video Transmission Over Ethernet Using H.263 Codec |
                               2013

                       References
[1] ITU-T Draft H.263, “Video Coding for Low Bit Rate
Communication”, May 1996.
 •Click to edit Master text styles
    –Second level
[2] Michael H. Schimek, “V4L2 (Video for Linux 2)
        •Third Revision 0.24”, 2008.
Specifications:level
          –Fourth level
             »Fifth level
 [3] Sam Lantinga, “Simple DirectMedia Layer (SDL):
Revision 1.2”, Loki Entertainment Software, 2007.

[4] ITU Telecom.“ Video Codec Test Model Near- term,
Version 8 (TMN-8), H.263 Ad Hoc Group, June 1997.Eric
Weitzel, “Basic Video Compression Techniques”,
Ouroborros Publications, March 2004.
Video Transmission Over Ethernet Using H.263 Codec |
                                    2013

                       References
 [5] Ismail Erturk, Yildiray Yalmal, “A new color image quality
measure based on YUV transformation and PSNR for human vision
  •Click to edit Master text styles
system”, Department of Computer Engineering, Turgut Ozal
     –Second level
University, Turkey, 2011.
         •Third level
[6] Karel –Fourth level
             Rijkse, “H.263: Video Coding for Low-Bit-Rate
                 »Fifth level
Communication”, KPN Research, IEEE Communications Magazine,
pp.42-45, December 1996.

More Related Content

What's hot

Chapter 4 : SOUND
Chapter 4 : SOUNDChapter 4 : SOUND
Chapter 4 : SOUNDazira96
 
Video Compression Techniques
Video Compression TechniquesVideo Compression Techniques
Video Compression Techniquescnssources
 
Video Compression Basics - MPEG2
Video Compression Basics - MPEG2Video Compression Basics - MPEG2
Video Compression Basics - MPEG2VijayKumarArya
 
Introduction to H.264 Advanced Video Compression
Introduction to H.264 Advanced Video CompressionIntroduction to H.264 Advanced Video Compression
Introduction to H.264 Advanced Video CompressionIain Richardson
 
Video Compression Standards - History & Introduction
Video Compression Standards - History & IntroductionVideo Compression Standards - History & Introduction
Video Compression Standards - History & IntroductionChamp Yen
 
Lecture6 audio
Lecture6   audioLecture6   audio
Lecture6 audioMr SMAK
 
Video Compression Basics
Video Compression BasicsVideo Compression Basics
Video Compression BasicsSanjiv Malik
 
Multimedia basic video compression techniques
Multimedia basic video compression techniquesMultimedia basic video compression techniques
Multimedia basic video compression techniquesMazin Alwaaly
 
H.264 video standard
H.264 video standardH.264 video standard
H.264 video standardSajan Sahu
 
Audio compression
Audio compressionAudio compression
Audio compressionSahil Garg
 
Audio and video compression
Audio and video compressionAudio and video compression
Audio and video compressionneeraj9217
 
Chapter 6 : VIDEO
Chapter 6 : VIDEOChapter 6 : VIDEO
Chapter 6 : VIDEOazira96
 
Iain Richardson: An Introduction to Video Compression
Iain Richardson: An Introduction to Video CompressionIain Richardson: An Introduction to Video Compression
Iain Richardson: An Introduction to Video CompressionIain Richardson
 
Audio format
Audio formatAudio format
Audio formatavid
 
Multimedia tools (sound)
Multimedia tools (sound)Multimedia tools (sound)
Multimedia tools (sound)dhruv patel
 

What's hot (20)

Chapter 4 : SOUND
Chapter 4 : SOUNDChapter 4 : SOUND
Chapter 4 : SOUND
 
Video
VideoVideo
Video
 
Video Compression Techniques
Video Compression TechniquesVideo Compression Techniques
Video Compression Techniques
 
Video Compression Basics - MPEG2
Video Compression Basics - MPEG2Video Compression Basics - MPEG2
Video Compression Basics - MPEG2
 
Introduction to H.264 Advanced Video Compression
Introduction to H.264 Advanced Video CompressionIntroduction to H.264 Advanced Video Compression
Introduction to H.264 Advanced Video Compression
 
Video Compression Standards - History & Introduction
Video Compression Standards - History & IntroductionVideo Compression Standards - History & Introduction
Video Compression Standards - History & Introduction
 
Lecture6 audio
Lecture6   audioLecture6   audio
Lecture6 audio
 
SPEECH CODING
SPEECH CODINGSPEECH CODING
SPEECH CODING
 
Video Compression Basics
Video Compression BasicsVideo Compression Basics
Video Compression Basics
 
Multimedia basic video compression techniques
Multimedia basic video compression techniquesMultimedia basic video compression techniques
Multimedia basic video compression techniques
 
H.264 video standard
H.264 video standardH.264 video standard
H.264 video standard
 
Audio and Video Compression
Audio and Video CompressionAudio and Video Compression
Audio and Video Compression
 
Audio compression
Audio compressionAudio compression
Audio compression
 
Multimedia communication networks
Multimedia communication networksMultimedia communication networks
Multimedia communication networks
 
Audio and video compression
Audio and video compressionAudio and video compression
Audio and video compression
 
Chapter 6 : VIDEO
Chapter 6 : VIDEOChapter 6 : VIDEO
Chapter 6 : VIDEO
 
Iain Richardson: An Introduction to Video Compression
Iain Richardson: An Introduction to Video CompressionIain Richardson: An Introduction to Video Compression
Iain Richardson: An Introduction to Video Compression
 
Audio format
Audio formatAudio format
Audio format
 
Multimedia tools (sound)
Multimedia tools (sound)Multimedia tools (sound)
Multimedia tools (sound)
 
MPEG/Audio Compression
MPEG/Audio CompressionMPEG/Audio Compression
MPEG/Audio Compression
 

Viewers also liked

Cac chuan nen ITU
Cac chuan nen ITUCac chuan nen ITU
Cac chuan nen ITUTrung Vi
 
Cac chuan nen va ung dung truyen video tren mang internet
Cac chuan nen va ung dung truyen video tren mang internetCac chuan nen va ung dung truyen video tren mang internet
Cac chuan nen va ung dung truyen video tren mang internetNo Name
 
H264 video compression explained
H264 video compression explainedH264 video compression explained
H264 video compression explainedcnssources
 
Video Formats and Codecs 2015
Video Formats and Codecs 2015Video Formats and Codecs 2015
Video Formats and Codecs 2015Mike Cummins
 
MPEG video compression standard
MPEG video compression standardMPEG video compression standard
MPEG video compression standardanuragjagetiya
 
Codec de áudio e vídeo, transcoders e containers multimídia
Codec de áudio e vídeo, transcoders e containers multimídiaCodec de áudio e vídeo, transcoders e containers multimídia
Codec de áudio e vídeo, transcoders e containers multimídiaLeandro Curioso
 
Multimedia Conferencing system (MCS Version 5)
Multimedia Conferencing system (MCS Version 5)Multimedia Conferencing system (MCS Version 5)
Multimedia Conferencing system (MCS Version 5)Videoguy
 
Chapter2
Chapter2Chapter2
Chapter2VNG
 
DIC_video_coding_standards_07
DIC_video_coding_standards_07DIC_video_coding_standards_07
DIC_video_coding_standards_07aniruddh Tyagi
 
The H.264 Video Compression Standard
The H.264 Video Compression StandardThe H.264 Video Compression Standard
The H.264 Video Compression StandardVideoguy
 
ITU-T Study Group 11 Introduction
ITU-T Study Group 11 IntroductionITU-T Study Group 11 Introduction
ITU-T Study Group 11 IntroductionITU
 
MPEG-21 Digital Items in Research and Practice
MPEG-21 Digital Items in Research and PracticeMPEG-21 Digital Items in Research and Practice
MPEG-21 Digital Items in Research and PracticeAlpen-Adria-Universität
 
Codecs - Comparacao - G.723 e G.729
Codecs - Comparacao - G.723 e G.729Codecs - Comparacao - G.723 e G.729
Codecs - Comparacao - G.723 e G.729Leonardo Pimenta
 
Broadband Access Over HFC Networks
Broadband Access Over HFC NetworksBroadband Access Over HFC Networks
Broadband Access Over HFC NetworksXiaolin Lu
 
Voz sobre ip uma abordagem funcional
Voz sobre ip   uma abordagem funcionalVoz sobre ip   uma abordagem funcional
Voz sobre ip uma abordagem funcionalMarcelo Dieder
 

Viewers also liked (20)

Cac chuan nen ITU
Cac chuan nen ITUCac chuan nen ITU
Cac chuan nen ITU
 
Cac chuan nen va ung dung truyen video tren mang internet
Cac chuan nen va ung dung truyen video tren mang internetCac chuan nen va ung dung truyen video tren mang internet
Cac chuan nen va ung dung truyen video tren mang internet
 
H264 video compression explained
H264 video compression explainedH264 video compression explained
H264 video compression explained
 
Codecs
CodecsCodecs
Codecs
 
Chương iii
Chương iiiChương iii
Chương iii
 
MPEG4 vs H.264
MPEG4 vs H.264MPEG4 vs H.264
MPEG4 vs H.264
 
Video Formats and Codecs 2015
Video Formats and Codecs 2015Video Formats and Codecs 2015
Video Formats and Codecs 2015
 
MPEG video compression standard
MPEG video compression standardMPEG video compression standard
MPEG video compression standard
 
Flv for H.264
Flv for H.264Flv for H.264
Flv for H.264
 
Codec de áudio e vídeo, transcoders e containers multimídia
Codec de áudio e vídeo, transcoders e containers multimídiaCodec de áudio e vídeo, transcoders e containers multimídia
Codec de áudio e vídeo, transcoders e containers multimídia
 
Multimedia Conferencing system (MCS Version 5)
Multimedia Conferencing system (MCS Version 5)Multimedia Conferencing system (MCS Version 5)
Multimedia Conferencing system (MCS Version 5)
 
Chapter2
Chapter2Chapter2
Chapter2
 
DIC_video_coding_standards_07
DIC_video_coding_standards_07DIC_video_coding_standards_07
DIC_video_coding_standards_07
 
The H.264 Video Compression Standard
The H.264 Video Compression StandardThe H.264 Video Compression Standard
The H.264 Video Compression Standard
 
ITU-T Study Group 11 Introduction
ITU-T Study Group 11 IntroductionITU-T Study Group 11 Introduction
ITU-T Study Group 11 Introduction
 
MPEG-21 Digital Items in Research and Practice
MPEG-21 Digital Items in Research and PracticeMPEG-21 Digital Items in Research and Practice
MPEG-21 Digital Items in Research and Practice
 
Mpeg 7 slides
Mpeg 7 slides Mpeg 7 slides
Mpeg 7 slides
 
Codecs - Comparacao - G.723 e G.729
Codecs - Comparacao - G.723 e G.729Codecs - Comparacao - G.723 e G.729
Codecs - Comparacao - G.723 e G.729
 
Broadband Access Over HFC Networks
Broadband Access Over HFC NetworksBroadband Access Over HFC Networks
Broadband Access Over HFC Networks
 
Voz sobre ip uma abordagem funcional
Voz sobre ip   uma abordagem funcionalVoz sobre ip   uma abordagem funcional
Voz sobre ip uma abordagem funcional
 

Similar to H.263 VIDEO TRANSMISSION

Streambox Post Production Solutions
Streambox Post Production SolutionsStreambox Post Production Solutions
Streambox Post Production SolutionsAlli Gates
 
Post Production Solutions
Post Production SolutionsPost Production Solutions
Post Production SolutionsStreambox, Inc
 
mpeg4copy-120428133000-phpapp01.ppt
mpeg4copy-120428133000-phpapp01.pptmpeg4copy-120428133000-phpapp01.ppt
mpeg4copy-120428133000-phpapp01.pptPawachMetharattanara
 
Mpeg4copy 120428133000-phpapp01
Mpeg4copy 120428133000-phpapp01Mpeg4copy 120428133000-phpapp01
Mpeg4copy 120428133000-phpapp01netzwelt12345
 
Video Streaming - 4.ppt
Video Streaming - 4.pptVideo Streaming - 4.ppt
Video Streaming - 4.pptVideoguy
 
High-speed Distributed Video Transcoding for Multiple Rates ...
High-speed Distributed Video Transcoding for Multiple Rates ...High-speed Distributed Video Transcoding for Multiple Rates ...
High-speed Distributed Video Transcoding for Multiple Rates ...Videoguy
 
Industrial Technology Multimedia Video Theory Prelim Course
Industrial Technology Multimedia Video Theory Prelim CourseIndustrial Technology Multimedia Video Theory Prelim Course
Industrial Technology Multimedia Video Theory Prelim Coursejliang2145
 
Applied technology
Applied technologyApplied technology
Applied technologyErica Fressa
 
An Overview of High Efficiency Video Codec HEVC (H.265)
An Overview of High Efficiency Video Codec HEVC (H.265)An Overview of High Efficiency Video Codec HEVC (H.265)
An Overview of High Efficiency Video Codec HEVC (H.265)Varun Ravi
 
Polycom Video Communications
Polycom Video CommunicationsPolycom Video Communications
Polycom Video CommunicationsVideoguy
 
09a video compstream_intro_trd_23-nov-2005v0_2
09a video compstream_intro_trd_23-nov-2005v0_209a video compstream_intro_trd_23-nov-2005v0_2
09a video compstream_intro_trd_23-nov-2005v0_2Pptblog Pptblogcom
 
Video Conferencing PAGES
Video Conferencing PAGESVideo Conferencing PAGES
Video Conferencing PAGESVideoguy
 
Transport methods in 3DTV--A Survey
Transport methods in 3DTV--A SurveyTransport methods in 3DTV--A Survey
Transport methods in 3DTV--A SurveyKevin Tong
 
Video Transcoding Terms Explained
Video Transcoding Terms Explained Video Transcoding Terms Explained
Video Transcoding Terms Explained nerodude
 
IBM VideoCharger and Digital Library MediaBase.doc
IBM VideoCharger and Digital Library MediaBase.docIBM VideoCharger and Digital Library MediaBase.doc
IBM VideoCharger and Digital Library MediaBase.docVideoguy
 

Similar to H.263 VIDEO TRANSMISSION (20)

Streambox Post Production Solutions
Streambox Post Production SolutionsStreambox Post Production Solutions
Streambox Post Production Solutions
 
Post Production Solutions
Post Production SolutionsPost Production Solutions
Post Production Solutions
 
mpeg4copy-120428133000-phpapp01.ppt
mpeg4copy-120428133000-phpapp01.pptmpeg4copy-120428133000-phpapp01.ppt
mpeg4copy-120428133000-phpapp01.ppt
 
Mpeg4copy 120428133000-phpapp01
Mpeg4copy 120428133000-phpapp01Mpeg4copy 120428133000-phpapp01
Mpeg4copy 120428133000-phpapp01
 
Video Streaming - 4.ppt
Video Streaming - 4.pptVideo Streaming - 4.ppt
Video Streaming - 4.ppt
 
High-speed Distributed Video Transcoding for Multiple Rates ...
High-speed Distributed Video Transcoding for Multiple Rates ...High-speed Distributed Video Transcoding for Multiple Rates ...
High-speed Distributed Video Transcoding for Multiple Rates ...
 
Industrial Technology Multimedia Video Theory Prelim Course
Industrial Technology Multimedia Video Theory Prelim CourseIndustrial Technology Multimedia Video Theory Prelim Course
Industrial Technology Multimedia Video Theory Prelim Course
 
Applied technology
Applied technologyApplied technology
Applied technology
 
An Overview of High Efficiency Video Codec HEVC (H.265)
An Overview of High Efficiency Video Codec HEVC (H.265)An Overview of High Efficiency Video Codec HEVC (H.265)
An Overview of High Efficiency Video Codec HEVC (H.265)
 
Mini Project- Digital Video Editing
Mini Project- Digital Video EditingMini Project- Digital Video Editing
Mini Project- Digital Video Editing
 
Polycom
PolycomPolycom
Polycom
 
Polycom Video Communications
Polycom Video CommunicationsPolycom Video Communications
Polycom Video Communications
 
09a video compstream_intro_trd_23-nov-2005v0_2
09a video compstream_intro_trd_23-nov-2005v0_209a video compstream_intro_trd_23-nov-2005v0_2
09a video compstream_intro_trd_23-nov-2005v0_2
 
Video Conferencing PAGES
Video Conferencing PAGESVideo Conferencing PAGES
Video Conferencing PAGES
 
What’s new in MPEG?
What’s new in MPEG?What’s new in MPEG?
What’s new in MPEG?
 
Multimedia Services: Video
Multimedia Services: VideoMultimedia Services: Video
Multimedia Services: Video
 
Transport methods in 3DTV--A Survey
Transport methods in 3DTV--A SurveyTransport methods in 3DTV--A Survey
Transport methods in 3DTV--A Survey
 
Chapter 6
Chapter 6Chapter 6
Chapter 6
 
Video Transcoding Terms Explained
Video Transcoding Terms Explained Video Transcoding Terms Explained
Video Transcoding Terms Explained
 
IBM VideoCharger and Digital Library MediaBase.doc
IBM VideoCharger and Digital Library MediaBase.docIBM VideoCharger and Digital Library MediaBase.doc
IBM VideoCharger and Digital Library MediaBase.doc
 

Recently uploaded

Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 

Recently uploaded (20)

Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 

H.263 VIDEO TRANSMISSION

  • 1. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO TRANSMISSION OVER ETHERNET USING •Click to edit Master text styles –Second level H.263 CODEC •Third level –Fourth level »Fifth level Presented by: Kavisha BTBTI09124 B.Tech(I.T.)-VII sem
  • 2. Video Transmission Over Ethernet Using H.263 Codec | 2013 AIM OF THE PROJECT The project aims at capturing a real time video frame •Click to edit web camera and compressing the sequence by a Master text styles –Second level captured frames with H.263 codec and transmitting •Third bit the encodedlevel stream over Ethernet, subsequently decoding –Fourththe receiving end for display, by the it at level »Fifth level implementation of codec & analyzing its performance & its image quality.
  • 3. Video Transmission Over Ethernet Using H.263 Codec | 2013 TOOLS USED Platform : Linux (Red Hat Enterprise Linux 6) •Click to edit Master text styles Language : C –Second level Tools Used :level Eclipse •Third Hardware–Fourth level Webcam : PC, »Fifth level
  • 4. Video Transmission Over Ethernet Using H.263 Codec | 2013 WHAT IS A VIDEO? Video consists of a time ordered sequence of •Click to edit Master text styles correlated images called frames. –Second level •Third level Live streaming of video refers to the sequence of –Fourth level frames constantlylevel »Fifth received by and presented to the end user while being delivered by the stream provider.
  • 5. Video Transmission Over Ethernet Using H.263 Codec | 2013 WHY WE NEED COMPRESSION? One movie video without compression having: ••Clickxto edit Master text styles 640 480 pixels per frame –Second level • 30 frames per second •Third level • Total 90 minutes –Fourth level • Full color »Fifth level The total quantity of data = 167.96 GB !! How to stream this large amount of data over network? The purpose of video compression is to cram more information into less space and bandwidth.
  • 6. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO COMPRESSION •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level 1. Compress and in one frame. 2. Compress the motion of in remaining frames.
  • 7. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO COMPRESSION • CODEC stands for enCOder/DECoder. •Click to edit Master text styles --convert video stream into a format that takes up less –Second level space when its stored or transmitted & then decode •Third level that format into video stream again. –Fourth level »Fifth level • A device or a program that compresses a video signal is called an encoder and a device or a program that decompresses the video signal is called a decoder.
  • 8. Video Transmission Over Ethernet Using H.263 Codec | 2013 H.263 • H.263 is a real time compression & decompression algorithm for video communication at low bitrates. •Click to edit Master text styles –Second level • It gives enhanced visual quality at very low bitrates •Third level say around 28 kbps. –Fourth level »Fifth level • It is used for Video on Demand and streaming services. • It is based on using the Discrete Cosine Transform (DCT) and Motion Estimation and Compensation to remove temporal redundancies.
  • 9. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO ENCODING •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level Demonstration Flow Diagram
  • 10. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO CAPTURE • Video stream is captured by means of a webcam with •Click to of SDLMaster DirectMedia Layer). the help edit (Simple text styles –Second level • Simple DirectMedia Layer (SDL) is a free cross- •Third level platform multi-media development API. –Fourth level »Fifth level • The code for video capture is written using SDL libraries and Video For Linux 2 (V4L2) specifications. • The standard file for accessing webcam on linux is “/dev/video0”.
  • 11. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO CAPTURE • The web cam captures video in YUV format but for rendering it on screen its converted to RGB format. • •Click to edit Master text styles In the application it is converted to RGB(BITMAP) –Second level format using the formulae: •Third level r = y + (1.370705 * (v-128)); –Fourth level g = y - (0.698001 * (v-128)) - (0.337633 * (u-128)); »Fifth level b = y + (1.732446 * (u-128)); where, y : represents Luminance. u (Cb): is the Chroma channel, blue component. v (Cr) : is the Chroma channel, red component.
  • 12. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO CAPTURE •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level
  • 13. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO FRAME FORMATS All versions of H.263 support five standardized picture formats: •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level • The choice of frame resolution depends on application and available storage or transmission capacity. • CIF and QCIF are popular for the videoconferencing applications.
  • 14. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO ENCODING • Video coding aims at providing a compact •Click to edit Masterinformation in the video frames representation of the text styles by removing spatial redundancies that exist within –Second level the frames, and also temporal redundancies that exist •Third level between successive frames. –Fourth level »Fifth level • Each picture is divided into Macroblocks (16x16) where each macroblock consists of 4 luminance blocks and 2 spatially aligned color difference blocks. Each block consists of 8 pixels x 8 lines of luminance or chrominance.
  • 15. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO FORMAT •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level
  • 16. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO ENCODING •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level
  • 17. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO ENCODING 16 × 16 Macroblocks •Click to Frame n Master text styles edit –Second level •Third level Frame n-1 Y –Fourth level DCT, Quantization, »Fifth level Residual Zigzag, Entropy coding Cb Cr Motion vector Search range
  • 18. Video Transmission Over Ethernet Using H.263 Codec | 2013 ENCODING PARAMETERS • Input sequence is YUV format video with frame rate •Click25fps. This is the video we get directly for of to edit Master text styles webcam. –Second level • Bitmap format is used for rendering the image on •Third level screen.–Fourth level »Fifth level • In encoder, profile is with 8x8 transform and VLC (Variable Length Coding) Entropy coding method is used. • Frame rate is initialized with 25fps. • Initialization Quantization Parameter is taken as 10.
  • 19. Video Transmission Over Ethernet Using H.263 Codec | 2013 PACKETIZATION • Datagram Sockets are created at both ends for sending & receiving encoded video bitstream. ••Clickencoded Master text styles packets of size The to edit bitstream is made into –Second to be 1300 byteslevel transmitted over network. •Third packet_struct defines the packet header. • Structure level –Fourth level »Fifth level #define DATA_SIZE1300 typedef struct packet_struct { int seq_no; int packets; int data_len; }packet_struct;
  • 20. Video Transmission Over Ethernet Using H.263 Codec | 2013 PACKETIZATION • The packets are formed after attaching the packet •Click toto data. header edit Master text styles –Second level • The packets are pushed into the queue to be •Third level transmitted over the network. –Fourth level PACKET QUEUE »Fifth level
  • 21. Video Transmission Over Ethernet Using H.263 Codec | 2013 PACKETIZATION /* to count the number of packets */ •Click to edit% data_size) styles if(data_length Master text –Second level total_packets = data_length/data_size+1; •Third level else –Fourth level total_packetslevel »Fifth = data_length/data_size; • At the receiver side the incoming packets are pushed in the queue until the complete buffer is received.
  • 22. Video Transmission Over Ethernet Using H.263 Codec | 2013 PACKETIZATION •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level
  • 23. Video Transmission Over Ethernet Using H.263 Codec | 2013 PACKETIZATION •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level
  • 24. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO DECODING •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level
  • 25. Video Transmission Over Ethernet Using H.263 Codec | 2013 VIDEO DECODING •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level
  • 26. Video Transmission Over Ethernet Using H.263 Codec | 2013 OUTPUT •Click to edit Master text styles –Second level •Third level –Fourth level »Fifth level Captured Image Decompressed Image
  • 27. Video Transmission Over Ethernet Using H.263 Codec | 2013 COMPRESSION RATIO • The size of a single YUV frame (176x144) is about 50KB. • The captured YUV frame is converted to RGB (176x144) •Click to edit rendered for display. Bitmap image Master text styles –Second level • The size of a single RGB frame is about 75 KB. •Third level • The size–Fourth level of compressed bitstream for a single frame is ~9.6 KB. »Fifth level CR = Compressed Size / Uncompressed Size CR= 9.6 / 49.5 = 0.19 ~ 0.2 • The image is thus compressed nearly by 5 times with respect to the original one.
  • 28. Video Transmission Over Ethernet Using H.263 Codec | 2013 Quality Measurement & PSNR • •Click(Peak Signal to Noise Ratio) calculation of two PSNR to edit Master text styles images, one level –Second original and an altered image, describes how far two level •Third images are equal. • A higher–Fourth level PSNR would normally indicate that the »Fifth level reconstruction is of higher quality. . PSNR formula MSE: Mean-Square error. x: width of image. y: height.
  • 29. Video Transmission Over Ethernet Using H.263 Codec | 2013 Quality Measurement & PSNR The Peak Signal to Noise Ratio (PSNR) for a QCIF Frame •Click to calculated at text styles (176x144) is edit Masterdifferent frame rates say 25 fps, –Second level 30fps. •Third level Component –Fourth level PSNR(dB) »Fifth level PSNR_Y 30.74 PSNR_Cb 29.95 PSNR_Cr 30.58 PSNR at 30 fps
  • 30. Video Transmission Over Ethernet Using H.263 Codec | 2013 Quality Measurement & PSNR Component PSNR(dB) •Click to edit Master text styles PSNR_Y 31.16 –Second level PSNR_Cb •Third level 30.47 –Fourth level PSNR_Cr 29.79 »Fifth level PSNR at 25 fps
  • 31. Video Transmission Over Ethernet Using H.263 Codec | 2013 References [1] ITU-T Draft H.263, “Video Coding for Low Bit Rate Communication”, May 1996. •Click to edit Master text styles –Second level [2] Michael H. Schimek, “V4L2 (Video for Linux 2) •Third Revision 0.24”, 2008. Specifications:level –Fourth level »Fifth level [3] Sam Lantinga, “Simple DirectMedia Layer (SDL): Revision 1.2”, Loki Entertainment Software, 2007. [4] ITU Telecom.“ Video Codec Test Model Near- term, Version 8 (TMN-8), H.263 Ad Hoc Group, June 1997.Eric Weitzel, “Basic Video Compression Techniques”, Ouroborros Publications, March 2004.
  • 32. Video Transmission Over Ethernet Using H.263 Codec | 2013 References [5] Ismail Erturk, Yildiray Yalmal, “A new color image quality measure based on YUV transformation and PSNR for human vision •Click to edit Master text styles system”, Department of Computer Engineering, Turgut Ozal –Second level University, Turkey, 2011. •Third level [6] Karel –Fourth level Rijkse, “H.263: Video Coding for Low-Bit-Rate »Fifth level Communication”, KPN Research, IEEE Communications Magazine, pp.42-45, December 1996.

Editor's Notes

  1. Video Transmission Over Ethernet Using H.263 Codec
  2. Video Transmission Over Ethernet Using H.263 Codec
  3. Video Transmission Over Ethernet Using H.263 Codec
  4. Video Transmission Over Ethernet Using H.263 Codec
  5. Video Transmission Over Ethernet Using H.263 Codec
  6. Video Transmission Over Ethernet Using H.263 Codec
  7. Video Transmission Over Ethernet Using H.263 Codec
  8. Video Transmission Over Ethernet Using H.263 Codec
  9. Video Transmission Over Ethernet Using H.263 Codec
  10. Video Transmission Over Ethernet Using H.263 Codec
  11. Video Transmission Over Ethernet Using H.263 Codec
  12. Video Transmission Over Ethernet Using H.263 Codec
  13. Video Transmission Over Ethernet Using H.263 Codec
  14. Video Transmission Over Ethernet Using H.263 Codec
  15. Video Transmission Over Ethernet Using H.263 Codec
  16. Video Transmission Over Ethernet Using H.263 Codec
  17. Video Transmission Over Ethernet Using H.263 Codec
  18. Video Transmission Over Ethernet Using H.263 Codec
  19. Video Transmission Over Ethernet Using H.263 Codec
  20. Video Transmission Over Ethernet Using H.263 Codec