Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'audio'

970216 - more codecs than tracks audio cli
preview unavailable
969608 - more codecs than tracks audio cli
preview unavailable
909682 - extract_audio.rb: mplayer ruby audio lame encode
  1. #!/usr/bin/env ruby
  2. #
  3. # Simple script to extract the audio part of a video
  4. # and encode it to mp3.
  5. # Depends on 'mplayer' and 'lame'
  6.  
  7. STDOUT.sync = true
  8.  
  9.  
856155 - extract_audio.rb: mplayer ruby audio lame encode
  1. #!/usr/bin/env ruby
  2.  
  3. STDOUT.sync = true
  4.  
  5. name = ARGV[0]
  6.  
  7. abort("usage: #{$0} filename") if name.nil?
  8. abort("a file name 'audiodump.wav' already exist") if File.exist? 'audiodump.wav'
  9.  
687093 - /usr/local/bin/flv2mp3: video file flash audio dump
  1. #!/bin/sh
  2. #-------------------------------------------------------------
  3. # Play *flv with mplayer and dump sound to mp3 File
  4. #-------------------------------------------------------------
  5. for i in *.flv
  6. do
  7.  mplayer -dumpaudio -dumpfile $(basename $i .flv).mp3 $i
  8. done
  9.  
fantasy-obligation