Re: how to join 2 video files with ffmpeg or mencoder

2022-03-20 Thread tomas
On Sun, Mar 20, 2022 at 07:34:53AM -0400, lou wrote: > > Thank tomas! > > it seems i have used wrong keywords > > with "ffmpeg concatenate" as keywords, bing.com can return desired url > > duckduckgo.com seems blocked in china Many thanks for the hint. Cheers -- tomás signature.asc Descrip

Re: how to join 2 video files with ffmpeg or mencoder

2022-03-20 Thread lou
Thank tomas! it seems i have used wrong keywords with "ffmpeg concatenate" as keywords, bing.com can return desired url duckduckgo.com seems blocked in china

Re: how to join 2 video files with ffmpeg or mencoder

2022-03-20 Thread Nicolas George
lou (12022-03-20): > and then resized with same ffmpeg command to reduce file size The advice to use the concat demuxer were sound if it was not for this tidbit of information. Since you are transcoding the files, you should be concatenating before transcoding, as anything else is way less robust.

Re: how to join 2 video files with ffmpeg or mencoder

2022-03-20 Thread tomas
On Sun, Mar 20, 2022 at 06:08:52AM -0400, lou wrote: [...] > i have used bing.com to search answer, but it doesn't show > https://trac.ffmpeg.org/wiki/Concatenate on 1st page May I sell you another search engine, then https://html.duckduckgo.com/html/?q=ffmpeg+concatenate+files Yours above

Re: how to join 2 video files with ffmpeg or mencoder

2022-03-20 Thread lou
Thank Pankaj Jangid and Teemu Likonen! it's more complicated than i thought from https://trac.ffmpeg.org/wiki/Concatenate ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts ffmpeg -i "co

Re: how to join 2 video files with ffmpeg or mencoder

2022-03-20 Thread Teemu Likonen
* 2022-03-20 04:14:47-0400, lou wrote: > i have 2 video files, they are of same format because they are both > created by android's screen recorder and then resized with same ffmpeg > command to reduce file size now i want to concatenate them with ffmpeg > or mencoder how to spec

Re: how to join 2 video files with ffmpeg or mencoder

2022-03-20 Thread Pankaj Jangid
lou writes: > i have 2 video files, they are of same format > > because they are both created by android's screen recorder > > and then resized with same ffmpeg command to reduce file size > > now i want to concatenate them with ffmpeg or mencoder > > how to spec

how to join 2 video files with ffmpeg or mencoder

2022-03-20 Thread lou
i have 2 video files, they are of same format because they are both created by android's screen recorder and then resized with same ffmpeg command to reduce file size now i want to concatenate them with ffmpeg or mencoder how to specify options using either command? Thanks!

Re: Capture screen with mencoder

2020-07-29 Thread Rodolfo Medina
Nicolas George writes: > Rodolfo Medina (12020-07-29): >> Thanks... The reason why I wanted to use mencoder instead of ffmpeg is that >> with the latter, when I tried to capture webcam and audio together, >> especially with my old laptop (but partially also with my new desk

Re: Capture screen with mencoder

2020-07-29 Thread Nicolas George
Rodolfo Medina (12020-07-29): > Thanks... The reason why I wanted to use mencoder instead of ffmpeg is that > with the latter, when I tried to capture webcam and audio together, especially > with my old laptop (but partially also with my new desktop pc), I've been > banged

Re: Capture screen with mencoder

2020-07-29 Thread Long Wind
is it possible to use mplayer to play video from one source and at same time play audio from another source? if it's possible, i think mencoder can be used to record desktop. On Wednesday, July 29, 2020, 2:52:07 AM EDT, Rodolfo Medina wrote: Nicolas George writes: > Rodolf

Re: Capture screen with mencoder

2020-07-28 Thread Rodolfo Medina
Nicolas George writes: > Rodolfo Medina (12020-07-28): >>How can I modify the above command so to capture >> desktop screen instead (with audio)? > > > mencoder does not support capturing the desktop. You may manage to tweak > it to enable libavd

Re: Capture screen with mencoder

2020-07-28 Thread Nicolas George
explained, the desktop is a fundamentally different source than a webcam. mencoder does not support capturing the desktop. You may manage to tweak it to enable libavdevice, but it is completely unsupported, and you would have it easier using ffmpeg directly. Anyway, nowadays, using mencoder is not

Re: Capture screen with mencoder

2020-07-28 Thread Reco
Hi. On Tue, Jul 28, 2020 at 06:18:31PM +, Rodolfo Medina wrote: > $ mencoder tv:// -tv > driver=v4l2:width=640:height=480:device=/dev/video0:forceaudio:alsa:adevice=hw.1,0 > -ovc lavc -oac mp3lame -lameopts cbr:br=64:mode=3 -o webcam.avi > How can I modify the above c

Re: Capture screen with mencoder

2020-07-28 Thread Dan Ritter
Rodolfo Medina wrote: > I posted this to Mplayer mailing list but got no answer so am sharing it here > hoping someone can help... > > I capture my webcam stream with: > > $ mencoder tv:// -tv > driver=v4l2:width=640:height=480:device=/dev/video0:forceaudio:alsa:adevic

Capture screen with mencoder

2020-07-28 Thread Rodolfo Medina
I posted this to Mplayer mailing list but got no answer so am sharing it here hoping someone can help... I capture my webcam stream with: $ mencoder tv:// -tv driver=v4l2:width=640:height=480:device=/dev/video0:forceaudio:alsa:adevice=hw.1,0 -ovc lavc -oac mp3lame -lameopts cbr:br=64:mode=3

Re: Mencoder and ffmpeg

2020-07-27 Thread Rodolfo Medina
uttering, >> background noise, choose of one format rather than other... Mencoder >> instead >> at once easily, with: >> >> $ mencoder tv:// -tv >> driver=v4l2:width=640:height=480:device=/dev/video0:forceaudio:alsa:ad >> evice=hw.1,0 -ovc lavc -oac mp3lame -

Re: Mencoder and ffmpeg

2020-07-26 Thread Thomas Amm
e format rather than other... Mencoder > instead > at once easily, with: > > $ mencoder tv:// -tv > driver=v4l2:width=640:height=480:device=/dev/video0:forceaudio:alsa:ad > evice=hw.1,0 -ovc lavc -oac mp3lame -lameopts cbr:br=64:mode=3 -o > webcam.avi > > did perfectly the

Re: Mencoder and ffmpeg

2020-07-25 Thread Carl Fink
On 7/25/20 9:12 PM, Long Wind wrote: BTW i want ffmpeg script that record desktop plus audio. i don't have time to read its manual. Thanks! https://trac.ffmpeg.org/wiki/Capture/Desktop -- Carl Fink nitpick...@nitpicking.com Read my blog at blog.nitpicking.com. Revie

Re: Mencoder and ffmpeg

2020-07-25 Thread David Wright
stuttering, > > background noise, choose of one format rather than other... Mencoder > > instead > > at once easily, with: > > > >$ mencoder tv:// -tv > > driver=v4l2:width=640:height=480:device=/dev/video0:forceaudio:alsa:adevice=hw.1,0 > > -ovc lavc -o

Re: Mencoder and ffmpeg

2020-07-25 Thread rhkramer
> > stuttering, background noise, choose of one format rather than other... > > Mencoder instead > > > > at once easily, with: > >$ mencoder tv:// -tv > >driver=v4l2:width=640:height=480:device=/dev/video0:forceaudio:alsa:a > >device=hw.

Re: Mencoder and ffmpeg

2020-07-25 Thread Carl Fink
On 7/25/20 2:39 PM, Rodolfo Medina wrote: Hi all. I wanted to capture my webcam streaming and audio using ffmpeg but banged against `a sea of troubles': sync problems, video freezing, video stuttering, background noise, choose of one format rather than other... Mencoder instead at once e

Mencoder and ffmpeg

2020-07-25 Thread Rodolfo Medina
Hi all. I wanted to capture my webcam streaming and audio using ffmpeg but banged against `a sea of troubles': sync problems, video freezing, video stuttering, background noise, choose of one format rather than other... Mencoder instead at once easily, with: $ mencoder tv:// -tv driver

Re: mplayer can't play big file by mencoder

2020-04-29 Thread Long Wind
(UTC) Long Wind wrote: > but i don't have energy to learn new toolsand mencoder work fine most > of time4G limit can be avoided by using several files (instead of > single file) to record Or record to a partition that isn't VFAT. If you have to use a USB device, create an

Re: mplayer can't play big file by mencoder

2020-04-28 Thread Charles Curley
On Tue, 28 Apr 2020 21:50:44 + (UTC) Long Wind wrote: > but i don't have energy to learn new toolsand mencoder work fine most > of time4G limit can be avoided by using several files (instead of > single file) to record Or record to a partition that isn't VFAT. If yo

Re: mplayer can't play big file by mencoder

2020-04-28 Thread Nicolas George
Nemeth Gyorgy (12020-04-28): > The problem is not mplayer nor mencoder but the vfat. Though the vfat > can store max 4GB file but the seek parameter on vfat is a signed > integer instead of an unsigned so the seek is not possible on larger > than 2GB files. You are clearly confu

Re: mplayer can't play big file by mencoder

2020-04-28 Thread Nemeth Gyorgy
2020. 04. 27. 22:57 keltezéssel, Long Wind írta: > You are right. Thanks! > but mencoder return normally, i didn't see any error msg > maybe i have to delete it. > > On Tuesday, April 28, 2020, 3:17:28 AM GMT+8, wrote: > > > On Mon, Apr 27, 2020 at 06:58:19PM +000

Re: mplayer can't play big file by mencoder

2020-04-27 Thread tomas
On Mon, Apr 27, 2020 at 06:58:19PM +, Long Wind wrote: > zhou@debian:~$ ls /mnt/play/output/output192.avi -l > -rwxr-xr-x 1 zhou root 4294967295 Apr 26 17:59 /mnt/play/output/output192.avi > > it's vfat, it's on same disk as debian, i think disk is ok If it's vfat, then there is your problem

Re: mplayer can't play big file by mencoder

2020-04-27 Thread tomas
On Mon, Apr 27, 2020 at 05:55:03PM +0200, Nemeth Gyorgy wrote: > 2020. 04. 26. 21:52 keltezéssel, Long Wind írta: > > i use stretch's mencoder to record a/v > > and use mplayer to play them, it works well > > > > yesterda

Re: mplayer can't play big file by mencoder

2020-04-27 Thread Nemeth Gyorgy
2020. 04. 26. 21:52 keltezéssel, Long Wind írta: > i use stretch's mencoder to record a/v > and use mplayer to play them, it works well > > yesterday i record a big file, about 4GB > mplayer fails to play it, > any idea or player that might help? Thanks! > > below is e

Re: Why does sound encoded with mencoder crackle in debian stretch but not in buster?

2018-10-19 Thread Dan Ritter
On Fri, Oct 19, 2018 at 04:48:17PM +0200, Markus Grunwald wrote: > Hello Dan, > > > Does > > -oac copy > > do the same thing? > No, that works! > > Strange. No, no, it means that you have successfully identified the source of the problem as being ffmpeg's audio conversion. On the other hand, it

Re: Why does sound encoded with mencoder crackle in debian stretch but not in buster?

2018-10-19 Thread Markus Grunwald
Hello Dan, > Does > -oac copy > do the same thing? No, that works! Strange. -- Markus Grunwald https://www.the-grue.de/~markus/markus_grunwald.gpg

Re: Why does sound encoded with mencoder crackle in debian stretch but not in buster?

2018-10-19 Thread Dan Ritter
On Fri, Oct 19, 2018 at 04:09:19PM +0200, Markus Grunwald wrote: > I'm transcoding some TV Series with mencoder. I wrote a script where the > core is: > > mencoder 1.ts -o 1.avi -passlogfile /tmp/tmp.VQ6WZm1tSo/pass.log > -demuxer lavf -nosub -vf softskip,harddup -asp

Why does sound encoded with mencoder crackle in debian stretch but not in buster?

2018-10-19 Thread Markus Grunwald
I'm transcoding some TV Series with mencoder. I wrote a script where the core is: mencoder 1.ts -o 1.avi -passlogfile /tmp/tmp.VQ6WZm1tSo/pass.log -demuxer lavf -nosub -vf softskip,harddup -aspect 16:9 -aid 0 -oac lavc -lavcopts acodec=ac3:abitrate=128 -ovc x264 -x264encopts p

Re: need info on video extraction with mencoder

2018-01-02 Thread deloptes
Long Wind wrote: > Thank deloptes!but where is avidemux?i can't find it in main of stretch I think it is in the debian multimedia repo http://www.deb-multimedia.org deb http://www.deb-multimedia.org stretch main non-free # apt-cache search avidemux avidemux - Free video editor avidemux-qt - Fre

Re: need info on video extraction with mencoder

2018-01-02 Thread deloptes
Long Wind wrote: > they say you can't cut into a frameis there some solution to this problem? > Thanks! try avidemux - it works with frames or other video editing software regards

need info on video extraction with mencoder

2018-01-02 Thread Long Wind
i use mencoder to record tv programsoften i need to remove ad from a video filei use -ss and -endpos switch to select part of a video filebut it doesn't work perfectlyi specify the options in seconds but sometime it may include more video than i needif i shorten time, it may omit some

Re: which option can set duration of mencoder?

2017-08-15 Thread Gene Heskett
On Tuesday 15 August 2017 15:10:45 to...@tuxteam.de wrote: > On Tue, Aug 15, 2017 at 11:28:08AM -0400, Gene Heskett wrote: > > On Tuesday 15 August 2017 09:55:02 mitchell@member.fsf.org wrote: > > > writes: > > > > > > > > > > > > > Disclaimer: sometimes I don't know what I'm doing. > > > >

Re: which option can set duration of mencoder?

2017-08-15 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, Aug 15, 2017 at 11:28:08AM -0400, Gene Heskett wrote: > On Tuesday 15 August 2017 09:55:02 mitchell@member.fsf.org wrote: > > > writes: > > > > > > > > > Disclaimer: sometimes I don't know what I'm doing. > > > Disclaimer(2): the problem

Re: which option can set duration of mencoder?

2017-08-15 Thread Gene Heskett
On Tuesday 15 August 2017 09:55:02 mitchell@member.fsf.org wrote: > writes: > > > > > Disclaimer: sometimes I don't know what I'm doing. > > Disclaimer(2): the problem is, I don't know *when* those times are. > > This made my day. :D I think I'd copyright that one Tomas. ;-) Thats exactly h

Re: which option can set duration of mencoder?

2017-08-15 Thread mitchell . roe
writes: > Disclaimer: sometimes I don't know what I'm doing. > Disclaimer(2): the problem is, I don't know *when* those times are. This made my day. :D -- Mitchell Roe

Re: which option can set duration of mencoder?

2017-08-15 Thread tomas
n: -d > it will record for specified time and exit > mencoder doesn't seem to have such -d That is right. But with -endpos you can do what you want. If you start at the beginning, endpos is the same as duration. If you start at a later point, say t, endpos = duration + t So I hope you can a

Re: which option can set duration of mencoder?

2017-08-15 Thread Darac Marjal
s long and have too many optionsi'm unable to find option i needwhich option should i use to set duration of mencoder?Thanks! (I broke up long line for other reader's comfort) That's strange.. Long Wind's original post came across in six lines for me. It looks like a poem. :)

Re: which option can set duration of mencoder?

2017-08-15 Thread tomas
e: > >> i want to record 60 seconds of tv programi have read mencoder's > >> manualit's long and have too many optionsi'm unable to find option > >> i needwhich option should i use to set duration of mencoder?Thanks! > > > > (I broke up long li

Re: which option can set duration of mencoder?

2017-08-15 Thread Cindy-Sue Causey
ionsi'm unable to find option >> i needwhich option should i use to set duration of mencoder?Thanks! > > (I broke up long line for other reader's comfort) That's strange.. Long Wind's original post came across in six lines for me. It looks like a poem. :) Cindy :) -- C

Re: which option can set duration of mencoder?

2017-08-15 Thread tomas
i use to set duration of mencoder?Thanks! (I broke up long line for other reader's comfort) I think you are looking for option -endpos. Quoting from the manual page: -endpos <[[hh:]mm:]ss[.ms]|size[b|kb|mb]> (also see -ss and -sb) Stop at given time or byte position. NOTE

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Marko Randjelovic
rarer and audio and video were well synchronized. > > > > mencoder -endpos 1800 -o t -oac pcm -ovc x264 -x264encopts > > qp=25:nr=0:preset=ultrafast:keyint_min=10:keyint=125 -tv > > driver=v4l2:device=/dev/video-t:input=0:outfmt=uyvy:chanlist=europe- > > east:width=

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Sven Arvidsson
On Sat, 2016-01-02 at 15:27 +0100, Marko Randjelovic wrote: > This is my standard command which always worked perfectly and now it > doesn't. There were dropped frames from sometimes but uncomparably > rarer and audio and video were well synchronized. > > mencoder -endpos 180

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Marko Randjelovic
On Sat, 02 Jan 2016 14:03:27 +0100 Sven Arvidsson wrote: > Are you using the noskip options in mencoder? This is my standard command which always worked perfectly and now it doesn't. There were dropped frames from sometimes but uncomparably rarer and audio and video were well sync

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Marko Randjelovic
is in mixing audio and video frames. I use default container > > > (AVI). I tried to switch to Matroska and MPEG but got even more > > > problems. > > > > > > I also tried to lower video quality to make sure it's not because of > > > slowness of har

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Sven Arvidsson
On Fri, 2016-01-01 at 19:20 +0100, Marko Randjelovic wrote: > I use Squeeze on this machine. It has TV card: > Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder > > When recording from this TV card with mencoder, every 0.15s on > average, > a message is output fro

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Nicolas George
tried to switch to Matroska and MPEG but got even more > > problems. > > > > I also tried to lower video quality to make sure it's not because of > > slowness of hard drive and it isn't (frames are still dropped). Have you tried ffmpeg? mencoder has not been

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Marko Randjelovic
l dropped). > > > > Regards, > > Marko > > It seems AAC is good one for x264. Check the video vs audio bitrate - try > with fixed bitrate > > regards $ mencoder -of avi -o t.avi -oac lavc -lavcopts acodec=libfaac -ovc x264 -x264encopts bitrate=500:preset

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Marko Randjelovic
ording to 'top', my CPU is 89% idle and mencoder > > is taking only 14% of my CPU. > > This looks good. I don't know the x264 in detail. Look here > http://help.encoding.com/knowledge-base/article/advanced-configuration-options-for-the-libx264-video-codec/ The prob

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Marko Randjelovic
On Sat, 2 Jan 2016 11:53:03 +0100 Marko Randjelovic wrote: > I eliminated all but essential options, but nothing changed. I can further try > only without audio to see if the problem is related to mixing audio and video. With 'noaudio' option, messages about skipped/duplicate frames do not appe

Re: mencoder - Skipped and duplicate frames when recording from TV

2016-01-02 Thread Marko Randjelovic
Quoting deloptes : > Marko Randjelovic wrote: > > > I use Squeeze on this machine. It has TV card: > > Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder > > > > When recording from this TV card with mencoder, every 0.15s on average, > &g

mencoder - Skipped and duplicate frames when recording from TV

2016-01-01 Thread Marko Randjelovic
I use Squeeze on this machine. It has TV card: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder When recording from this TV card with mencoder, every 0.15s on average, a message is output from mencoder: 1 duplicate frame(s)! or Skipping frame! When playing recorded file

Re: Help: mencoder+vdpau / mplayer+vdpau does not work

2014-08-19 Thread Snow Leopard
Hi, ok, next web page states that GeForce 7300 does not support "VDPAU". A quick swap of video card to GeForce 8400 and "mplayer" plays video through "VDPAU" driver with average load on CPU 4%-5%. Looking into "mencoder" issue. Andy On 8/19/2014 7

Re: Help: mencoder+vdpau / mplayer+vdpau does not work

2014-08-19 Thread Snow Leopard
at would be a solution for this problem? Andy On 8/19/2014 7:47 PM, Snow Leopard wrote: Hi, I need a help with mencoder+vdpau video encoding? Yesterday I spent some time to figure it out but without much success. A search in Google did not produce anything usable to get any result. OS:

Help: mencoder+vdpau / mplayer+vdpau does not work

2014-08-19 Thread Snow Leopard
Hi, I need a help with mencoder+vdpau video encoding? Yesterday I spent some time to figure it out but without much success. A search in Google did not produce anything usable to get any result. OS: Debian 6.0 Squeeze Kernel: Linux vega 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35

Re: Scratchy sound when encoding mkv to DVD with mencoder

2011-05-31 Thread François TOURDE
Le 15124ième jour après Epoch, Ron Johnson écrivait: > The same commands applied to the same input created good sound some > weeks ago but now produces bad sound? (That would have been good to > know in your OP.) Yes... and yes. Sorry for omitting this info. It's probably after an upgrade, but

Re: Scratchy sound when encoding mkv to DVD with mencoder

2011-05-30 Thread Ron Johnson
On 05/30/2011 03:36 AM, François TOURDE wrote: Le 15124ième jour après Epoch, William Hopkins écrivait: I don't want to discourage you from posting to debian-user, as someone there may have a solution for you (although I regrettably do not). But may I recommend the mplayer-user ML? Hi. I pr

Re: Scratchy sound when encoding mkv to DVD with mencoder

2011-05-30 Thread François TOURDE
Le 15124ième jour après Epoch, William Hopkins écrivait: > I don't want to discourage you from posting to debian-user, as someone there > may have a solution for you (although I regrettably do not). > But may I recommend the mplayer-user ML? Hi. I prefer post here because I think it's debian &

Re: Scratchy sound when encoding mkv to DVD with mencoder

2011-05-29 Thread Ron Johnson
On 05/29/2011 04:21 PM, François TOURDE wrote: Hi, I've a problem trying to convert a mkv video into a DVD suitable for a home DVD player: I use stable/testing, with debian-multimedia repositories for mplayer and mencoder, and when I try to encode the mkv, I've a scratchy sound, an

Scratchy sound when encoding mkv to DVD with mencoder

2011-05-29 Thread François TOURDE
Hi, I've a problem trying to convert a mkv video into a DVD suitable for a home DVD player: I use stable/testing, with debian-multimedia repositories for mplayer and mencoder, and when I try to encode the mkv, I've a scratchy sound, and only the firsts minuts of the video encoded. Usi

Re: fullscreen video with mencoder

2011-05-04 Thread Bob McGowan
On 05/02/2011 11:36 AM, Leonardo Ruoso wrote: > 2011/4/30 Jeffrin Jose > > > On Sat, Apr 30, 2011 at 03:04:37PM -0400, Rob Owens wrote: > > I think he wants the black bars. What he doesn't want is for the > video > > to get stretched to fill the scr

Re: fullscreen video with mencoder

2011-05-02 Thread Leonardo Ruoso
2011/4/30 Jeffrin Jose > On Sat, Apr 30, 2011 at 03:04:37PM -0400, Rob Owens wrote: > > I think he wants the black bars. What he doesn't want is for the video > > to get stretched to fill the screen, wrecking the aspect ratio in the > > process. > I do not want the black bars. I need the picture

Re: fullscreen video with mencoder

2011-05-02 Thread Ron Johnson
On 05/02/2011 10:58 AM, Jeffrin Jose wrote: On Mon, May 02, 2011 at 09:25:30PM +0530, Jeffrin Jose wrote: On Sun, May 01, 2011 at 11:26:38PM -0500, Ron Johnson wrote: Why don't you accept the lateral black bars? Because it seems to get a bigger view of the Video. I mean bigger view without

Re: fullscreen video with mencoder

2011-05-02 Thread Jeffrin Jose
On Mon, May 02, 2011 at 09:25:30PM +0530, Jeffrin Jose wrote: > On Sun, May 01, 2011 at 11:26:38PM -0500, Ron Johnson wrote: > > Why don't you accept the lateral black bars? > > Because it seems to get a bigger view of the Video. I mean bigger view without blackbars. -- software engineer. depart

Re: fullscreen video with mencoder

2011-05-02 Thread Jeffrin Jose
On Sun, May 01, 2011 at 11:26:38PM -0500, Ron Johnson wrote: > Why don't you accept the lateral black bars? Because it seems to get a bigger view of the Video. -- software engineer. department of computer science rajagiri school of engineering and technology. -- To UNSUBSCRIBE, email to debia

Re: fullscreen video with mencoder

2011-05-01 Thread Ron Johnson
isnormally 720x480(source. it is a VOB file) the target display is my TV which is 1920x1080 capable and 16/9 capable. i will list some of the things i did ... mencoder Stage.Beauty.VOB -o Stage.Beauty.avi -sid 0 -oac \ mp3lame -lameopts br=192:cbr:vol=6 -ovc xvid -xvidencopts \ pass

Re: fullscreen video with mencoder

2011-05-01 Thread Jeffrin Jose
x480(source. it is a VOB file) the target display is my TV which is 1920x1080 capable and 16/9 capable. i will list some of the things i did ... mencoder Stage.Beauty.VOB -o Stage.Beauty.avi -sid 0 -oac \ mp3lame -lameopts br=192:cbr:vol=6 -ovc xvid -xvidencopts \ pass=1 -vf crop=720:432:0:7

Re: fullscreen video with mencoder

2011-04-30 Thread Ron Johnson
On 05/01/2011 01:34 AM, Doug wrote: [snip] Maybe I missed something along the way, but I think there is a more-or- less standard that just chops the sides off wide-screen pictures and fills the screen with the center 4x3 section of picture. That's called pan-and-scan, and you must manually spec

Re: fullscreen video with mencoder

2011-04-30 Thread Doug
On 04/30/2011 11:53 PM, Boyd Stephen Smith Jr. wrote: In<20110430212842.ga16...@debian.jeff>, Jeffrin Jose wrote: On Sat, Apr 30, 2011 at 03:04:37PM -0400, Rob Owens wrote: I think he wants the black bars. What he doesn't want is for the video to get stretched to fill the screen, wrecking the

Re: fullscreen video with mencoder

2011-04-30 Thread Boyd Stephen Smith Jr.
In <20110430212842.ga16...@debian.jeff>, Jeffrin Jose wrote: >On Sat, Apr 30, 2011 at 03:04:37PM -0400, Rob Owens wrote: >> I think he wants the black bars. What he doesn't want is for the video >> to get stretched to fill the screen, wrecking the aspect ratio in the >> process. > >I do not want t

Re: fullscreen video with mencoder

2011-04-30 Thread Arnt Karlsen
On Sat, 30 Apr 2011 17:33:54 -0500, Ron wrote in message <4dbc8e52.7070...@cox.net>: > On 04/30/2011 04:28 PM, Jeffrin Jose wrote: > > On Sat, Apr 30, 2011 at 03:04:37PM -0400, Rob Owens wrote: > >> I think he wants the black bars. What he doesn't want is for the > >> video to get stretched to f

Re: fullscreen video with mencoder

2011-04-30 Thread Ron Johnson
On 04/30/2011 04:28 PM, Jeffrin Jose wrote: On Sat, Apr 30, 2011 at 03:04:37PM -0400, Rob Owens wrote: I think he wants the black bars. What he doesn't want is for the video to get stretched to fill the screen, wrecking the aspect ratio in the process. I do not want the black bars. I need the

Re: fullscreen video with mencoder

2011-04-30 Thread Andrei Popescu
On Du, 01 mai 11, 02:58:43, Jeffrin Jose wrote: > On Sat, Apr 30, 2011 at 03:04:37PM -0400, Rob Owens wrote: > > I think he wants the black bars. What he doesn't want is for the video > > to get stretched to fill the screen, wrecking the aspect ratio in the > > process. > > I do not want the blac

Re: fullscreen video with mencoder

2011-04-30 Thread Jeffrin Jose
On Sat, Apr 30, 2011 at 03:04:37PM -0400, Rob Owens wrote: > I think he wants the black bars. What he doesn't want is for the video > to get stretched to fill the screen, wrecking the aspect ratio in the > process. I do not want the black bars. I need the picture to be fullscreen without getting

Re: fullscreen video with mencoder

2011-04-30 Thread Leonardo Ruoso
DVD to a fullscreen > video without getting stretched,using mencoder ? > > > -- > software engineer. > department of computer science > rajagiri school of engineering and technology. > > > -- > To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org > with

Re: fullscreen video with mencoder

2011-04-30 Thread Ron Johnson
On 04/30/2011 02:04 PM, Rob Owens wrote: On Sat, Apr 30, 2011 at 01:12:36PM -0500, Ron Johnson wrote: On 04/30/2011 11:07 AM, Jeffrin Jose wrote: Hello Everybody, Is there any method to encode DVD to a fullscreen video without getting stretched,using mencoder ? I don't think that men

Re: fullscreen video with mencoder

2011-04-30 Thread Rob Owens
On Sat, Apr 30, 2011 at 01:12:36PM -0500, Ron Johnson wrote: > On 04/30/2011 11:07 AM, Jeffrin Jose wrote: > >Hello Everybody, > > > >Is there any method to encode DVD to a fullscreen > >video without getting stretched,using mencoder ? > > > > I don'

Re: fullscreen video with mencoder

2011-04-30 Thread Ron Johnson
On 04/30/2011 11:07 AM, Jeffrin Jose wrote: Hello Everybody, Is there any method to encode DVD to a fullscreen video without getting stretched,using mencoder ? I don't think that mencoder is the right tool for that task. "Let the player handle full screen" is what I say.

Re: fullscreen video with mencoder

2011-04-30 Thread Rob Owens
On Sat, Apr 30, 2011 at 09:37:25PM +0530, Jeffrin Jose wrote: > Hello Everybody, > > Is there any method to encode DVD to a fullscreen > video without getting stretched,using mencoder ? > I'm not an expert, but maybe you could use '-vf expand' to do this. -Rob

fullscreen video with mencoder

2011-04-30 Thread Jeffrin Jose
Hello Everybody, Is there any method to encode DVD to a fullscreen video without getting stretched,using mencoder ? -- software engineer. department of computer science rajagiri school of engineering and technology. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a

Re: [Solved] Unable to install mencoder debian package from debian-multimedia.org.

2009-08-13 Thread Thomas Anderson
> All these -1 values look odd/wrong to me.  Note how on my system that > debian-multimedia has a priority of 500, equal to that of ftp.us.debian.org. >  That could be your problem. Thanks. After I simply deleted my /etc/apt/preferences file (it is not installed by default on a vanilla debian inst

Re: Unable to install mencoder debian package from debian-multimedia.org.

2009-08-12 Thread Ron Johnson
On 2009-08-12 07:43, Thomas Anderson wrote: [snip] todu:/home/tommy# Seems ok to me. The I get this: todu:/home/tommy# apt-cache policy Package files: 100 /var/lib/dpkg/status release a=now -1 http://debian-multimedia.org lenny/main Translation-en_US -1 http://debian-multimedia.org le

Re: Unable to install mencoder debian package from debian-multimedia.org.

2009-08-12 Thread Thomas Anderson
gt; But I cannot install any package from that repository. I get this error >>>> message: >>>> >>>> # apt-get install mencoder >>>> Reading package lists... Done >>>> Building dependency tree >>>> Reading state information..

Re: Unable to install mencoder debian package from debian-multimedia.org.

2009-08-12 Thread Thomas Anderson
>> >> I have the following entry in my sources.list file: >> >> >> >> deb http://www.debian-multimedia.org lenny main >> > >> > shouldn't it be: deb http://debian-multimedia.org lenny main       ??? >> >> The instructions on http://debian-multimedia.org/ says that the >> "www."-part should be inclu

Re: Unable to install mencoder debian package from debian-multimedia.org.

2009-08-12 Thread Ron Johnson
On 2009-08-12 06:19, Thomas Anderson wrote: I have the following entry in my sources.list file: deb http://www.debian-multimedia.org lenny main But I cannot install any package from that repository. I get this error message: # apt-get install mencoder Reading package lists... Done Building

Re: Unable to install mencoder debian package from debian-multimedia.org.

2009-08-12 Thread Rustam
On Wed, 2009-08-12 at 13:23 +0200, Thomas Anderson wrote: > >> I have the following entry in my sources.list file: > >> > >> deb http://www.debian-multimedia.org lenny main > > > > shouldn't it be: deb http://debian-multimedia.org lenny main ??? > > The instructions on http://debian-multimed

Re: Unable to install mencoder debian package from debian-multimedia.org.

2009-08-12 Thread Thomas Anderson
>> I have the following entry in my sources.list file: >> >> deb http://www.debian-multimedia.org lenny main >> >> But I cannot install any package from that repository. I get this error >> message: >> >> # apt-get install mencoder >> Rea

Re: Unable to install mencoder debian package from debian-multimedia.org.

2009-08-11 Thread Andrew Reid
On Tuesday 11 August 2009 17:58:48 Thomas Anderson wrote: > I have the following entry in my sources.list file: > > deb http://www.debian-multimedia.org lenny main > > But I cannot install any package from that repository. Try a mirror, there's a list of them at: http://debian-multimedia.org/deb

Re: Unable to install mencoder debian package from debian-multimedia.org.

2009-08-11 Thread Ron Johnson
On 2009-08-11 16:58, Thomas Anderson wrote: I have the following entry in my sources.list file: deb http://www.debian-multimedia.org lenny main But I cannot install any package from that repository. I get this error message: # apt-get install mencoder Reading package lists... Done Building

Unable to install mencoder debian package from debian-multimedia.org.

2009-08-11 Thread Thomas Anderson
I have the following entry in my sources.list file: deb http://www.debian-multimedia.org lenny main But I cannot install any package from that repository. I get this error message: # apt-get install mencoder Reading package lists... Done Building dependency tree Reading state information

Re: How can I install mencoder on Lenny?

2009-03-24 Thread Daryl Styrk
Thomas Weinbrenner wrote: My advice is to read what's written on http://debian-multimedia.org/. Because these questions are answered there. And don't forget the key.. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listma

Re: How can I install mencoder on Lenny?

2009-03-24 Thread Thomas Weinbrenner
Csanyi Pal writes: > If I can to install mencoder from http://debian-multimedia.org/ then > what to put in sources.list and mayhep what keyring to install? > > Any advices will be appreciated! My advice is to read what's written on http://debian-multimedia.org/. Because th

How can I install mencoder on Lenny?

2009-03-24 Thread Csanyi Pal
Hi, I want to install mencoder on Lenny. aptitude search mencoder give me nothing. If I can to install mencoder from http://debian-multimedia.org/ then what to put in sources.list and mayhep what keyring to install? Any advices will be appreciated! -- Regards, Paul Csanyi http

Re: mencoder crash permanently

2008-11-19 Thread Michelle Konzack
Am 2008-11-18 16:33:44, schrieb Jochen Schulz: > You might want to use -r to use the samt framerate as in the input file. > But only after upgrading your ancient ffmpeg, of course. The problem is, the NEW version does not run on my TP570. I have back- ported it but it crash the WHOLE laptop if I

Re: mencoder crash permanently

2008-11-18 Thread Jochen Schulz
Michelle Konzack: > Am 2008-11-17 14:18:26, schrieb Michelle Konzack: >> Now I have tried >> >> ffmpeg -i 2007-08-05_Tehran.flv 2007-08-05_Tehran.mp4 >> >> But the video looks a little bit weird... Define "weird". By the way, it might help to set a bitrate and video dimensions (-b, -s). > A

  1   2   >