1
I am trying to merge a thumbnail-size (104x80) image into an audio file (M4A). I want it to be played in JW Player, but it doesn't seem to support thumbnails. I have tried it in VLC Player, but the image size gets blurred and upscaled.
I am using the following command:
ffmpeg -i image8.jpg -i file.m4a -acodec copy test.mp4
The output of the command:

How can I merge an image into the audio file so that it works in JW Player and isn't upscaled?
2It looks like you are able to embed the image in the audio file just fine, but it's the apps you are using that read the audio that don't support it (properly)? Which images are you wanting to show in your question? You seem to have 4, but only 2 URLs are showing (and the first is incorrectly formatted). – MrWhite – 2013-04-12T08:41:09.323
1The full commandline output would be preferred... you can dump it to a plaintext file with
ffmpeg -i image8.jpg -i file.m4a -acodec copy test.mp4 2> file.txt, and then paste it here – evilsoup – 2013-04-12T09:22:19.207i am trying merge jpeg format image (104x80) in audio file,but image doesn't getting into merge in jw player..when am using vlc player,image gets blurred and upscaled ...can u please tell me how to merge small size image in audio file... – vijay – 2013-04-12T09:26:26.357