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
-
- #!/usr/bin/env ruby
- #
- # Simple script to extract the audio part of a video
- # and encode it to mp3.
- # Depends on 'mplayer' and 'lame'
- STDOUT.sync = true
- 856155 - extract_audio.rb: mplayer ruby audio lame encode
-
- #!/usr/bin/env ruby
- STDOUT.sync = true
- name = ARGV[0]
- abort("usage: #{$0} filename") if name.nil?
- abort("a file name 'audiodump.wav' already exist") if File.exist? 'audiodump.wav'
- 687093 - /usr/local/bin/flv2mp3: video file flash audio dump
-
- #!/bin/sh
- #-------------------------------------------------------------
- # Play *flv with mplayer and dump sound to mp3 File
- #-------------------------------------------------------------
- for i in *.flv
- do
- mplayer -dumpaudio -dumpfile $(basename $i .flv).mp3 $i
- done