What is the main difference? Suppose i have a video in the format .flv and i want to convert it to format .h264 using avcodec.dll. Will I be encoding or decoding it? I am really confused. Any clear answer will be appreciated.
Main difference between encoding and decoding of a video file
5.7k Views Asked by nightWatcher At
2
There are 2 best solutions below
0
Björn Pollex
On
You will probably be transcoding it.
If not, then you will first decode it, and than encode it again.
Related Questions in VISUAL-C++
- I want to be able to use 4 different variables in a select statement in c ++
- llvm headers do not compile under msvc 2013
- VC++ .net: Functionality from managed DLL is not exported
- Add a picture to Picture Control in a dialog box (error RC2108: expected numerical dialog constant)
- Within a .vcxproj file what are the possible values for the <ConfigurationType> and what do those values mean?
- converting string to a double in visual c++ by parsing
- How to integrate opencv C++ codings with windows application?
- Create string with ESC characters
- What does the thing between "class" and the class name in VC++ mean?
- How to assign (Root)Folder ID in C++? Wherein, those files and folder under it would have the same ID as the RootFolder
- How to convert CString to long? VC++
- How to initialize a String^ *
- How to correctly implement methods of a class returning "this" in Managed C++?
- Non-managed referenced code strangely, "magically" changes its state for no reason when wrapped in managed
- Windows application using libusb: runtime error due to mutex lock
Related Questions in VIDEO-ENCODING
- When converting mkv to mp4, the audio is lost
- Record and play h.264 video in memory using Jcodec
- How to save a video to file using sampleBuffer, captureOutput in Swift 3?
- Scalable video encoding?
- x264: Encoded videos need lots of CPU to play
- API's for Android 4.4 screen recording?
- DVB live streaming to android without encoding
- How to find the frame type(i frame,p frame, b frame)?
- IOS 7 base64 video encoding
- Encoding yuv frames to video file in java
- ffmpeg concat with video using image background
- Can ffmpeg extract the motion vectors from VP9 videos?
- Why do we need to pause the thread after appendPixelBuffer:withPresentationTime:?
- Encoding frames to video with ffmpeg
- Why MP4 generated through FFmpeg API can't be played in the Windows Media Player?
Related Questions in H.264
- Realtime/zero-latency video stream: what codec parameters to use?
- Including SPS and PPS in a raw h264 track
- How to get width and height from the H264 SPS using ffmpeg
- VLC in Raspberry Pi won't play h264 video file
- Converting mkv to h264 FFmpeg
- Convert JPEGs to H264 and stream to my server
- H.264 decoding error log from RTSP stream
- How to extract key-frames closest to given frame numbers from H264 video with ffmpeg
- Configure MediaCodec with the proper MediaFormat from a raw H.264 byte buffer
- Record and play h.264 video in memory using Jcodec
- forcing VLC to play h264 video file
- Decoding a h264 (High) stream with OpenCV's ffmpeg on Ubuntu
- What video encoder gives best performance on an Android device for given quality?
- Demux H264 from (already recorded) raw RTSP stream on HDD
- Color Banding Playing Live Raw H.264 Stream In Android
Related Questions in DECODING
- What is the impact of different JPEG's type on different JPEG decoding sub-process.?
- NODE.JS - How to decode Base64 encoded string to video file?
- encode & decode URL params in rails api pagination
- Encoding to base64
- scraping chinese characters python
- C# WebSocket decoding
- How to decode unknown encoded string in python, tried chardet?
- Android Media Codec: How long does it take to decode and display one video frame
- C++ decode e-mail's subject
- Efficient algorithm(s) to compress strings containing windows file paths
- How to restore the ACEDrawingLabelView object after encoding and decoding in ios?
- How to decode a base64 encoded certificate
- Chinese texts in HTML all become funny letters such as '针'
- Error loading SVG - ERR_CONTENT_DECODING_FAILED
- Media Extractor: Decoder gives wrong Width on Android 4.2
Related Questions in LIBAVCODEC
- error - /usr/bin/ld: cannot find -lavutil in ubuntu 15.04
- JavaFX Media Player crashes when opening MP3s even though libav 53 libraries are present?
- undefined reference to 'av_rdft_init(int, RDFTransformType)'
- FFMPEG - AVFrame to per channel array conversion
- How to extract key-frames closest to given frame numbers from H264 video with ffmpeg
- FFmpeg - MJPEG decoding gives inconsistent values
- Unmet dependency when installing vlc on ubuntu 14.04
- Sending metadata per frame with libavcodec
- Compiling FFMPEG in Visual Studio 2013
- Android Encode h264 using libavcodec for ARGB
- How to load an image with libavcodec functions of ffmpeg?
- OpenCV's VideoCapture::open Video Source Dialog
- Convert from NV12 to RGB/YUV420P using libswscale
- using ffmpeg libavcodec encode video stream to H264, why duration is zero
- Using FFmpeg within a python application: ffmpeg tool or libav* libraries?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
there're two types of video formats - uncompressed (raw video formats like RGB or YUV or whatever else) and compressed (like H.264 or WebM etc.). typically there's no direct transcoding from one compressed format to another, so you need to use common denominator - raw video (not compressed). You have to decode (decompress) it and then encode (compress) to another format.
for analogy - think you have
ziparchive and you need to make itrararchive - first you'llunzipyour file(s) and then compress byrar