Quick question

  • Thread starter Thread starter BAMA
  • Start date Start date
B

BAMA

New member
I know this might not have anything to do with this thread but. I was just trying to find out how do you load up a track and place it ou youtube as a video. Like for ex If I did a track called "LETS GET MONEY" and I take a jpeg pic of money and load it up. How do I place my track while the pic of the money is showing. my friend told me use window media but he didnt give me any directions on what to do next?:confused:
 
ffmpeg -f image2 -loop_input -r 30000/1001 -i image.png -i audio.wav -s 320x240 -aspect 4:3 -shortest -r 30000/1001 -y output.mpg

Roughly anyway. I'm not sure if you'd need to do just video, then merge that with the audio in a second pass or if my attempt above to merge the two in one step would work. -shortest should stop the process when it reaches the end of the shortest track (hoping that -loop_input makes the picture/video the longer track). And various output formats not shown in the above example. ffmpeg defaults to 25fps and mpeg1 video. Youtube I think desires CD quality audio and all that implies. Expressed as probably -ac 2 -ar 44100 in ffmpeg lingo. And probably -acodec libmp3lame and -ab 192k. So many different options, and ffmpeg is very order dependent, so it might be easier to use some sort of front end. Lives ? (assuming linux)
 
Back
Top