Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Encoder

Encoder

Scheduled Pinned Locked Moved C / C++ / MFC
c++helpquestion
9 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    celllllllll
    wrote on last edited by
    #1

    Hi, I would really appreciate if anyone could help me with a project in which I want to write code for encoder. Can you guys help that what do I need for it? I will be very much helped. Thanks

    C++Prog

    C C E S 4 Replies Last reply
    0
    • C celllllllll

      Hi, I would really appreciate if anyone could help me with a project in which I want to write code for encoder. Can you guys help that what do I need for it? I will be very much helped. Thanks

      C++Prog

      C Offline
      C Offline
      celllllllll
      wrote on last edited by
      #2

      I want to know what do I need for starting up this project. If you guys can give me your ideas, all will be very much appreciated. Thanks again

      C++Prog

      1 Reply Last reply
      0
      • C celllllllll

        Hi, I would really appreciate if anyone could help me with a project in which I want to write code for encoder. Can you guys help that what do I need for it? I will be very much helped. Thanks

        C++Prog

        C Offline
        C Offline
        cp9876
        wrote on last edited by
        #3

        SHJDU UYSJD DIFGD KJDDP DNDIF DDEEK JUFUD UDIKS UUDEP UIMHQ SUJDO SUBAF


        Peter "Until the invention of the computer, the machine gun was the device that enabled humans to make the most mistakes in the smallest amount of time."

        1 Reply Last reply
        0
        • C celllllllll

          Hi, I would really appreciate if anyone could help me with a project in which I want to write code for encoder. Can you guys help that what do I need for it? I will be very much helped. Thanks

          C++Prog

          E Offline
          E Offline
          El Corazon
          wrote on last edited by
          #4

          celllllllll wrote:

          Can you guys help that what do I need for it?

          start with IPO: Input, Process, Output. what do you want to encode? how do you want to encode it? what purpose do you want the output to fulfill? encoding is changing one thing to another: compression is a form of encoding to save space. ecryption is a form of encoding to hide the output from undesirables. serialization is a form of encoding to transfer a binary object as text etc. So simply asking for help in encoding, help me now, please, won't get you far. Start by defining the problem, define it well. Once you can define it, you start breaking it down to its parts. IPO is an archaic method, but it still works especially for new programmers. Break it down into sub groups of functional parts, each with an IPO definition, each does only their small part. Put it all together, and you have a program. BUT, first you have to start by defining it.

          _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

          C 1 Reply Last reply
          0
          • E El Corazon

            celllllllll wrote:

            Can you guys help that what do I need for it?

            start with IPO: Input, Process, Output. what do you want to encode? how do you want to encode it? what purpose do you want the output to fulfill? encoding is changing one thing to another: compression is a form of encoding to save space. ecryption is a form of encoding to hide the output from undesirables. serialization is a form of encoding to transfer a binary object as text etc. So simply asking for help in encoding, help me now, please, won't get you far. Start by defining the problem, define it well. Once you can define it, you start breaking it down to its parts. IPO is an archaic method, but it still works especially for new programmers. Break it down into sub groups of functional parts, each with an IPO definition, each does only their small part. Put it all together, and you have a program. BUT, first you have to start by defining it.

            _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

            C Offline
            C Offline
            celllllllll
            wrote on last edited by
            #5

            Thanks for such an inspirational answer. I really appreciate it. I want to encode a video using Visual Studio C++. I want to get a compressed video as an output. How do I start breaking it in parts? Do you mean should I start writing what I need to input, then process and then finally output? I really appreciate the help.Thanks very much.

            C++Prog

            E 1 Reply Last reply
            0
            • C celllllllll

              Hi, I would really appreciate if anyone could help me with a project in which I want to write code for encoder. Can you guys help that what do I need for it? I will be very much helped. Thanks

              C++Prog

              S Offline
              S Offline
              Stephen Hewitt
              wrote on last edited by
              #6

              Your question is a little vague; an encoder of what?

              Steve

              C 1 Reply Last reply
              0
              • S Stephen Hewitt

                Your question is a little vague; an encoder of what?

                Steve

                C Offline
                C Offline
                celllllllll
                wrote on last edited by
                #7

                I want to encode a video file.

                C++Prog

                M 1 Reply Last reply
                0
                • C celllllllll

                  Thanks for such an inspirational answer. I really appreciate it. I want to encode a video using Visual Studio C++. I want to get a compressed video as an output. How do I start breaking it in parts? Do you mean should I start writing what I need to input, then process and then finally output? I really appreciate the help.Thanks very much.

                  C++Prog

                  E Offline
                  E Offline
                  El Corazon
                  wrote on last edited by
                  #8

                  celllllllll wrote:

                  How do I start breaking it in parts? Do you mean should I start writing what I need to input, then process and then finally output?

                  have you got the video to input? if not, you start there, how do you get the video. Once you have everything needed to get the video into the design, then you need to compress it. Do you want industry standard compression? do you want to use 3rd party libraries to do the compression for you? do you want to write your own compression? Is it for archival? Is it for streaming videos across the network? do you need high compression over low-latency? The questions just keep adding up. You answer them, figure out what you need to do that and move on to the next. Are you writing the display? DirectX? OpenGL? (someone else here is doing video to texture -- you two might help each other). there are libraries to do video compression, but that may not be what you need.

                  _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

                  1 Reply Last reply
                  0
                  • C celllllllll

                    I want to encode a video file.

                    C++Prog

                    M Offline
                    M Offline
                    Maximilien
                    wrote on last edited by
                    #9

                    encode a video to do what ?


                    Maximilien Lincourt Your Head A Splode - Strong Bad

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups