Can someone convert this 0.8x command line to 0.9x

For questions and discussion that is NOT (I repeat NOT) specific to a certain Operating System.
FFMG
Blank Cone
Blank Cone
Posts: 17
Joined: 09 Jan 2008 07:29
Operating System: Windows
Contact:

Can someone convert this 0.8x command line to 0.9x

Postby FFMG » 06 Nov 2008 10:48

Hi,

I have been a happy user of 0.86 for many months and I 'upgraded' to 0.94.
I used to use Piger to start a recoring and this was the command line argument that I was using, (and of course it was working fine).

Code: Select all

-vvv mms://myserver.com :sout=%vlc_transcode%:std{access=file,mux=mpeg1,dst=c:\\test.mpg}
This used to work flawlessly in 0.86 but now it does not work anymore, the error I get is
Streaming / Transcoding failed:
VLC could not open the encoder.
I can I get the command line arguments to work again?

Thanks

F.

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Can someone convert this 0.8x command line to 0.9x

Postby Jean-Baptiste Kempf » 06 Nov 2008 11:02

What OS ?
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

FFMG
Blank Cone
Blank Cone
Posts: 17
Joined: 09 Jan 2008 07:29
Operating System: Windows
Contact:

Re: Can someone convert this 0.8x command line to 0.9x

Postby FFMG » 06 Nov 2008 11:07

What OS ?
Well, it is WinXP but I wouldn't have thought it mattered.
Are command line arguments OS specific?

F.

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Can someone convert this 0.8x command line to 0.9x

Postby Jean-Baptiste Kempf » 06 Nov 2008 11:14

mux=mpeg1 seems more than weird to me.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

Rémi Denis-Courmont
Developer
Developer
Posts: 15337
Joined: 07 Jun 2004 16:01
VLC version: master
Operating System: Linux
Contact:

Re: Can someone convert this 0.8x command line to 0.9x

Postby Rémi Denis-Courmont » 06 Nov 2008 20:47

The transcode parameter is expanded to something wrong. Impossible to tell why because you did not include in your query.
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded

FFMG
Blank Cone
Blank Cone
Posts: 17
Joined: 09 Jan 2008 07:29
Operating System: Windows
Contact:

Re: Can someone convert this 0.8x command line to 0.9x

Postby FFMG » 06 Nov 2008 21:39

The transcode parameter is expanded to something wrong. Impossible to tell why because you did not include in your query.
Sorry what do you mean by query?

I already included the command line arguments,

Code: Select all

-vvv mms://myserver.com :sout=%vlc_transcode%:std{access=file,mux=mpeg1,dst=c:\\test.mpg}
What other information do you need?

F.

Arite
Big Cone-huna
Big Cone-huna
Posts: 2478
Joined: 26 Jun 2007 20:40
VLC version: 3.0.20
Operating System: Debian Testing|Win10

Re: Can someone convert this 0.8x command line to 0.9x

Postby Arite » 07 Nov 2008 03:14

Sorry what do you mean by query?
There is no "#transcode{...}" section in your query (or commandline). Since you appear to have replaced it with "%vlc_transcode%".

Try this sout string, editing you #transcode{...} parameters accordingly (creating using the "Stream Output" section in VLC's Qt4 interface :)):

Code: Select all

:sout=#transcode{vcodec="mp1v",vb="800",scale="1",acodec="mpga",ab="128",channels="2"}:std{access="file",mux="mpeg",dst="C:\test.mpg"}
i.e. mux should be "mpeg" not "mpeg1" AFAIK.

Arite.
Don't use PMs for support questions.

FFMG
Blank Cone
Blank Cone
Posts: 17
Joined: 09 Jan 2008 07:29
Operating System: Windows
Contact:

Re: Can someone convert this 0.8x command line to 0.9x

Postby FFMG » 10 Nov 2008 12:53

... Since you appear to have replaced it with "%vlc_transcode%".

Try this sout string, editing you #transcode{...} parameters accordingly (creating using the "Stream Output" section in VLC's Qt4 interface :)):

Code: Select all

:sout=#transcode{vcodec="mp1v",vb="800",scale="1",acodec="mpga",ab="128",channels="2"}:std{access="file",mux="mpeg",dst="C:\test.mpg"}
i.e. mux should be "mpeg" not "mpeg1" AFAIK.

Arite.
Sorry, you are right, I did not quote the query properly.

This is what I was using:

Code: Select all

vlc.exe -vvv mms://foo.bar :sout=#transcode{vcodec=mp1v,acodec=mpga,vb=256}:duplicate{dst=display,dst=std{access=file,mux=mpeg,dst=c:\\test.mpg}}
If I use that query I get the same error, "Streaming / Transcoding failed:VLC could not open the encoder."

Using the code you gave:

Code: Select all

vlc.exe -vvv mms://foo.bar :sout=#transcode{vcodec="mp1v",vb="800",scale="1",acodec="mpga",ab="128",channels="2"}:std{access="file",mux="mpeg",dst="C:\test.mpg"}
Does not start recording at all and does not give any errors, (but it creates an empty file)

F.

Rémi Denis-Courmont
Developer
Developer
Posts: 15337
Joined: 07 Jun 2004 16:01
VLC version: master
Operating System: Linux
Contact:

Re: Can someone convert this 0.8x command line to 0.9x

Postby Rémi Denis-Courmont » 10 Nov 2008 16:15

Sounds like your distro has removed MPEG emcoding
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded


Return to “General VLC media player Troubleshooting”

Who is online

Users browsing this forum: No registered users and 32 guests