[FFmpeg-soc] [soc]: r2891 - aacenc/encode_samples.sh
kostya
subversion at mplayerhq.hu
Tue Jul 29 14:15:17 CEST 2008
Author: kostya
Date: Tue Jul 29 14:15:16 2008
New Revision: 2891
Log:
Add script for automatic encoding of test samples
Added:
aacenc/encode_samples.sh
Added: aacenc/encode_samples.sh
==============================================================================
--- (empty file)
+++ aacenc/encode_samples.sh Tue Jul 29 14:15:16 2008
@@ -0,0 +1,8 @@
+#!/bin/sh
+for file in `ls *.wv`
+do
+ for br in 32k 48k 64k 96k 128k 160k 192k
+ do
+ ffmpeg -i $file -ab $br -y "`basename $file .wv`.$br.mp4"
+ done
+done
More information about the FFmpeg-soc
mailing list