Diego Biurrun | 1 Jul 2003 01:54
Picon
Gravatar

Re: [PATCH] fix for textultils 2.1 coreutils 5.0 "-1" deprecation

Diego Biurrun writes:
 >  > > On Fri, Jun 27, 2003 at 03:53:29PM +0200, Luca Barbato wrote:
 >  > > 
 >  > >>The new head and tail deprecates -1 in favour of -n 1 the patch just 
 >  > >>changes that when needed.
 > 
 > If nobody objects I will apply this during the next few days, the
 > change is trivial.

Applied.

This is so trivial it belongs in 0_90, too IMHO.  If nobody objects I
will apply it in a few days.

Diego
swchen | 1 Jul 2003 08:12
Picon
Favicon

How to play the raw mpeg4 bitstream

Hi,
   I have got a stream encoded with ffmpeg, with file name .m4v,
i can sure it is a raw bitstream without any header
i can decode it using ffmpeg, but how to play it using Mplayer??
 
./mplayer movie.m4v
========= sorry, this file format is not recognized/supported ====
 
but i can sure it can be understood by libavcodec, how to solve this problem??
 
 
swchen
 
_______________________________________________
MPlayer-dev-eng mailing list
MPlayer-dev-eng <at> mplayerhq.hu
http://mplayerhq.hu/mailman/listinfo/mplayer-dev-eng
swchen | 1 Jul 2003 11:47
Picon
Favicon

Re: How to play the raw mpeg4 bitstream


> [Automatic answer: RTFM (read DOCS, FAQ), also read DOCS/bugreports.html]
> swchen wrote:
> >    I have got a stream encoded with ffmpeg, with file name .m4v,
> > i can sure it is a raw bitstream without any avi header
> > i can decode it using ffmpeg, but how to play it using Mplayer??
> >
> > ./mplayer movie.m4v
> > ========= sorry, this file format is not recognized/supported ====
> >
> > but i can sure it can be understood by libavcodec, how to solve this
> > problem??
>
> It may be understood by libavformat, but AFAIK, libavcodec does encoding
> and decoding of video and audio at the frame or sample level; it doesn't
> know about stream formats. MPlayer doesn't use libavformat, since it has
> its own demuxers.

thank you, i am also sure ffmpeg use libavformat to find the correct codec to decode it.
 
Is is possible for Mplayer to support MPEG4-ES decoding, as i know,
mpeg4 is the same mpeg1/mpeg2 bitstream, they don't need globe header,
we can decode mpeg1/2 bitstream start from anywhere in the bitstream, it will search
next frame start code and start to decode it.
 
Why Mplayer can play a MPEG2 elementary stream, but can't play a MPEG4
elementary stream?? If at this time, Mplayer can't decode a MPEG4-ES, we can submit
patches to it. But i must know is it true first??
 
 
>  You should be able to use ffmpeg itself to put the
> video in the m4v into an AVI. Then, MPlayer can read it.
>
> Jonathan Rogers
 
and if i use ffmpeg to convert the mpeg4-ES into avi, ffmpeg will decode it first then
encode it again with avi header .
(command:--> ffmpeg -i movie.m4v movie.avi) of course, this command works fine.
But it is waste time and video quallity will be degraded!
 
someone tell me to use
---> ffmpeg -i movie.m4v -vcodec copy movie.avi
but using this command, it can't played correctly using mplayer, even ffmpeg itself can't
decode the copyed movie.avi correclty.  It's strange!! I think the avi header and because
chunk length is fixed to 2048.
 
I have asked this in ffmpeg, but it seems no one answer.
other command usage ??
 
swchen
 
_______________________________________________
MPlayer-dev-eng mailing list
MPlayer-dev-eng <at> mplayerhq.hu
http://mplayerhq.hu/mailman/listinfo/mplayer-dev-eng
Dominik Mierzejewski | 1 Jul 2003 13:31

Re: mp3lib fixed or messed?

On Tuesday, 01 July 2003, gabucino <at> mplayerhq.hu wrote:
> Dominik Mierzejewski wrote:
> > Strangely enough I see a correct Date: header
> > Date: Sun, 29 Jun CEST 02:06:58 +0200
>                     ^^^^
> Do you really think this is correct? ;)

Gah, of course not. Funny how you never notice these things until someone
points the out to you. :))

--

-- 
MPlayer RPMs maintainer: http://www.piorunek.pl/~dominik/linux/pkgs/mplayer/
"The Universe doesn't give you any points for doing things that are easy."
        -- Sheridan to Garibaldi in Babylon 5:"The Geometry of Shadows"
Ruben Garcia | 1 Jul 2003 13:02
Picon

Re: Fw: [MPlayer-users] Minor conflict in mga_vid driver


Dominik Mierzejewski wrote:
> On Monday, 30 June 2003, Attila Kinali wrote:
> 
>>Heyo PPL,
>>
>>Looks like the next round of RH specific bugs is
>>gonna to start. :(
> 
> 
> Old news. I've known about it for over a month now. Looks like RH patched
> their 2.4.20 kernel with some 2.5.x(?) stuff. I don't use distro kernels on
> my workstation (only on my servers), so I never came across this problem on
> my own. I didn't feel too compelled to fix this so far, but if more of these
> start coming in, I just might. :P Unless, of course, someone beats me to it.
> 
> The provided patch is of course valid only for RedHat distro kernel 2.4.20,
> not the vanilla one. Oh, well. I might include something like this in the
> RPM, where I can apply the patch or not, depending on whether we're building
> with vanilla kernel or not.
> 

I don't think this is worth it. Just add in the docs that if you have a 
strange kernel it might not compile, and to get a vanilla tree.
The idea is that if you need a strange kernel, you know what you are 
doing and can patch mplayer yourself.
Balatoni Denes | 1 Jul 2003 15:09
Picon

Re: Re: How to play the raw mpeg4 bitstream

Hi!

>From the man page:
 -rawvideo <option1:option2:...>
              This option lets you play raw video files.
              Available options are: [...]

bye
Denes

On 2003. jĂșlius 1. 11.47, swchen wrote:
> > [Automatic answer: RTFM (read DOCS, FAQ), also read DOCS/bugreports.html]
> >
> > swchen wrote:
> > >    I have got a stream encoded with ffmpeg, with file name .m4v,
> > > i can sure it is a raw bitstream without any avi header
> > > i can decode it using ffmpeg, but how to play it using Mplayer??
> > >
> > > ./mplayer movie.m4v
> > > ========= sorry, this file format is not recognized/supported ====
> > >
> > > but i can sure it can be understood by libavcodec, how to solve this
> > > problem??
> >
> > It may be understood by libavformat, but AFAIK, libavcodec does encoding
> > and decoding of video and audio at the frame or sample level; it doesn't
> > know about stream formats. MPlayer doesn't use libavformat, since it has
> > its own demuxers.
>
> thank you, i am also sure ffmpeg use libavformat to find the correct codec
> to decode it.
>
> Is is possible for Mplayer to support MPEG4-ES decoding, as i know,
> mpeg4 is the same mpeg1/mpeg2 bitstream, they don't need globe header,
> we can decode mpeg1/2 bitstream start from anywhere in the bitstream, it
> will search next frame start code and start to decode it.
>
> Why Mplayer can play a MPEG2 elementary stream, but can't play a MPEG4
> elementary stream?? If at this time, Mplayer can't decode a MPEG4-ES, we
> can submit patches to it. But i must know is it true first??
>
> >  You should be able to use ffmpeg itself to put the
> > video in the m4v into an AVI. Then, MPlayer can read it.
> >
> > Jonathan Rogers
>
> and if i use ffmpeg to convert the mpeg4-ES into avi, ffmpeg will decode it
> first then encode it again with avi header .
> (command:--> ffmpeg -i movie.m4v movie.avi) of course, this command works
> fine. But it is waste time and video quallity will be degraded!
>
> someone tell me to use
> ---> ffmpeg -i movie.m4v -vcodec copy movie.avi
> but using this command, it can't played correctly using mplayer, even
> ffmpeg itself can't decode the copyed movie.avi correclty.  It's strange!!
> I think the avi header and because chunk length is fixed to 2048.
>
> I have asked this in ffmpeg, but it seems no one answer.
> other command usage ??
>
> swchen
Ernesto Ferrari | 1 Jul 2003 15:49
Picon

Re: SMIL support for MPlayer

Il lun, 2003-06-30 alle 22:15, Dave Lambley ha scritto:
> On Mon, 2003-06-30 at 19:12, Ernesto Ferrari wrote:
> > Hello everyone,
> > I'd like to know if there's some work going on somewhere about making
> > MPlayer "SMIL-aware", it would be great to have our favourite player
> > supporting those nice features!
> 
> I wrote some code a couple of months back to load SMIL files as
> playlists. CVS MPlayer didn't play the Real RTSP Audio the test file I
> had linked to then. I've just tried and they seems to work now!
> 
> I wrote the code in c++ because it made it easier to write and it uses
> expat. Shall I tidy it up to make a nice patch?

That would be great Dave, then one would simply go like "mplayer
foo.smil"? 
Thanks,
Ernesto
Dave Lambley | 1 Jul 2003 15:56
Picon
Picon

Re: SMIL support for MPlayer

On Tue, 2003-07-01 at 14:49, Ernesto Ferrari wrote:
> Il lun, 2003-06-30 alle 22:15, Dave Lambley ha scritto:
> > On Mon, 2003-06-30 at 19:12, Ernesto Ferrari wrote:
> > > Hello everyone,
> > > I'd like to know if there's some work going on somewhere about making
> > > MPlayer "SMIL-aware", it would be great to have our favourite player
> > > supporting those nice features!
> > 
> > I wrote some code a couple of months back to load SMIL files as
> > playlists. CVS MPlayer didn't play the Real RTSP Audio the test file I
> > had linked to then. I've just tried and they seems to work now!
> > 
> > I wrote the code in c++ because it made it easier to write and it uses
> > expat. Shall I tidy it up to make a nice patch?
> 
> That would be great Dave, then one would simply go like "mplayer
> foo.smil"? 

Yes, it works with URLs too. Do you have any test files or URLs you can
give me? I've only had one to test with,
http://ury.york.ac.uk/listen/live.ram

Cheers,
Dave
Kevin DeKorte | 1 Jul 2003 17:00
Picon
Favicon

gmplayer, gui is blank

I am compiling mplayer from CVS and I have an issue with the gmplayer part. 
When I run mplayer everything works great, but when I run gmplayer I get only 
a black window where the GUI should be. If I right click on the output window 
I get the menu and I can even edit the preferences, but the area where the 
play/puase etc buttons is black. Is there a lib/package I need to have 
installed to see this window.

config:

OS: RedHat 9
mplayer version: CVS

Thanks,

Kevin
Dirk | 1 Jul 2003 17:40
Picon

Re: gmplayer, gui is blank

Kevin DeKorte wrote:

>I am compiling mplayer from CVS and I have an issue with the gmplayer part. 
>When I run mplayer everything works great, but when I run gmplayer I get only 
>a black window where the GUI should be. If I right click on the output window 
>I get the menu and I can even edit the preferences, but the area where the 
>play/puase etc buttons is black. Is there a lib/package I need to have 
>installed to see this window.
>
>config:
>
>OS: RedHat 9
>mplayer version: CVS
>
>Thanks,
>
>Kevin
>
>_______________________________________________
>MPlayer-dev-eng mailing list
>MPlayer-dev-eng <at> mplayerhq.hu
>http://mplayerhq.hu/mailman/listinfo/mplayer-dev-eng
>
>
>  
>
I had the same problem. Starting gmplayer in xterm and waiting for the
soon to be G2 release solved it for me.

Dirk

Gmane