ffmpeg command to convert jpg and mp3 to a video [closed] - ffmpeg

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I want to convert a song and jpg file into a mpg video. What is the exact command for that.
I tried this one Add an image to mp3, and convert it to a video file using ffmpeg, but couldnt understand what is loop input and things.
Help will be appreciated.
Parminder

Related

is possible to "hash" a ssim from original image so i dont have to read the image again? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 months ago.
Improve this question
Currently I started working on a personal project where you will constantly receive images, similar or not. Every new image received do I need to loop through absolutely every other image already saved to compare ssim?
The answer is No you can't recover the image from SSIM and Yes you'd have to loop over all images for comparison.
However you may look at image compression to have faster evaluation of the SSIM.
Some example images would be welcome for a better answer.

Using ffmpeg how can I convert dv pal format to mp4 without interlacing issues? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I have imported PAL DV. When trying this
ffmpeg -i my_video.dv output.mp4
I get interlacing issues.. So I need to deinterlace the input somehow...
This did the trick!
ffmpeg -i my_video.dv -vf yadif output.mp4

Decode aac audio file with ffmpeg command? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
how to decode the AAC format audio file(i.e. 1.aac) into pcm or wav file with ffmpeg command?
Question fit for superuser.com.
Here is your answer
ffmpeg -i input.aac out.wav

How to print onto screen entire file? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
How to print onto screen (echo) entire file (all file contents) from given system path on Windows and on Linux?
Use cat in Unix and type in windows.

split video and keep it running [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
any one can give me a hind how to split video (and can be played in separeat parts) ,by split here I mean to split it to 4 parts for example and each part can be running (paying)
You could try using ffmpeg with the -ss option to seek to a point in the video and then use -vframes or -t to extract a specific number of frames or seconds, respectively.
See http://ffmpeg.org/ffmpeg-doc.html

Resources