VO-BB - 20 YEARS OLD! Forum Index VO-BB - 20 YEARS OLD!
Established November 10, 2004
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

file name conversion

 
Post new topic   Reply to topic    VO-BB - 20 YEARS OLD! Forum Index -> Chat
View previous topic :: View next topic  
Author Message
Ulf Bjorklund
Contributor II


Joined: 19 Sep 2010
Posts: 62
Location: Portland, OR

PostPosted: Fri May 02, 2014 3:16 pm    Post subject: file name conversion Reply with quote

I have a long e-learning job to do. I am using Word2Wav for the first time which I think is going to work very well. But - there are 250+ sound files for this job, and the client wants "SV" added to the end of each one. Hoping not to have to do it manually. Emailed Word2Wav and they suggest converting file names before importing, or using a utility to convert after.

Can't see how to do it in Word first - anybody got a utility they could recommend? I did do an archive search first. Didn't find it.

Thanks
_________________
Ulf Bjorklund
www.ulfvo.com

Find out who you are and be that.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Lee Gordon
A Zillion


Joined: 25 Jul 2008
Posts: 6864
Location: West Hartford, CT

PostPosted: Fri May 02, 2014 6:16 pm    Post subject: Reply with quote

I've used a program called Batch File Renamer. The one I got, version 2.1, was a free program from a website that no longer exists (cerebralsynergy.com). The current version seems to be 2.4, from a different website (alcologic.com) and is apparently a paid program, although I don't know how much.
_________________
Lee Gordon, O.A.V.
Voice President of the United States
www.leegordonproductions.com
Twitter: @LeeGordonVoice
Back to top
View user's profile Send private message Visit poster's website
Ulf Bjorklund
Contributor II


Joined: 19 Sep 2010
Posts: 62
Location: Portland, OR

PostPosted: Fri May 02, 2014 7:01 pm    Post subject: Reply with quote

Thanks! I actually found a freeware called "Replace Genius" - either a slight misnomer or just a case of "don't-have-time-to-read-no-stinking-user guide". It does a pretty good job and did save me time. You can even specify at what character you want the insert, so it makes it very flexible. As it is truly a freeware, I'd recommend you'd give it a whirl if the need arises.
_________________
Ulf Bjorklund
www.ulfvo.com

Find out who you are and be that.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Scott Pollak
The Gates of Troy


Joined: 01 Jun 2010
Posts: 1903
Location: Looking out at the San Juan mountains

PostPosted: Fri May 02, 2014 7:25 pm    Post subject: Reply with quote

And, just for the record, Word2Wav - and its creator Herve - rocks.

I use it several times a week.
_________________
Scott R. Pollak
Clients include Pandora, NPR Atlanta, Wells Fargo, Cisco, Humana, Publix, UPS, AT&T, HP, Xerox and more.

www.voicebyscott.com
Back to top
View user's profile Send private message Visit poster's website
chrisvoco
Club 300


Joined: 14 Mar 2014
Posts: 380
Location: Local

PostPosted: Fri May 02, 2014 7:39 pm    Post subject: Reply with quote

If you're using Windows, this has been a one-liner since... well, forever. Open a command prompt, cd to the path with the files to rename, and say this:

Code:
for /f "tokens=1* delims=." %F in ('dir /b *.mp3') do rename "%F.mp3" "%F_SV.mp3"


%F winds up with the name of the file, minus the extension - then, we put in _SV (or whatever you want; change as desired).

Using *nix - and I assume this should work for Mac OS folks - open a console and say:

Code:
rename .mp3 _SV.mp3 *.mp3


The underscore isn't required in either case - just pleasing to my eye.
_________________
Finally, Ford stops starting to say things and starts.
Back to top
View user's profile Send private message Send e-mail
Kim Fuller
DC


Joined: 29 Jan 2011
Posts: 641
Location: Portlandish, Oregon

PostPosted: Sat May 03, 2014 7:26 am    Post subject: Reply with quote

Hi Chrisvoco - this is Kim, the other Bjorklund Smile Ulf is currently buried in the sound booth, having converted the file names before importing to Word2Wav.

Using the command to change the file names would be so much faster - so while he is doing the e-learning, I'm trying to get this to work.

I would love to figure out how to use this command for future reference. I have navigated to the directory using the command prompt, and I have changed the .mp3 reference to .wav (as that is what he'll be sending to the client rather than .mp3)...but I must be missing something after that - maybe an extra space somewhere that I can't see...cannot get it work. Mind if I send you a screenshot of the command prompt via PM about it?
Back to top
View user's profile Send private message Send e-mail Visit poster's website
chrisvoco
Club 300


Joined: 14 Mar 2014
Posts: 380
Location: Local

PostPosted: Sat May 03, 2014 7:33 am    Post subject: Reply with quote

Kim, hello! Absolutely - send away!

-chris v.
_________________
Finally, Ford stops starting to say things and starts.
Back to top
View user's profile Send private message Send e-mail
Kim Fuller
DC


Joined: 29 Jan 2011
Posts: 641
Location: Portlandish, Oregon

PostPosted: Sat May 03, 2014 7:54 am    Post subject: Reply with quote

okay - sent it to you via email rather than PM. Thanks for taking a look at it.

kim
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Kim Fuller
DC


Joined: 29 Jan 2011
Posts: 641
Location: Portlandish, Oregon

PostPosted: Sat May 03, 2014 8:22 am    Post subject: Reply with quote

Woo-hoo! It worked! That is slick. Thanks so much Chris. Going to save that one for the next multiple-file E-learning job that comes in. Can't wait to show it to Ulf when he emerges from the booth.

Laugh Laugh Laugh
Back to top
View user's profile Send private message Send e-mail Visit poster's website
chrisvoco
Club 300


Joined: 14 Mar 2014
Posts: 380
Location: Local

PostPosted: Sat May 03, 2014 12:04 pm    Post subject: Reply with quote

You are welcome to the greatest possible extent that a welcome can possibly extend. Smile
_________________
Finally, Ford stops starting to say things and starts.
Back to top
View user's profile Send private message Send e-mail
chrisvoco
Club 300


Joined: 14 Mar 2014
Posts: 380
Location: Local

PostPosted: Sat May 03, 2014 2:45 pm    Post subject: Reply with quote

And Kim, I must thank you for asking in the first place. It gave me something to write about:

http://chrisvo.co/blog/batch-rename

There's very little in which I can relate to other Huuumahnns, and this seemed like a thing that might fit the bill, so I wrote it up for anybody who cares, along with a breakdown of what each little bit means. I'll add some goodies about doing it as a .bat at some point this weekend. Smile
_________________
Finally, Ford stops starting to say things and starts.
Back to top
View user's profile Send private message Send e-mail
Kim Fuller
DC


Joined: 29 Jan 2011
Posts: 641
Location: Portlandish, Oregon

PostPosted: Sat May 03, 2014 5:29 pm    Post subject: Reply with quote

Nice article, Chris - I look forward to the .bat explanation, too. Anything that makes this work more productive in less time is a winner.

kim
Back to top
View user's profile Send private message Send e-mail Visit poster's website
chrisvoco
Club 300


Joined: 14 Mar 2014
Posts: 380
Location: Local

PostPosted: Mon May 05, 2014 8:31 am    Post subject: Reply with quote

Alrighty - completed explanation and batch file example, ready for copy/paste for any who want it - is up at

My Blog: Renaming Files Is... Boring

The new material is at the bottom. Screenshots during, before, after, are included.

Hope it helps. Yes, the end result ain't so different from any of the slick utilities that do the same thing, but this is ( a ) cheap, ( b ) free, ( c ) inexpensive and ( d ) fun if you like to do a little tinkering on your own.
_________________
Finally, Ford stops starting to say things and starts.
Back to top
View user's profile Send private message Send e-mail
Jen Gosnell
A Hundred Dozen


Joined: 14 Jan 2010
Posts: 1290
Location: Portland, OR

PostPosted: Mon May 05, 2014 11:38 pm    Post subject: Reply with quote

Chris, I love this kind of thing. Thanks so much for your posts!!
_________________
jen@jengosnell.com
https://www.jengosnell.com
Skype: jen.gosnell
971.258.2448
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    VO-BB - 20 YEARS OLD! Forum Index -> Chat All times are GMT - 7 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group