Search found 36 matches

Go to advanced search

by GEFORCEXTREME
29 Nov 2010 09:25
Forum: VLC media player for Linux and friends Troubleshooting
Topic: How to save a copy of video while playing streaming video?
Replies: 0
Views: 422

How to save a copy of video while playing streaming video?

Hi, I would like to record a copy of the video while playing a streaming video. How do I do this? Don't seem able to do this via the Qt4 GUI interface. Can this be done via the command line?

My VLC media player is version 1.20 Git.
by GEFORCEXTREME
19 Oct 2010 07:56
Forum: VLC stream-output (sout)
Topic: Need Clarification on VLC Sout Statistics
Replies: 0
Views: 375

Need Clarification on VLC Sout Statistics

Hi, when a VLC is used as a video stream server, there are 2 statistics. They are, 1) sending bitrate 2) sent bytes My question is, how fast/rapidly does VLC stream out packetised data? Does VLC do it as fast as possible as given by the available bandwidth of the connection (available bandwidth depe...
by GEFORCEXTREME
22 Sep 2010 10:01
Forum: VLC media player for Windows Troubleshooting
Topic: VLC Statistic Bug
Replies: 1
Views: 246

VLC Statistic Bug

Hi, I'm getting weird values from the statistics panel in VLC when I play a media file.

My version of VLC is VLC media player 1.2.0-git TwoFlower.

It have no such problem on VLC 1.06, 1.10 and 1.14. Can anyone tell me how to fix this?
by GEFORCEXTREME
15 Sep 2010 06:38
Forum: Development around libVLC
Topic: Help with Getting Pointer to Objects from Anywhere
Replies: 3
Views: 490

Help with Getting Pointer to Objects from Anywhere

Hi, I would like to collect statistics from VLC and use those statistics for a purpose. You can get what I mean by going to Tools -> Codec Information -> Statistics tab. How do I get the values of these statistics and use it in a module, for etc, x264 (/vlc/modules/codecs/x264.c)? I tried to edit th...
by GEFORCEXTREME
24 Aug 2010 04:51
Forum: VLC stream-output (sout)
Topic: CBR Bitrate Changing On-the-fly
Replies: 2
Views: 1112

Re: CBR Bitrate Changing On-the-fly

Problem solved.
by GEFORCEXTREME
16 Aug 2010 14:11
Forum: VLC stream-output (sout)
Topic: KB/s beim Streamen
Replies: 1
Views: 395

Re: KB/s beim Streamen

Try transcoding.
by GEFORCEXTREME
10 Aug 2010 17:01
Forum: Development around libVLC
Topic: Which functions in libvlc or libvlccore to start streaming?
Replies: 0
Views: 393

Which functions in libvlc or libvlccore to start streaming?

Hi, let's say I want to make a client VLC connect to a VLC server to ask it to start sending a new stream at 5s from the start so that the client can play the new stream. How do I do that? I would prefer to edit and/or use VLC functions codes and then re-"make" to change VLC instead of usi...
by GEFORCEXTREME
09 Aug 2010 10:01
Forum: Development around libVLC
Topic: How to switch between files/streams?
Replies: 0
Views: 437

How to switch between files/streams?

Hi, I'm thinking of this, playing a media file, then get the postion/time, then play another media file from that time. I tried using libvlc_media_player_play, libvlc_media_player_set_media and such. It works, however the first media file is closed first before the 2nd media file is played. Is it po...
by GEFORCEXTREME
15 Jul 2010 05:27
Forum: Development around libVLC
Topic: Please help me understand libvlc vs libvlccore
Replies: 1
Views: 521

Re: Please help me understand libvlc vs libvlccore

Found it, seems like there are placed inside /src/control.
by GEFORCEXTREME
15 Jul 2010 05:01
Forum: Development around libVLC
Topic: Please help me understand libvlc vs libvlccore
Replies: 1
Views: 521

Please help me understand libvlc vs libvlccore

Hi there, I've been trying to experiment with the VLC code for some time. From my limited understanding, external applications and the VLC are compile and link against libVLC. What about libvlccore? Is libvlc compile and link against libvlccore? The many source files in /src folder, all those file c...
by GEFORCEXTREME
22 May 2010 06:37
Forum: VLC stream-output (sout)
Topic: where in the source code is sout
Replies: 2
Views: 375

Re: where in the source code is sout

vlc/src/stream_output
by GEFORCEXTREME
21 May 2010 10:16
Forum: Development around libVLC
Topic: What is the video heap?
Replies: 1
Views: 421

What is the video heap?

vout_thread_t The vout_thread_t structure is much more complex, but you needn't understand everything. Basically the video output thread manages a heap of pictures and subpictures (5 by default). Every picture has a status (displayed, destroyed, empty...) and eventually a presentation time. The main...
by GEFORCEXTREME
21 May 2010 08:55
Forum: VLC stream-output (sout)
Topic: Buffer Level Monitoring
Replies: 0
Views: 271

Buffer Level Monitoring

Hi, I would like to write/edit/add a function that counts the level of buffer of either a)received data from network that is stored in a buffer before decoding or b)data that have been decoded that is stored in a video heap/buffer prior to display. How would I do that, in which files are the buffer ...
by GEFORCEXTREME
06 May 2010 12:05
Forum: VLC stream-output (sout)
Topic: Resizing without changing video codec
Replies: 4
Views: 2457

Re: Resizing without changing video codec

Hi, so you're using ffmpeg to transcode, can't you set it to a better parameters, like maybe lower QP, rf, or higher bitrate?
by GEFORCEXTREME
29 Apr 2010 12:59
Forum: VLC stream-output (sout)
Topic: transcoding quality lower than ffmpeg encoding.
Replies: 7
Views: 5428

Re: transcoding quality lower than ffmpeg encoding.

Ya, it may use the ffmpeg's libraries (libavformat & libavcodec) but the implementation is not the same. ffmpeg main program (ffmpeg.exe in Windows or simply ffmpeg in Linux) is just a program that uses its own libraries. And in ffmpeg, you're doing offline transcoding. In VLC, you're doing onli...
by GEFORCEXTREME
29 Apr 2010 09:41
Forum: VLC stream-output (sout)
Topic: turn off realtime transcoding
Replies: 1
Views: 1193

Re: turn off realtime transcoding

Try streaming to a file (and do not display video during transcoding) to see if it helps. :-)

Let me know of what happens.
by GEFORCEXTREME
29 Apr 2010 09:37
Forum: VLC stream-output (sout)
Topic: Resizing without changing video codec
Replies: 4
Views: 2457

Re: Resizing without changing video codec

Whether you are changing the codec or not, you have to reencode (transcoding) the video if you're trying to change some of the video parameters (frame size, QP, bitrate, frame rate, etc...). I think you're problem stems from not specifying a codec for the video. There is no way to change the frame s...
by GEFORCEXTREME
29 Apr 2010 09:22
Forum: VLC stream-output (sout)
Topic: transcoding quality lower than ffmpeg encoding.
Replies: 7
Views: 5428

Re: transcoding quality lower than ffmpeg encoding.

Were you streaming across a network? Or were you simply doing transcoding using the sout (by streaming to a file)? Did you have a fast enough computer for the transcoding? IMHO, I think transcoding in VLC are done in a some what different way compared to other converters/transcoders. For example, if...
by GEFORCEXTREME
29 Apr 2010 09:10
Forum: Development around libVLC
Topic: Changing Playout Buffer & Buffer Size Monitoring
Replies: 2
Views: 1112

Changing Playout Buffer & Buffer Size Monitoring

Hi all,

How do I change the playout buffer size and monitor its level (to see if it is to over/underun) in VLC. Where do I start looking? Please give me some tips.

Thanks in advance. :-)
by GEFORCEXTREME
17 Apr 2010 00:11
Forum: Development around libVLC
Topic: VLC Qt4 Interface
Replies: 9
Views: 2401

Re: VLC Qt4 Interface

Hi Remi Denis-Courmont, thank you very much. I will try to learn it by other means. Thank you again. :-)
by GEFORCEXTREME
15 Apr 2010 03:32
Forum: Development around libVLC
Topic: VLC Qt4 Interface
Replies: 9
Views: 2401

Re: VLC Qt4 Interface

Hi Remi Denis-Courmont, can you explain what is extension dialog and boilerplate code? Or give me some links I can refer. Thank you, Remi and J-B. Thank you.

Go to advanced search