Welcome to the Invelos forums. Please read the forum rules before posting.

Read access to our public forums is open to everyone. To post messages, a free registration is required.

If you have an Invelos account, sign in to post.

    Invelos Forums->DVD Profiler: Contribution Discussion Page: 1... 4 5 6 7 8 ...13  Previous   Next
WARNING: wrong disc id with Windows 10 Update 1809
Author Message
DVD Profiler Desktop and Mobile RegistrantStar ContributorDJ Doena
Registered: May 1, 2002
Registered: March 14, 2007
Reputation: Highest Rating
Germany Posts: 6,737
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting GSyren:
Quote:
Quoting DJ Doena:
Quote:
The link I provided will open the Feedback hub and show you the issue I raised with Microsoft.

Nope. Doesn't work.
In Firefox that link just takes me to the Windows Insider web page.
In Edge it asks if I want to open the Feeback hub, and then says "Your account doesn't have access to this feedback". 


when you open Feedback Hub just by itself: Are you logged in on the lower left side?
Karsten
DVD Collectors Online

DVD Profiler Desktop and Mobile RegistrantStar ContributorAiAustria
Profiling since 2004
Registered: May 19, 2007
Reputation: Highest Rating
Austria Posts: 5,703
Posted:
PM this userDirect link to this postReply with quote
My assumption was wrong.

Prerequisties (just checked out)
- using Windows 10
- having the Feedback-Hub App installed (the DJ Doenas link provides a link to the Microsoft store, if the app is missing) and
- having Feedback-Hub App logged into a valid Microsoft account
- using any Browser (tested with Edge, Internet Explorer and Firefox)
- allowing the browser to open the Feedback-Hub App
Complete list of Common Names  •  A good point for starting with Headshots (and v11.1)
DVD Profiler Desktop and Mobile RegistrantStar ContributorAiAustria
Profiling since 2004
Registered: May 19, 2007
Reputation: Highest Rating
Austria Posts: 5,703
Posted:
PM this userDirect link to this postReply with quote
Upvoted 
Complete list of Common Names  •  A good point for starting with Headshots (and v11.1)
DVD Profiler Unlimited RegistrantStar Contributorvectar
Registered: May 9, 2007
Canada Posts: 14
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Upvoted
DVD Profiler Unlimited RegistrantStar ContributorGSyren
Profiling since 2001
Registered: March 14, 2007
Reputation: Highest Rating
Sweden Posts: 4,508
Posted:
PM this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting AiAustria:
Quote:
Prerequisties (just checked out)
- using Windows 10
- having the Feedback-Hub App installed (the DJ Doenas link provides a link to the Microsoft store, if the app is missing) and
- having Feedback-Hub App logged into a valid Microsoft account
- using any Browser (tested with Edge, Internet Explorer and Firefox)
- allowing the browser to open the Feedback-Hub App

I have all those prerequisties (and a Windows Insider account), but nope - still no luck.
Country specific, perhaps, or Windows type? I have a Swedish Windows 10 Home.
My freeware tools for DVD Profiler users.
Gunnar
DVD Profiler Unlimited RegistrantStar ContributorNexus the Sixth
Contributor since 2002
Registered: March 13, 2007
Reputation: High Rating
Sweden Posts: 3,188
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Same here, except I have the Swedish Windows 10 Professional.
First registered: February 15, 2002
DVD Profiler Desktop and Mobile RegistrantStar ContributorDJ Doena
Registered: May 1, 2002
Registered: March 14, 2007
Reputation: Highest Rating
Germany Posts: 6,737
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Anyway, this is the report I posted:



And for anyone programmatically talented, this is the sample code I added for them:

Quote:

// This is a C# program which compiles against .NET 2.0

// Add reference to DirectShow.Net: https://www.codeproject.com/Articles/2615/DirectShow-NET

// Given arg needs to be the DVD-Rom drive, e.g. "E:\"


namespace DiscId
{
    using System;
    using System.IO;
    using System.Text;
    using DirectShowLib;
    using DirectShowLib.Dvd;

    public static class Program
    {
        public static void Main(string[] args)
        {
            try
            {
                if (args.Length != 1)
                {
                    Console.WriteLine("Invalid parameter(s) given. Please enter path to DVD drive.");

                    return;
                }

                var path = Path.Combine(args[0], "VIDEO_TS");

                TryRun(path);
            }
            catch (Exception ex)
            {
                Console.WriteLine("The program crashed: " + ex.Message);
            }
            finally
            {
                Console.WriteLine("Press <Enter> to exit.");

                Console.ReadLine();
            }
        }

        private static void TryRun(string path)
        {
            if (!Directory.Exists(path))
            {
                Console.WriteLine($"Path '{path}' does not exist.");

                return;
            }

            var discId = ReadDiscId(path);

            var result = ConvertDiscIdToString(discId);

            Console.WriteLine(result);
        }

        private static long ReadDiscId(string path)
        {
            var navigator = new DVDNavigator();

            var info = (IDvdInfo2)navigator;

            info.GetDiscID(path, out var discId);

            return discId;
        }

        private static string ConvertDiscIdToString(long discId)
        {
            var bytes = GetDiscIdBytes(discId);

            var result = new StringBuilder();

            for (var index = 0; index < bytes.Length; index++)
            {
                if ((index > 0) && (index % 4 == 0))
                {
                    result.Append("-");
                }

                result.Append(bytes[index].ToString("X"));
            }

            return result.ToString();
        }

        private static byte[] GetDiscIdBytes(long discId)
        {
            var originalBytes = BitConverter.GetBytes(discId);

            var result = new byte[16];

            for (var originalIndex = 0; originalIndex < originalBytes.Length; originalIndex++)
            {
                var originalByte = originalBytes[originalIndex];

                var lowerNibble = (byte)(originalByte & 0b_0000_1111);

                var upperNibble = (byte)(originalByte >> 4);

                var newIndex = 15 - (originalIndex * 2);

                result[newIndex] = lowerNibble;

                result[newIndex - 1] = upperNibble;
            }

            return result;
        }
    }
}
Karsten
DVD Collectors Online

DVD Profiler Unlimited RegistrantStar Contributormarcelb7
Registered: Oct. 16, 2000
Registered: March 13, 2007
Reputation: Great Rating
Netherlands Posts: 757
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Found it, and upvoted.
DVD Profiler Unlimited RegistrantStar ContributorElwood Blues
Soul Man
Registered: March 14, 2007
Germany Posts: 82
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Dito.
Bye,
Elwood
DVD Profiler Unlimited RegistrantStar ContributorObiKen
Registered: October 22, 2015
Reputation: Superior Rating
Australia Posts: 257
Posted:
PM this userDirect link to this postReply with quote
Just upgraded PC from Win 10 Ver 1903 ==> Ver 1909 (OS Build 18363.476) today.

Tested various DVDs, BDs and 4Ks with the following results:

4K = OK.
BD = OK.
DVD = same Disc IDs as Version 1809 and 1903.
DVD Profiler Unlimited RegistrantStar Contributorwazh
Registered: March 30, 2007
Australia Posts: 45
Posted:
PM this userDirect link to this postReply with quote
Quoting ObiKen:
Quote:
Just upgraded PC from Win 10 Ver 1903 ==> Ver 1909 (OS Build 18363.476) today.

Tested various DVDs, BDs and 4Ks with the following results:

4K = OK.
BD = OK.
DVD = same Disc IDs as Version 1809 and 1903.


Thanks ObiKen - I was thinking of that when I did the upgrade this morning as well. You saved me the trouble
DVD Profiler Desktop and Mobile RegistrantStar ContributorGreyHulk
Fixin' it for everyone..
Registered: November 24, 2008
Reputation: Highest Rating
United Kingdom Posts: 1,216
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Any sign of this being fixed yet?
DVD Profiler Desktop and Mobile RegistrantStar ContributorGreyHulk
Fixin' it for everyone..
Registered: November 24, 2008
Reputation: Highest Rating
United Kingdom Posts: 1,216
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Bump.
DVD Profiler Desktop and Mobile RegistrantStar ContributorGreyHulk
Fixin' it for everyone..
Registered: November 24, 2008
Reputation: Highest Rating
United Kingdom Posts: 1,216
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Bump.
DVD Profiler Desktop and Mobile RegistrantStar ContributorGreyHulk
Fixin' it for everyone..
Registered: November 24, 2008
Reputation: Highest Rating
United Kingdom Posts: 1,216
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
People are still submitting new Disc IDs under Windows 10 with no tool to correct it. Sigh.
DVD Profiler Unlimited RegistrantStar Contributorrdodolak
Registered: March 18, 2007
Reputation: Superior Rating
United States Posts: 1,598
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Quoting GreyHulk:
Quote:
People are still submitting new Disc IDs under Windows 10 with no tool to correct it. Sigh.


If you have AnyDVD and have it enabled you'll get the correct Disc ID.
    Invelos Forums->DVD Profiler: Contribution Discussion Page: 1... 4 5 6 7 8 ...13  Previous   Next