aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpsyc://loupsycedyglgamf.onion/~lynX <ircs://psyced.org/youbroketheinternet>1984-04-04 00:44:10 +0000
committerpsyc://loupsycedyglgamf.onion/~lynX <ircs://psyced.org/youbroketheinternet>1984-04-04 00:44:10 +0000
commit5a4a9270e199c19abd7a9f04f9905740bfa14c1a (patch)
tree45920081344b76cef23269f9b0dec37bc1300402
parent94e92239f9d5b29e875402b3006cf4dab8bb4278 (diff)
downloadyoubroketheinternet-overlay-5a4a9270e199c19abd7a9f04f9905740bfa14c1a.tar.gz
youbroketheinternet-overlay-5a4a9270e199c19abd7a9f04f9905740bfa14c1a.zip
little fix in ffcat
-rwxr-xr-xmedia-video/ffcat/files/ffcat4
1 files changed, 2 insertions, 2 deletions
diff --git a/media-video/ffcat/files/ffcat b/media-video/ffcat/files/ffcat
index 873d3ed..ab8bdaf 100755
--- a/media-video/ffcat/files/ffcat
+++ b/media-video/ffcat/files/ffcat
@@ -23,8 +23,8 @@ my $MPARMS = '-quiet -fs';
23$MPARMS .= ' -ao null' if $opt_q; 23$MPARMS .= ' -ao null' if $opt_q;
24my $DEFLEN = 10; 24my $DEFLEN = 10;
25 25
26my $output = $opt_o or pop; 26my $output = $opt_o || pop;
27die pod2usage if not @ARGV or not $output; 27die pod2usage if $#ARGV < 0 or not $output;
28my $input = $ARGV[0]; # look at the first to extract file type 28my $input = $ARGV[0]; # look at the first to extract file type
29if ( $output and not $output =~ /\.\w+$/ ) { 29if ( $output and not $output =~ /\.\w+$/ ) {
30# if ( $input =~ /\.(m4v|3gp|mov|flv)$/i ) { 30# if ( $input =~ /\.(m4v|3gp|mov|flv)$/i ) {