[Bug 294583] [NEW] VLC could not find encoder "MPEG-4 Video".

2008-11-06 Thread WillerZ
Public bug reported:

Trying to transcode a stream from AVI-muxed DIVX/MP3 to MPEG-4 muxed
MP$v/mp4a so I can play it on my iPhone.

I can play the original stream OK, at least the video (this box has no
sound card).

vlc 0.9.4-1ubuntu3

I have installed all recommended and suggested packages as well.

Stream output string:

:sout=#transcode{vcodec=mp4v,vb=800,scale=1,acodec=mp4a,ab=40,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst=/path/to/output.mp4}}

** Affects: vlc (Ubuntu)
 Importance: Undecided
 Status: New

-- 
VLC could not find encoder "MPEG-4 Video".
https://bugs.launchpad.net/bugs/294583
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 294583] Re: VLC could not find encoder "MPEG-4 Video".

2008-11-06 Thread WillerZ
Fixed by installing non-free-codecs and aaplusenc from medibuntu.

** Changed in: vlc (Ubuntu)
   Status: New => Invalid

** bug changed to question:
   https://answers.launchpad.net/ubuntu/+source/vlc/+question/50375

-- 
VLC could not find encoder "MPEG-4 Video".
https://bugs.launchpad.net/bugs/294583
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 255681] Re: Intrepid, Firefox crashes when viewing Java applets. Segmatation fault core dumped.

2008-11-02 Thread WillerZ
Probably a bug in the gcjwebplugin package rather than in firefox,
because...

sudo apt-get remove gcjwebplugin
sudo apt-get autoremove
sudo apt-get install cacao-oj6-plugin

Stops the crash on my system, not sure that it's a good resolution: I'm
trying formula1.com's live timing applet and only getting a grey pane at
this point.

-- 
Intrepid, Firefox crashes when viewing Java applets. Segmatation fault core 
dumped.
https://bugs.launchpad.net/bugs/255681
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 255681] Re: Intrepid, Firefox crashes when viewing Java applets. Segmatation fault core dumped.

2008-11-02 Thread WillerZ
Does mean Sun's 1.4 demo applets work:
http://java.sun.com/applets/jdk/1.4/index.html if you want to test this.

-- 
Intrepid, Firefox crashes when viewing Java applets. Segmatation fault core 
dumped.
https://bugs.launchpad.net/bugs/255681
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 292647] [NEW] Apache/https broken after hardy->intrepid upgrade

2008-11-02 Thread WillerZ
Public bug reported:

After upgrading to Intrepid, I found my Apache HTTPS sites had stopped
working.  After some hours of 'holistic debugging' I traced this to some
breakage in /etc/ssl/certs.  I had been using SSLCACertificatePath
/etc/ssl/certs in my apache config.

There are a number of broken links in that directory, including:

Verisign_Class_3_Public_Primary_OCSP_Responder.pem -> 
/usr/share/ca-certificates/mozilla/Verisign_Class_3_Public_Primary_OCSP_Responder.crt
Verisign_Secure_Server_OCSP_Responder.pem -> 
/usr/share/ca-certificates/mozilla/Verisign_Secure_Server_OCSP_Responder.crt
Verisign_Class_2_Public_Primary_OCSP_Responder.pem -> 
/usr/share/ca-certificates/mozilla/Verisign_Class_2_Public_Primary_OCSP_Responder.crt
SPI_CA_2006-cacert.pem -> 
/usr/share/ca-certificates/spi-inc.org/SPI_CA_2006-cacert.crt
spi-ca.pem -> /usr/share/ca-certificates/spi-inc.org/spi-ca.crt

I do not think these are relevant, since they are not the hash-form
entries that mod_ssl is meant to use.

I have copied the CA certificates I actually need to another directory,
linked them up in there and am now using that as my
SSLCACertificatePath.  So I'm up and running, but it would be nice to
fix this for subsequent upgraders.

Would investigate more but my system is working and the cat wants to
sleep on my laptop now.

** Affects: ca-certificates (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Apache/https broken after hardy->intrepid upgrade
https://bugs.launchpad.net/bugs/292647
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 113092] Re: nautilus in feisty can't open http:// URI which affects service-discovery-applet

2008-09-30 Thread WillerZ
Given that nautilus cannot open http or https URLs I have modified
nautilus.py on my box to use firefox for these URLs.  I have not
modified the other types as I have no way to test them in my network
(other than _sftp-ssh._tcp which I can verify DOES work as-is).  Patch:

--- nautilus.py 2008-03-12 14:56:20.0 +
+++ nautilus.py 2008-09-30 20:34:57.0 +0100
@@ -28,10 +28,13 @@
 path = get_txt_value(txts,"path")
 username = get_txt_value(txts,"u")
 password = get_txt_value(txts,"p")
+app = "nautilus"
 if stype == "_http._tcp":
 url = build_url("http",address,port, path, username,password)
+app = "firefox"
 if stype == "_https._tcp":
 url = build_url("https",address,port, path, username,password)
+app = "firefox"
 if stype == "_ftp._tcp":
 url = build_url("ftp",address,port, path, username,password)
 if stype == "_ftps._tcp":
@@ -43,7 +46,7 @@
 if stype == "_webdavs._tcp":
 url = build_url("davs",address,port, path, username,password)
 
-   cmdline = ["nautilus", url ]
+   cmdline = [app, url ]
subprocess.Popen(cmdline).wait()
 
 def load():

-- 
nautilus in feisty can't open http:// URI which affects service-discovery-applet
https://bugs.launchpad.net/bugs/113092
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 113092] Re: nautilus in feisty can't open http:// URI which affects service-discovery-applet

2008-09-30 Thread WillerZ
Patch formatting (important for Python I think!) got broken above -
attaching as a file.

** Attachment added: "Patch to use firefox instead for HTTP/HTTPS resources.  
NOT A COMPLETE FIX!"
   http://launchpadlibrarian.net/18093731/nautilus.py-patch

-- 
nautilus in feisty can't open http:// URI which affects service-discovery-applet
https://bugs.launchpad.net/bugs/113092
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 113092] Re: nautilus in feisty can't open http:// URI which affects service-discovery-applet

2008-10-03 Thread WillerZ
xdg-open works for me; suggest that resolution is adopted.

-- 
nautilus in feisty can't open http:// URI which affects service-discovery-applet
https://bugs.launchpad.net/bugs/113092
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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