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
888 views Asked by Simran Marok At
1
There are 1 answers
Related Questions in FFMPEG
- I need an azure product that executes my intensive ffmpeg command then dies, and i only get charged for the delta. Any Tips?
- Converting MP3/MP4 to WAV in the Frontend Using ffmpegwasm with Next.js Results in Module Not Found Error
- Get remote MKV file metadata using nodejs
- After using ffmpeg to remove some streams in mkv file, it takes much longer to open the media file in potplayer in Windows
- Implementing trim and fade filters with ffmpeg - MP3
- Merge Azure mp4 blobs via API (Preferred Azure)
- Overlaying frame number with ffmpeg
- Merge (concat) all video file present in '43. DP (Part1)' and put it into '43. DP (Part1)' and give name merged (concat) file to folder name
- I get an error when republishing the image I shot with ros2 run ffmpeg
- libav audio latency / cannot set audio_buffer_size
- An error occurred after encoding with h264_nvenc
- ffmpeg - excerpt from a large video file, preserving its additional streams
- Babel Loader error when using ffmpeg.wasm in CRA react app
- define the input FPS of a stream using ffmpeg-python
- NodeJS stream MKV as MP4 video
Related Questions in YTDL
- PyTube yt.download() function doesnt work when opening .py file directly
- Using ytdl-core on the Front-End with ReactJS
- ytdl-core and play-dl interruption problem
- node-fluent-ffmpeg conversion to mp3 does not fire any "end" or "finish" event
- error video using youtube-dl; "Unable to extract uploader id"
- Headers in nextjs how to edit them and return them in route handlers
- Download video from youtube using ytdl audio isn't working
- Unable to download video only file using ytdl-core chooseFormat options in Node.js
- Typescript DiscordJS bot audio stops working after a few seconds of playing
- Download youtube video as stream Readable object
- How do I successfully get audio-only streams from youtube using ytdl-core on google firebase functions
- ytdl-core issue getInfo giving me 'Invalid or unexpected token' error
- ytdl-core stopped downloading youtube videos - I get invalid or unexpected token
- Issue with Downloading YouTube Videos using ytdl-core in Node.js API from React App
- Problem settingup a play command for my discord bot (music) ['Error: FFmpeg/avconv not found!']
Related Questions in YT-DLP
- Error opening input files: Invalid data found when processing input
- can i use (node-ytdl-core) package on vuejs 3?
- Install yt-dlp in node:16.3.0-alpine base image
- Discord.py / youtube_dlp Audio streaming bot
- Shard ID None voice heartbeat blocked for more than 10 seconds
- error video using youtube-dl; "Unable to extract uploader id"
- M3U8 Downloading with YT-DLP by passing data as a parameter
- How to download youtube autogenerated captions without yt-dlp?
- Music ends prematurely using yt_dlp for a discord bot in discord.py
- custom tkinter progress bar not working for "indeterminate" mode
- A problem with sound reproduction in the voice channel
- How to embed chapters and metadata on the embedding YT-DLP script?
- Schema/DTD for Youtube json3 transcript format
- Problem playing downloaded multiple sections of a youtube video with a single command with yt-dlp on android
- How to download a yt playlist with playlist name as folder name?
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?
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)
What you tried works for MP4 file and not for MKV file. Try this: