The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

how reset PTS while converting with FFMPEG

While converting *.ts file with ffmpeg, I want to set the start pts to be 10, or other pts. How can I do that? some people said setpts can help. I tried, but failed. Maybe my command is not correct, ...
0
votes
0answers
40 views

Determining which pts-es were allocated by building a pseudo-serial-port

I have a bit of C code I found in linuxForums that is a simple way to build a pseudo serial port (below). The method used has the linux OS tell me the names of the pts-es it created. My goal is to ...
0
votes
1answer
69 views

How to capture stdout from another pts?

I have say two terminal sessions pts/10 and pts/11. In pts/10, I want to capture the stdout of any process that takes place in pts/11 and redirect it to a file. I know that the output can be ...
0
votes
1answer
187 views

Why container and codec has different time base?

I used ffmpeg to get video info. The output is Duration: 00:05:57.00, start: 0.000000, bitrate: 611 kb/s Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 808x610, 609 kb/s, 25 ...
3
votes
1answer
1k views

Understanding PTS and DTS in video frames

I had fps issues when transcoding from avi to mp4(x264). Eventually the problem was in PTS and DTS values, so lines 12-15 where added before av_interleaved_write_frame function: 1. AVFormatContext* ...
0
votes
0answers
541 views

VLC: “avcodec error: more than 5 seconds of late video”

I'm muxing mpeg4 video to avi container. The video stream is ~4fps, so I set AVCodecContext time_base to 1/4 (formatContext->streams[0]->codec->time_base...) , and then rescal each frame ...
1
vote
1answer
186 views

why there are 23 files in /dev/pts while only 8 pts are showed using who command?

only 8 pts files are used [root@home tmp]# who root pts/2 2012-08-15 18:36 (:pts/1:S.0) root pts/6 2012-08-21 16:36 (10.10.11.168) root pts/3 2012-08-15 19:24 ...
0
votes
0answers
72 views

video recording from ipcamera does not have avsync

I developed code for recording video from ipcamera. which stores in AVI format.I am able to record both audio and video but there is no sync.I think this is problem with PTS.how to find PTS value in ...
0
votes
1answer
222 views

sshpass throwing error 'Failed to get a pseudo terminal: Success'

I am trying to run the sshpass tool to automate an sftp action. On another server, the command works, but on this server it just returns one line of error mesage. Here is the command I am using: ...
2
votes
3answers
203 views

How to Obtain Pseudo Terminal Master file descriptor from inside ssh session?

in C or bash, I was wondering how, if possible, do you obtain from inside an ssh session, the file descriptor to the pseudo terminal master responsible for getting input to that's session's ...
0
votes
1answer
98 views

Unix - Associate local IP to pts?

3 ppl (A B C) are connected to a local server (S1) through SSH (putty, or Unix console), with the same username (foobar). Is there a way to associate their own IP to the pts they create ? For ...
1
vote
1answer
1k views

monitoring and logging /dev/pts/1, under linux

I want to monitor and log a pseudo-terminal device /dev/pts/12 (for debugging purposes), i.e. I want to see what gets written to the terminal and I do not want any process using the terminal to ...
0
votes
3answers
401 views

writing to terminal from Java

Process proc = new ProcessBuilder("xterm").start(); How can I write and execute commands into this xterm window after the process has been initiated? In my application I definitely do require ...
0
votes
1answer
624 views

Syncing decoded video using Ffmpeg

I am using Ffmpeg to decode and play video files. I have currently got the video playing and the audio playing at as fast as the CPU can decode and display them. The problem is that I want to play the ...
1
vote
0answers
1k views

ffmpeg +libx264 iPhone -> 'avcodec_encode_video' return always 0 . please advice

av_register_all(); AVCodec *codec; AVCodecContext *c= NULL; int out_size, size, outbuf_size; //FILE *f; uint8_t *outbuf; ...
2
votes
1answer
541 views

Getting PTS from MPEG-4?

I'm trying to get the PTS value from a MPEG-4 video that I'm streaming using RTP without using Transport Stream (TS). I've been able to get this value when muxing the video in TS, but now I want to ...
1
vote
2answers
6k views

Audio/video synchronization, TS MPEG2;H264/AVC, understanding PTS in Handbrake

Synchronization has always fascinated me, or to be precise: why a .ts can be viewed in sync by media players, while the demuxed audio+video reassembled is out of sync. So I'm trying to understand ...
5
votes
1answer
1k views

What is PTS in reference to video encoding?

Could someone briefly explain what the acronym PTS means in reference to video encoding?
0
votes
2answers
77 views

Points (PTS) in flash game

A friend to me made a flash game for my website. The game makes a request to /game/p00ints.php with the points in $_POST['points']. But, a hacker can easy find out how to get more points I guess, so, ...
3
votes
3answers
5k views

Can the ffmpeg av libs return an accurate PTS?

I'm working with an mpeg stream that uses a IBBP... GOP sequence. The (DTS,PTS) values returned for the first 4 AVPackets are as follows: I=(0,3) B=(1,1) B=(2,2) P=(3,6) The PTS on the I frame looks ...