Is blu-ray writing support reliable yet?

2,089

Solution 1

I've so far found blu-ray writing using growisofs to Verbatim BD-R disks using an LG BH10LS30 blu-ray writer to be reliable. I've only burned a small handful of disks so far, though.

Solution 2

A new software seems to have a GUI for Bluray disc. It's Silicon Empire. You can install it in Ubuntu by downloading the package in the Downloads section, on the website.

Solution 3

According to the cdrkit homepage, cdrecord has had Blu-Ray support since 2007. The homepages also states that all SCSI-3/mmc compliant drives and all ATAPI/mmc compliant drives are supported. I don't think there is a software issue. You should just look for a burner with good reviews.

Solution 4

It is supported. Just needs some set up. See here https://help.ubuntu.com/community/CdDvd/Burning#Blu-Ray_Burning

Share:
2,089

Related videos on Youtube

Yanshof
Author by

Yanshof

Updated on September 18, 2022

Comments

  • Yanshof
    Yanshof almost 2 years

    On my wpf form i have image and toggle button controls. On image mouse over i want to raise event to the toggle button - this event will actully will simulate the mouser enter to the toggle button.

    For some reason i get crash on the raiseEvent.

    The code:

    <Grid>
    
        <Grid.RowDefinitions>
            <RowDefinition Height=".9*"/>
            <RowDefinition Height=".1*"/>
        </Grid.RowDefinitions>
    
        <ToggleButton Name="toggleBtn"  Grid.Row="0" Grid.RowSpan="2" Content="...test..." VerticalContentAlignment="Bottom" />
    
        <Image Name="imgCtrl" Grid.Row="0" Source="someImg.jpg" Stretch="Fill" MouseEnter="imgMouseEnter_Event" />
    
    
    </Grid>
    

    The code that thru the event

        private void imgMouseEnter_Event( object sender, MouseEventArgs e )
        {
            toggleBtn.RaiseEvent( new RoutedEventArgs( ToggleButton.MouseEnterEvent ) );
        }
    

    Thanks for any help.

    • decyclone
      decyclone over 13 years
      Does it show any exception details when crashing? Post them.
    • Yanshof
      Yanshof over 13 years
      No - just quick crash ... all the debug exeption handle are checked.
    • Yanshof
      Yanshof over 13 years
      ok, i got some exection now Object of type 'System.Windows.RoutedEventArgs' cannot be converted to type 'System.Windows.Input.MouseEventArgs'.
    • decyclone
      decyclone over 13 years
      So, now you know what's going wrong. But, I am still curious what you are trying to achieve and if this is the best way.
    • Yanshof
      Yanshof over 13 years
      IS there other way to do it ?
    • Croad Langshan
      Croad Langshan about 13 years
      So, you were able to write a blu-ray disk? Also, you were able to do that reliably, once you found suitable disks? What hardware (what blu-ray writer) did you use, and what software?