Page 5 of 6

Re: Released a version "Wild Media Server (UPnP) v1.04.5"

Posted: Fri Jul 23, 2010 7:47 am
by LouisXIV
Eugene wrote:- in the status bar of the main form of the program added mode "Automatic scanning
of removable media" (default is now off). Manual scan can be performed on right click
of the mouse on the folder "Removable media".
Thanks, it works :!: :!: :!:

Re: Released a version "Wild Media Server (UPnP) v1.04.7"

Posted: Fri Jul 23, 2010 8:39 am
by Eugene
Hi,
LiPe76 wrote: After upgrade to version 1.04.7 I don't need set compatible mode "WinXP" for playing video resource on Sony Bravia TV (Win7-64). Everythings work fine for me now.
Thanks for notice, I am glad :D

Re: Released a version "Wild Media Server (UPnP) v1.04.7"

Posted: Thu Jul 29, 2010 8:05 pm
by SiriusBlack
On my SONY BRAVIA KDL32EX709 I cannot watch DVBS(2) videos.
I am saving a DVB-S stream as .mpg on disk.

Media Info says MPEG-TS with: Video 166, MPEG Video version 2 and Audio 128, MPEG Audio version 1 layer 2, Text 68
BUT If I list the movie as a table, and click on "+", the MPEG-TS stream shows only one line: Audio MP3 192000, but no entry for video.

When I start playback there are just some fractals on the screen and the TV beeps just from time to time.
After switching on debug file generation and playback again the number of fractals increases signifcantly.

All other files play fine, as for example:
MPEG-PS with: Video 224, MPEG Video version 2 and Audio 192, MPEG Audio version 1 layer 2
MPEG-4 with: Video 1, AVC and Audio 2, AAC
AVI with: Video 0, MJPEG and Audio PCM

If I list these movies as a table, and click on "+", all stream shows one line for video AND one line for audio.
Example for MPEG-PS:
- Video MPEG2VIDEO 2376000
- Audio MP2 224000

Could it be that the MPEG-TS container is not properly read?
This would affect all DVB-S users.

Re: Released a version "Wild Media Server (UPnP) v1.04.7"

Posted: Fri Jul 30, 2010 7:44 am
by Eugene
SiriusBlack wrote:On my SONY BRAVIA KDL32EX709 I cannot watch DVBS(2) videos.
I am saving a DVB-S stream as .mpg on disk.

Media Info says MPEG-TS with: Video 166, MPEG Video version 2 and Audio 128, MPEG Audio version 1 layer 2, Text 68
BUT If I list the movie as a table, and click on "+", the MPEG-TS stream shows only one line: Audio MP3 192000, but no entry for video.

When I start playback there are just some fractals on the screen and the TV beeps just from time to time.
After switching on debug file generation and playback again the number of fractals increases signifcantly.

All other files play fine, as for example:
MPEG-PS with: Video 224, MPEG Video version 2 and Audio 192, MPEG Audio version 1 layer 2
MPEG-4 with: Video 1, AVC and Audio 2, AAC
AVI with: Video 0, MJPEG and Audio PCM

If I list these movies as a table, and click on "+", all stream shows one line for video AND one line for audio.
Example for MPEG-PS:
- Video MPEG2VIDEO 2376000
- Audio MP2 224000

Could it be that the MPEG-TS container is not properly read?
This would affect all DVB-S users.
Try change file extension to ts.

Re: Released a version "Wild Media Server (UPnP) v1.04.7"

Posted: Mon Aug 02, 2010 5:45 pm
by SiriusBlack
Thanks a lot, it worked!

Is there a skript possible to rename the filenames automatically, once they are added to the media database?

Re: Released a version "Wild Media Server (UPnP) v1.04.7"

Posted: Tue Aug 03, 2010 8:39 am
by Eugene
SiriusBlack wrote:Thanks a lot, it worked!

Is there a skript possible to rename the filenames automatically, once they are added to the media database?
No, you can run renaming script before scanning.

Settings - Processing - Add
Name: Rename mpg-files
Check "Button on the main form"
Script:

Code: Select all

const
  csSourceDirectory = 'C:\MpgFiles';  

var
  Folder, FolderItem, ShellApp: Variant;
  i, iCount: Integer;
begin
  ProcessMediaResult := False;
  if csSourceDirectory <> '' then begin   
    ShellApp := CreateOleObject('Shell.Application');
    Folder := ShellApp.NameSpace(csSourceDirectory);
    iCount := Folder.Items.Count;
    for i := 0 to iCount - 1 do begin
      FolderItem := Folder.Items.Item(i);
      if not FolderItem.IsFolder then begin
        if SameText(ExtractFileExt(FolderItem.Name), '.mpg') then
          FolderItem.Name := ChangeFileExt(FolderItem.Name, '.ts')
      end
    end;  
    ProcessMediaResult := True    
  end
end.
Need change csSourceDirectory

Re: Released a version "Wild Media Server (UPnP) v1.04.7"

Posted: Sun Aug 15, 2010 4:00 am
by gugu
Got a couple of errors in 1.04.7-1.05 rc3.
1. When opening help:
error1.jpg
error1.jpg (219.33 KiB) Viewed 7786 times
2. After doing a group and then clicking on the mouse right button
error 2.jpg
error 2.jpg (132.47 KiB) Viewed 7786 times
Restarting program doesn't help.

The only way to restore the database is to delete the Movie collection folder (only through Structure of media resources) and then Restore folders to get the empty Collection folder back.

This error is not romanian language dependent. It does the same in english.

The error doesn't appear in Music collection folder. I also notest that trying to do a group from, say, Directors, actually puts into the group all the movies from Watch folders.
It has to be something wrong with the query you're doing in creating groups and/or creating a new group item into the the "Movie folders" record.

Cheers

Re: Released a version "Wild Media Server (UPnP) v1.04.7"

Posted: Sun Aug 15, 2010 5:46 am
by Eugene
gugu wrote:Got a couple of errors in 1.04.7-1.05 rc3.
1. When opening help:
I do not have this error, may be a new help file.
gugu wrote: 2. After doing a group and then clicking on the mouse right button
Thanks for notice, I think, that corrected this error.
gugu wrote: I also notest that trying to do a group from, say, Directors, actually puts into the group all the movies from Watch folders.
It has to be something wrong with the query you're doing in creating groups and/or creating a new group item into the
the "Movie folders" record.
The grouping always process folders "All movies", "All Music", "All Pictures"

Re: Released a version "Wild Media Server (UPnP) v1.04.7"

Posted: Sun Aug 15, 2010 11:37 am
by gugu
Eugene wrote:
gugu wrote:Got a couple of errors in 1.04.7-1.05 rc3.
1. When opening help:
I do not have this error, may be a new help file.
Check this out for hh_help_context called without a [map] section

http://www.codeguru.com/cpp/w-p/help/ht ... .php/c6513

Cheers

Re: Released a version "Wild Media Server (UPnP) v1.04.7"

Posted: Sun Aug 15, 2010 12:19 pm
by Eugene
gugu wrote:
Eugene wrote:
gugu wrote:Got a couple of errors in 1.04.7-1.05 rc3.
1. When opening help:
I do not have this error, may be a new help file.
Check this out for hh_help_context called without a [map] section

http://www.codeguru.com/cpp/w-p/help/ht ... .php/c6513
It may be useful information
Topic: Interface; Help Context: 105
From the program is called this topic.