![]() | All Advertisers |
| Member Services Directory | Classifieds | Reviews | Jobs | Deal Zone | Merchandise | Marketplace | Facebook App | Books, DVDs & Gadgets | Video Vault | Tips & Techniques |
| |||||||
New Reply | Thread Tools | Search this Thread |
| | #1 |
| Gear maniac Joined: Nov 2008 Location: New York, NY
Posts: 237
Thread Starter |
Hi All, I recently acquired a music production partnership with another company in Atlanta, GA. The company in GA is run by an older man, a composer and producer who's top most success was in the 80s pop era. He only uses DAW like a tape machine so he is not prolific with it. Anyway, I recently produced a rhythm track for some of his clients in Atlanta but sent it to him as an .mp3 file. I expect that he merely imported the .mp3 into Digital Performer 3 and recorded the vocals and instruments parts on separate tracks. Now most of the work we will be doing is music for productions, and the quality will need to be pristine. I imagine there is a better way to do this file sharing thing without utilizing terabytes of HD space. Any ideas on how best to share files between us? He is using Digital Performer 3 and I am using Cubase 4. |
| | |
| | #2 |
| Gear maniac Joined: Apr 2008
Posts: 158
|
Well really it isn't as much space as you might think. For 16-Bit 44.1Khz wav files, it is about 10 MB a minute. So depending on where the final mix will be, you can do a mixdown as a wav and send that. Anyway there are lots of options with sub-mixes or rough mixes and sending the files around. Worst case scenario is sending all the tracks as a separate .wav. You want all the edits and such done. That is what really can eat up space. Even with high speed internet and such, the transfer times will be huge. I personally use RAR compression and put it on DVD's. Then snail-mail it. With RAR you can have it even break up the RAR to fit on DVD's perfectly. Then when it is decompressed it also does a check-sum to make sure the decompressed files are 100% correct. You can probably mail back and forth an external HD too. They are cheap enough these days. But I think DVD's are still safer, cheaper per batch, but more expensive/wasteful in the long run, as in a lot of projects. After compressing with RAR, I have never had a session span more than 2 DVD's in 24-bit 44.1K after all the edits were done and the project Archived in cubase. |
| | |
| | #3 |
| Gear maniac Joined: Nov 2008 Location: New York, NY
Posts: 237
Thread Starter | |
| | |
| | #4 |
| Lives for gear |
ftp
|
| | |
| | #5 |
| Lives for gear |
MP3 files are of low quality. The standard is WAV files that start and finish at the same point and are free of gaps (export - fill silence). You can aslo use broadcast WAV files that have their timings embedded in them. You can either ftp them, or send DVDs or CDs.
__________________ http://www.the-byre.com |
| | |
| | #6 |
| Gear nut Joined: Dec 2002 Location: de ilands mon
Posts: 148
| Working long distance
how about Digi Delivery?? We have one we might sell if interested?? Dan ISW Studios, St. Thomas Virgin Islands |
| | |
| | #7 |
| Lives for gear Joined: Aug 2008
Posts: 2,442
|
There are some decent compression tools out there, one of the best lossless formats I've found for audio specific stuff is Monkey's Audio Monkey's Audio - a fast and powerful lossless audio compressor it will compress wavs so you can realise a 50% reduction in file size, I haven't compared this to RAR compression though. |
| | |
| | #8 |
| Lives for gear Joined: Nov 2006 Location: san ramon ca
Posts: 1,251
|
I've done this a lot lately. Make wav's and make sure you record from beat 1 measure 1 with the tempos as part of your naming of the file. For posting i have a .me account at apple and i can post on my own website as well.I use two in case one is not working.I've done my last two library cd's this way delivering the files to one of the two sites and having my engineer in this case download from his studio 45 minutes away from where i live.Then he finishes the mix's and sends me mp3's to check.I take the full quality cd's and make copies to send to prospective clients. All electronic and from the comfort of my own studio!Good Day Ay! Dan P |
| | |
| | #9 | |
| Gear maniac Joined: Apr 2008
Posts: 158
| Quote:
Monkey's Audio is free too which is sweet. RAR I get about a 40% reduction or 60% of the original file size at Normal compression. Takes a good hour or so per session of 40 minutes of music 30 tracks or so. But I get it down to 1 and a half DVD's usually. So that leaves some room to put rough mixes or whatever on there as well. You can try 7zip too, which is free. RAR you get a 30 day trial, then it is like $25 or something. | |
| | |
| | #10 |
| Gear addict | |
| | |
| | #11 |
| Gear Guru |
just finished a year long project w/ many people over a lot of spaces - same issues - we used: YouSendIt - Send large files - transfer delivery - FTP Replacement it's genius
__________________ ... My band has a million unpaid downloads and all I got is this lousy T-shirt... |
| | |
| | #12 |
| Gear maniac Joined: Dec 2006 Location: Victoria, Texas USA
Posts: 237
|
Here's what I use for sharing .wav files remotely: Simple private real-time sharing and collaboration by drop.io |
| | |
| | #13 | |
| Gear Head | Quote:
Try doing that sort of instant multi-state collaboration with an analogue tape Be sure to disable plain text password based login in sshd and only allow key based log in: see example config below, Key elements to check for in your config file are "Protocol 2", "PermitRootLogin no", "ChallengeResponseAuthentication no" and "PasswordAuthentication no" The line "Port 1022" allows incoming connections on a non-standard port. You'll probably need to set up port forwarding on your home/studio firewall connection to send that inbound traffic through the NAT box to your DAW. more /etc/sshd_config # Package generated configuration file # See the sshd(8) manpage for details # What ports, IPs and protocols we listen for Port 22 # for NAT from outside Port 1022 # Use these options to restrict which interfaces/protocols sshd will bind to #ListenAddress :: #ListenAddress 0.0.0.0 Protocol 2 # HostKeys for protocol version 2 HostKey /etc/ssh/ssh_host_rsa_key HostKey /etc/ssh/ssh_host_dsa_key #Privilege Separation is turned on for security UsePrivilegeSeparation yes # Lifetime and size of ephemeral version 1 server key KeyRegenerationInterval 3600 ServerKeyBits 768 # Logging SyslogFacility AUTH LogLevel INFO # Authentication: # LoginGraceTime 120 LoginGraceTime 20 # do not allow root login PermitRootLogin no # only allow me and you AllowUsers me you StrictModes yes RSAAuthentication yes PubkeyAuthentication yes #AuthorizedKeysFile %h/.ssh/authorized_keys # Don't read the user's ~/.rhosts and ~/.shosts files IgnoreRhosts yes # For this to work you will also need host keys in /etc/ssh_known_hosts RhostsRSAAuthentication no # similar for protocol version 2 HostbasedAuthentication no # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication #IgnoreUserKnownHosts yes # To enable empty passwords, change to yes (NOT RECOMMENDED) PermitEmptyPasswords no # Change to yes to enable challenge-response passwords (beware issues with # some PAM modules and threads) ChallengeResponseAuthentication no # Change to no to disable tunnelled clear text passwords #PasswordAuthentication yes PasswordAuthentication no # Kerberos options #KerberosAuthentication no #KerberosGetAFSToken no #KerberosOrLocalPasswd yes #KerberosTicketCleanup yes # GSSAPI options #GSSAPIAuthentication no #GSSAPICleanupCredentials yes X11Forwarding no X11DisplayOffset 10 PrintMotd no PrintLastLog yes TCPKeepAlive yes #UseLogin no #MaxStartups 10:30:60 #Banner /etc/issue.net Banner /etc/ssh/banner.txt # Allow client to pass locale environment variables AcceptEnv LANG LC_* Subsystem sftp /usr/lib/openssh/sftp-server UsePAM yes For audio file compression FLAC gets good platform support and is lossless. see http://wiki.hydrogenaudio.org/index.php?title=Lossless_comparison#Comparison_Table | |
| | |
| | #14 | |
| Lives for gear Joined: Jun 2007 Location: Maui, Hawaii
Posts: 989
| Quote:
| |
| | |
New Reply
Facebook
Twitter
LinkedIn
| Thread Tools | Search this Thread |
| Similar Threads | ||||
| Thread | Thread starter | Forum | Replies | Last Post |
| sd2 files to wav files... HELP! | basskater87 | So much gear, so little time! | 10 | 3rd November 2009 05:51 PM |
| Best Studios and Private Studios in South Florida | zak7 | So much gear, so little time! | 25 | 17th March 2008 03:41 PM |
| File sharing for .mov (quicktime) files, how do I do it? | jgrif08 | Music computers | 1 | 24th November 2006 03:02 AM |
| Grouper! Sharing large files | jdier | Music computers | 10 | 23rd August 2006 02:55 AM |
| Strong Room Recording Studios buys AIR Studios!!!! | MGA | High end | 11 | 10th February 2006 09:22 PM |
| |