Search found 15 matches

Go to advanced search

by acffilterece
15 Dec 2020 19:39
Forum: VLC media player for Windows Troubleshooting
Topic: Picture and sound slowdown in DVD images (video_ts)
Replies: 8
Views: 534

Re: Picture and sound slowdown in DVD images (video_ts)

Is your PC powerful enough to decode DivX in real time?
by acffilterece
15 Dec 2020 19:37
Forum: VLC stream-output (sout)
Topic: How to stream Video using VLC in http to other computer
Replies: 2
Views: 775

Re: How to stream Video using VLC in http to other computer

You could try setting up your firewall so that it only accepts connections from one specific IP address. Also, are you absolutely positively sure your PC is powerful enough to encode H.265 in real time?
by acffilterece
15 Dec 2020 19:33
Forum: General VLC media player Troubleshooting
Topic: Live view multiple RTSP streams efficiently
Replies: 6
Views: 9561

Re: Live view multiple RTSP streams efficiently

...and have it spit out a new RTSP stream... Suggestion: use FFmpeg with the h-, vstack filters, then use ffserver to stream the encoded content. Note that, depending on codec, number of stacked streams, computer power, and eventual post-processing done, the encoded stream is either too big for you...
by acffilterece
15 Dec 2020 18:46
Forum: VLC media player for Linux and friends Troubleshooting
Topic: VLC Stutters on Manjaro?
Replies: 2
Views: 312

Re: VLC Stutters on Manjaro?

Try using

Code: Select all

--input-fast-seek
to turn on fast seeking, which will cost seeking precision.
Is your problem exclusive to VLC?
by acffilterece
02 Dec 2020 21:10
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Converting files in VLC and applying filters
Replies: 11
Views: 1016

Re: Converting files in VLC and applying filters

It is not a filtering/converting/transcoding framework.

Wrong, VLC also has these abilities.
It definitely does, the point I was attempting to make was that that doesn't appear to be its primary purpose and that I personally find FFmpeg to be better-suited for this purpose. Thanks!
by acffilterece
02 Dec 2020 21:01
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Video filters: Arguments are wordsplit
Replies: 2
Views: 186

Re: Video filters: Arguments are wordsplit

Thanks a lot, is there a way to pass lavfi filters to VLC?
by acffilterece
01 Dec 2020 17:58
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Converting files in VLC and applying filters
Replies: 11
Views: 1016

Re: Converting files in VLC and applying filters

VLC is a media player. It is not a filtering/converting/transcoding framework. Please use FFmpeg for this purpose.
by acffilterece
01 Dec 2020 17:52
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Streaming from IP Cam: Windows = OK, Raspbian = NOK
Replies: 1
Views: 152

Re: Streaming from IP Cam: Windows = OK, Raspbian = NOK

This could be a decoding error. If this is a H.264/5 stream, this may well be the fault of the hardware decoder. In this case, use x264/5.
by acffilterece
01 Dec 2020 17:47
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Videos in the Avi xvid mpeg4 container do not play
Replies: 1
Views: 245

Re: Videos in the Avi xvid mpeg4 container do not play

You can use FFmpeg to decode the video, then pipe to VLC. IIRC, you can also use libavcodec directly.
by acffilterece
01 Dec 2020 17:42
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Install error libdav1d.so.4()(64bit)
Replies: 1
Views: 334

Re: Install error libdav1d.so.4()(64bit)

You can safely choose to break it if you do not wish to decode AV1. It will become inevitable soon though, and you will either need to update/upgrade your package manager's stuff, or compile dav1d from source.
by acffilterece
01 Dec 2020 17:29
Forum: VLC media player for Linux and friends Troubleshooting
Topic: VLC 3.11.1 can't play video on my old 32-bit notebook
Replies: 8
Views: 683

Re: VLC 3.11.1 can't play video on my old 32-bit notebook

If you're using hardware acceleration, it seems to be either: - vlc seeing hw accel where there isn't any - vlc using hw accel incorrectly if not, your computer is likely too slow, and graphical errors are likely due to the "hurry up" feature, which allows frames to be partially decoded to...
by acffilterece
01 Dec 2020 17:21
Forum: VLC media player for Linux and friends Troubleshooting
Topic: How can I move the VLC window by dragging the video screeen
Replies: 7
Views: 10046

Re: How can I move the VLC window by dragging the video screeen

I believe this is something you must configure in your window manager as opposed to VLC.
by acffilterece
01 Dec 2020 17:18
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Extracting screenshots from DVB TS stream
Replies: 2
Views: 194

Re: Extracting screenshots from DVB TS stream

To my (admittedly limited) knowledge, you wouldn't want to use a video player to extract frames from a video stream. I suggest you use FFmpeg instead:

Code: Select all

mkdir frames; ffmpeg -i capture.ts frames/frame%05d.png
. This may not be the best way to go about this, but it should fit the purpose better.
by acffilterece
01 Dec 2020 17:12
Forum: VLC media player for Linux and friends Troubleshooting
Topic: I want to stream Youtube videos is 360p only ... Please tell me the procedure
Replies: 4
Views: 644

Re: I want to stream Youtube videos is 360p only ... Please tell me the procedure

I highly suggest you use youtube-dl for this purpose. It is unfathomably versatile, supports a mind-blowing variety of sites and, yes, fixes your problem. For example, youtube-dl --format 'best[height<=360]/worst' <url> -o- | vlc - would give you the best stream containing audio and video with a res...
by acffilterece
01 Dec 2020 16:54
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Video filters: Arguments are wordsplit
Replies: 2
Views: 186

Video filters: Arguments are wordsplit

I have attempted to specify a simple lavfi filtergraph (1 input, 1 output) of the form filter=key1=arg1:key2=arg2 with the --video-filter option. VLC split the arguments to the filter into words where : was the separator, which it appeared to treat as separate filters. I thought of several possible ...

Go to advanced search