From patchwork Sun Feb 24 22:02:43 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Klaus Schmidinger X-Patchwork-Id: 12609 Received: from raven.cadsoft.de ([217.7.101.211]) by www.linuxtv.org with esmtp (Exim 4.63) (envelope-from ) id 1JTOvn-0004Tm-OI for vdr@linuxtv.org; Sun, 24 Feb 2008 23:02:47 +0100 Received: from [192.168.100.10] (hawk.cadsoft.de [192.168.100.10]) by raven.cadsoft.de (8.13.3/8.13.3) with ESMTP id m1OM2h3D021416 for ; Sun, 24 Feb 2008 23:02:43 +0100 Message-ID: <47C1E983.7000000@cadsoft.de> Date: Sun, 24 Feb 2008 23:02:43 +0100 From: Klaus Schmidinger Organization: CadSoft Computer GmbH User-Agent: Thunderbird 2.0.0.9 (X11/20070801) MIME-Version: 1.0 To: vdr@linuxtv.org References: In-Reply-To: X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (raven.cadsoft.de [192.168.1.1]); Sun, 24 Feb 2008 23:02:43 +0100 (CET) Subject: Re: [vdr] vdr-pictures and pic2mpg X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.9 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2008 22:02:47 -0000 Status: O X-Status: X-Keywords: X-UID: 15855 On 02/24/08 21:42, Stefan Wagner wrote: > the pic2mpg script aceptis only files with lower case caracters. > is it posible to support upper case caracters by default? > > my pictures are named DSCN*.JPG and the script only acepts DSCN*.jpg. (untested). Klaus --- PLUGINS/src/pictures/pic2mpg 2008/02/02 11:34:43 1.2 +++ PLUGINS/src/pictures/pic2mpg 2008/02/24 22:00:18 @@ -143,7 +143,7 @@ sub ConvertFile { my ($Pict, $Mpeg) = @_; - (my $Type) = $Pict =~ /\.([^\.]*)$/; + (my $Type) = lc($Pict) =~ /\.([^\.]*)$/; if (!defined $PNMCONV{$Type}) { return if ($Ignore); die "unknown file type '$Type': '$Pict'\n";