I'm trying to add thumbnail to a mkv video with the following command: ffmpeg -y -i video.mkv -i image.jpg -map 1 -map 0 -c copy -disposition:0 attached_pic out.mkv. However this command replaces all frames in the video with that image and no sound. Am I doing something wrong. I'm using latest version of ffmpeg.
Problem in setting video thumbnail with ffmpeg
887 Views Asked by Simran Marok At
1
There are 1 best solutions below
Related Questions in FFMPEG
- Extract bytes of specific stream from mpegts file using ffmpeg
- running ffmpeg command in java Process hangs in waitFor()
- ffmpeg stream rtsp to mpegts
- Android receive RTP/UDP audio stream from VLC/ffmpeg
- error - /usr/bin/ld: cannot find -lavutil in ubuntu 15.04
- webcam displayed on LAN not to the internet
- ffserver - invalid codec name libvpx
- ffmpeg to extract a video one frame per second?
- how to extract audio from video in c using ffmpeg library?
- How to extract audio form video using ffmpeg in C++?
- ffmpeg to validate video format is genune and store error into string
- FFMPEG concat videos
- Why so many partial content requests in Firefox when streaming mp4 video on Apache?
- FFServer streaming H.264 from Logitech C920 without re-encoding
- Fragment shader does not show any colour when compiled with vs2013
Related Questions in YTDL
- youtube-dl: Failed to parse JSON
- youtube_dl error: Failed to parse JSON (caused by JSONDecodeError('Expecting value: line 1 column 1 (char 0)')) disocrd error
- ytdl-core issue getInfo giving me 'Invalid or unexpected token' error
- Download youtube video as stream Readable object
- How to hide the output of yt-dl in CMD? python
- "Cannot read property 'url' of undefined" even though it's already defined
- YTDL-CORE discordjs Error : Unable to retrieve video metadata
- Wrong in promises, program opens and instantly closes
- how can i get the filesize of each resolution without downloading it first ytdl-core
- having trouble getting my bot to join voice channel and play music
- Problem in setting video thumbnail with ffmpeg
- No video id found ytdl
- error: "UnhandledPromiseRejectionWarning: Error: No video id found"
- Getting the current timestamp for a video with a Discord.js music bot?
- Discord bot not joining the voice channel i'm in
Related Questions in YT-DLP
- Python yt-dlp doesn't find the video from YouTube that definitely exists
- How to extract audio and save it to a file in yt-dlp?
- yt-dlp is downloading videos from a playlist as .webm files instead of .mp3 files
- Is there a problem with yt-dlp when it is used with Linux Mint 20.3 Una?
- How to embed chapters and metadata on the embedding YT-DLP script?
- How to download a yt playlist with playlist name as folder name?
- A problem with sound reproduction in the voice channel
- Problem playing downloaded multiple sections of a youtube video with a single command with yt-dlp on android
- Schema/DTD for Youtube json3 transcript format
- custom tkinter progress bar not working for "indeterminate" mode
- Problem in setting video thumbnail with ffmpeg
- Is there any command in specific to record a part of a livestream that still is in transmission?
- How to Make Python Module yt-dlp ignore Private Videos When Downloading A Playlist
- yt-dl command to download audio files - in a python script
- Getting Youtube Audio Stream with yt_dlp, NOT using pafy
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?
What you tried works for MP4 file and not for MKV file. Try this: