[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2018-11-07 Thread Bug Watch Updater
** Changed in: brasero
   Status: Confirmed => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2018-03-15 Thread amias
this is still a problem in 17:10.

i was trying to burn a 16:9 1920x1080 mp4 video to dvd in pal format.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2017-08-28 Thread Bug Watch Updater
** Changed in: brasero
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2013-08-11 Thread Narcis Garcia
I've seen this problem today with Ubuntu 12.04 64bit.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2013-05-12 Thread Travis Larson
This is still an issue in 12.10.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-09-16 Thread patrizio ciancarella
** Changed in: brasero (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-06-07 Thread Bug Watch Updater
** Changed in: brasero
   Status: Unknown = New

** Changed in: brasero
   Importance: Unknown = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-06-06 Thread Nokir
When I start brasero with 'GST_DEBUG=*:3 brasero -g', I get the
following:

0:00:10.984295768 16466   0xf36580 INFOGST_PADS 
gstpad.c:1978:gst_pad_link_prepare: trying to link capsfilter1:src and 
ffenc_ac31:sink
0:00:10.985340524 16466   0xf36580 INFOGST_PADS 
gstpad.c:2034:gst_pad_link_prepare: caps are incompatible
BraseroBurn: (at burn-vob.c:684) BraseroVob Error while linking pads


'gst-inspect-0.10 ffenc_ac3' gives me:

  SINK template: 'sink'
Availability: Always
Capabilities:
  audio/x-raw-float
   channels: [ 1, 6 ]
   rate: { 48000, 44100, 32000 }
 endianness: 1234
  width: 32


I looked into plugins/transcode/burn-vob.c near line 684 and found out that the 
capsfilter pad was set to use audio/x-raw-int, which is not compatible with 
ffenc_ac3. So I made the following change to that file:

@@ -638,7 +638,7 @@
BRASERO_JOB_LOG (vob, Setting AC3 rate to 48000);
/* NOTE: we may want to limit the number of channels. */
-   filtercaps = gst_caps_new_full (gst_structure_new (audio/x-raw-int,
+   filtercaps = gst_caps_new_full (gst_structure_new (audio/x-raw-float,
   rate, G_TYPE_INT, 
48000,
   NULL),
NULL);


Now 'GST_DEBUG=*:3 brasero -g' shows me:

0:00:44.819663035 16554  0x2459580 INFOGST_PADS 
gstpad.c:1978:gst_pad_link_prepare: trying to link capsfilter1:src and 
ffenc_ac31:sink
0:00:44.820746205 16554  0x2459580 INFOGST_PADS 
gstpad.c:2161:gst_pad_link_full: linked capsfilter1:src and ffenc_ac31:sink, 
successful


The encoding is starting, but after some megabyte it hangs and the command line 
doesn't print anything anymore. But this seems to be another bug, since the 
very same happens if I select SVCD in the unmodified program.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-06-06 Thread Nokir
I forgot to mention: I tested with Brasero 3.4.1 on Ubuntu 12.04 64bit.

** Bug watch added: GNOME Bug Tracker #661727
   https://bugzilla.gnome.org/show_bug.cgi?id=661727

** Also affects: brasero via
   https://bugzilla.gnome.org/show_bug.cgi?id=661727
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-01-15 Thread Daniël van Eeden
** Changed in: brasero (Ubuntu)
   Status: Invalid = New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-01-15 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: brasero (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-01-15 Thread Daniël van Eeden
** Attachment added: Screenshot
   
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+attachment/2675438/+files/brasero-pads.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-01-15 Thread Daniël van Eeden
** Attachment added: Brasero Session Log
   
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+attachment/2675439/+files/brasero-session.log

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-01-15 Thread Daniël van Eeden
To reproduce:
1. Start Brasero
2. Choose video project
3. Add a .dvd file which is produced with OpenShot (DVD-PAL export)
4. Click Burn…
5. Set disk image type to Video DVD image  and choose Native format and 
4:3
6. Click create image

Brasero calles /usr/bin/genisoimage -input-charset utf8 which
generates an error if I try it.

--
$ /usr/bin/genisoimage -input-charset utf8
/usr/bin/genisoimage: Missing pathspec.
Usage: genisoimage [options] -o file directory ...

Use genisoimage -help
to get a list of valid options.

Report problems to debburn-de...@lists.alioth.debian.org.
--

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-01-15 Thread Daniël van Eeden
The brasero_vob_error_on_pad_linking in plugins/transcode/burn-vob.c is
only called by brasero_vob_new_decoded_pad_cb. This could have something
to do with PulseAudio.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2012-01-15 Thread Daniël van Eeden
According to gst-typefind these are the types for the file I tried to burn:
video/mpeg, systemstream=(boolean)true, mpegversion=(int)2

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in Ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/720466/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 720466] Re: When I try burning DVDs it ejects and say that it's impossible to link plugin pads.

2011-02-16 Thread Samson Jean

** Changed in: brasero (Ubuntu)
   Status: New = Invalid

** Converted to question:
   https://answers.launchpad.net/ubuntu/+source/brasero/+question/145678

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in ubuntu.
https://bugs.launchpad.net/bugs/720466

Title:
  When I try burning DVDs it ejects and say that it's impossible to link
  plugin pads.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs