Re: debian/watch, uupdate Recipe

2007-06-23 Thread Arthur Loiret
Hello, :)

The debian/watch Recipe has been reviewed and is now on the wiki, see
https://wiki.ubuntu.com/MOTU/Recipes/DebianWatch.

Thanks to all reviewers. ;)

Arthur.



signature.asc
Description: OpenPGP digital signature
-- 
Ubuntu-motu mailing list
Ubuntu-motu@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-motu


Re: debian/watch, uupdate Recipe

2007-06-14 Thread Arthur Loiret
Daniel Holbach a écrit :
> Hello everybody,
> 
> the Mentoring program is working nicely - we have good people with
> interesting questions on ubuntu-motu-mentors and I'd personally like to
> see more recipes on http://wiki.ubuntu.com/MOTU/Recipes as I got very
> good feedback on the idea.
> 
> Would somebody volunteer to write a quick and good recipe on using
> debian/watch, uupdate and friends?

I am, and to be honest I would be glad to see more debian/watch in 
packages :)


I'll try to start it very soon.

Have a nice day,

Arthur.

-- 
Ubuntu-motu mailing list
Ubuntu-motu@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-motu


Re: [ffmpeg] patch for amr_nb and amr_wb support

2007-04-10 Thread Arthur Loiret
Le mardi 13 mars 2007 à 17:48 +1100, Luke Yelavich a écrit :
> What is the license of the code? Looking at the first zip file, I can't 
> seem to find any mention of a license that the code is under.

I've sent a mail to 3GPPlegal <[EMAIL PROTECTED]>, and here is
the answer :

"Firstly, there is IPR on the technology, for which you must have
obtained a licence, and that is certainly not free.  However, on the
published standard, ETSI holds copyright (jointly with the other 3GPP
OPs), but will grant (free of charge) permission to reproduce the code.
But, without the usage licence, this may be of little use to the
enquirer.
Hope this would help! If you need further information, do not hesitate
to contact the ETSI Legal Advisor: Mr Michael Fröhlich at
[EMAIL PROTECTED]"

So there is legal issues to distribute binaries including amr.

Arthur.


-- 
Ubuntu-motu mailing list
Ubuntu-motu@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-motu


[ffmpeg] patch for amr_nb and amr_wb support

2007-03-12 Thread Arthur Loiret
Hi! :)

First, i really wanted to thank you for all your work,  your are all
doing a very good work guys :)

I had a question, about if it were possible to add a support in ffmpeg.

I'm actually packaging 3gpwiz for ubuntu, but this perl prog needs
'custom' compilation of ffmpeg, to add the amr_nb and amr_wb support.
Following the instructions given by the configure script when adding
--enable-amr_nb --enable-amr_wb, those commands must be executed before
the make : 

   cd libavcodec && \
 rm -rf amr_float && mkdir amr_float && \
 cd amr_float && \
   wget
http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip &&
\
   unzip *.zip && \
   unzip *code.zip && \
   cd .. && \
 rm -rf amrwb_float && mkdir amrwb_float && \
 cd amrwb_float && \
   wget
http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip &&
\
   unzip *.zip && \
   unzip *code.zip && \
   cd ../..

So here is a patch for the debian/rule file, joined in the mail. But my
question is, if it is possible to add this support, should we add apply
this patch directly to the package, put it in debian/patch or to make an
other package including amr_nb anf amr_wb support ?

If you want more informations about 3gpwiz : moderns cellphones use the
3gp format for their videos, to read videos directly on the cellphone.
3gpwiz allow you to convert any video to a 3gp video. Then you can
transfer the 3gp videos to your cellphone and read them :) 

Thank you!

Arthur.
Index: ffmpeg-0.cvs20060823/debian/rules
===
--- ffmpeg-0.cvs20060823/debian/rules	2007-03-12 20:01:05.0 +0100
+++ ffmpeg-0.cvs20060823/debian/rules	2007-03-12 20:05:27.0 +0100
@@ -6,6 +6,7 @@
 
 confflags += --enable-gpl --enable-pp --enable-pthreads
 confflags += --enable-vorbis --enable-libogg --enable-a52 --enable-dts --enable-libgsm
+confflags += --enable-amr_nb --enable-amr_wb
 
 ifneq (,$(findstring linux,$(DEB_HOST_GNU_TYPE)))
   confflags += --enable-dc1394
@@ -47,6 +48,22 @@
 	# Build static libraries
 	./configure $(confflags) --disable-ffmpeg --disable-ffserver --disable-ffplay --prefix=/usr
 	cd doc && $(MAKE)
+	
+	# For amr_nb and amr_wb support
+	cd libavcodec && \
+	  rm -rf amr_float && mkdir amr_float && \
+	  cd amr_float && \
+	wget http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip && \
+	unzip *.zip && \
+	unzip *code.zip && \
+	cd .. && \
+	  rm -rf amrwb_float && mkdir amrwb_float && \
+	  cd amrwb_float && \
+	wget http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip && \
+	unzip *.zip && \
+	unzip *code.zip && \
+	cd ../..
+	
 	$(MAKE)
 	
 	# Backup static libraries
-- 
Ubuntu-motu mailing list
Ubuntu-motu@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-motu