View Single Post
  #36   Report Post  
Posted to rec.audio.pro
Mat Nieuwenhoven Mat Nieuwenhoven is offline
external usenet poster
 
Posts: 46
Default Batch Windows Utility for Changing Audio Tempo, Music Key, and Playback Rate

On Thu, 20 Dec 2018 01:21:23 -0800 (PST),
wrote:

On Thursday, 20 December 2018 11:52:31 UTC+5, Mat Nieuwenhoven wrote:
On Wed, 19 Dec 2018 13:35:59 -0800 (PST),

wrote:

snip
Yes.. that wud not have been a problem if i had that cassette player but as posted earlier someone sent me those recordings from other country... Now i have adjusted speed problems.. by converting them to mp3 and via speed change software ..told by you people here (thanx again n again) Now i want to upload all those mp3 files to youtube in the form of video where there will be just one pic on-screen and the audio from that mp3 shall be playing in its background. For that i need a software which can convert all those mp3 to mp4 as batch while only one still pic should be displayed.. You can call it a slide show of one pic :-) which software plz?

you need video editing software to create a video even if it is a still pic.

windows movie maker is the usual.

Not sure about a batch mode though.

mark

Thanx.. i checked WMM .. unfortunately it has no batch mode :-(
FREEMAKE VIDEO does have a batch mode but it asks to provide pic for every mp3 separately.. means for 600 files you have to input 600 pics.. while i just want to use only 1 still pic for all 600 files. Hope i conveyed.


What about this:
Use a batch file to generate 600 copies of the same picture under
different names (just a number attached for instance).. Would that
allow Freemake to work in batch mode?

Mat Nieuwenhoven


Thanx.. freemake does allow same/different pic but the thing is for every mp3 you have to goto edit mode then give path of pic and then select pic .. means around 1800 clicks you have to go through for 600 mp3 files..very tuf as i got thousands of more mp3 coming up too next month.


ffmpeg should be able to do what you want. If you search for
"ffmpeg video from mp3 and jpeg" you get multiple
good
hits,
like:

https://lists.ffmpeg.org/pipermail/f...ne/007120.html

https://superuser.com/questions/1041...e-one-audio-fi


le-to-make-one-video-using-ffmpeg

https://stackoverflow.com/questions/...-video-with-st


atic-image-ffmpeg-libav-bash

This last one has a simple example (from the ffmpeg wiki apparently):
ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:a copy -c:v libx264
-shortest out.mp4

Mat Nieuwenhoven