search for: mpegts

Displaying 6 results from an estimated 6 matches for "mpegts".

Did you mean: mpegs
2009 Jul 16
2
ffmpeg2theora 0.24 regression: accelerated video output (converted from h264)
...th the 0.24 version of ffmpeg2theora. When I try to convert a h264 file to theora... (Note that for size and runtime reasons, foo.mts is a truncated file, I just took the first 32MB of the original file) ffmpeg2theora-0.24.linux32.bin foo.mts -x 1280 -y 720 -o foo-ffmpeg2theora-0.24.ogv Input #0, mpegts, from 'foo.mts': Duration: 00:00:15.83, start: 1.000067, bitrate: 16946 kb/s Program 1 Stream #0.0[0x1011]: Video: h264, yuv420p, 1920x1080 [PAR 1:1 DAR 16:9], 50 tbr, 90k tbn, 50 tbc Stream #0.1[0x1100]: Audio: ac3, 48000 Hz, stereo, s16, 256 kb/s Pixel Aspect Ratio: 1.00/1...
2020 Aug 13
0
GT215 hw video decoder + gst-play-1.0 for mpeg2 = assertion
...e.mpg /GstPlayBin:playbin/GstURIDecodeBin:uridecodebin0: connection-speed = 0 /GstPlayBin:playbin/GstURIDecodeBin:uridecodebin0: source = "\(GstFileSrc\)\ source" /GstPlayBin:playbin/GstURIDecodeBin:uridecodebin0/GstDecodeBin:decodebin0/GstTypeFindElement:typefind.GstPad:src: caps = video/mpegts, systemstream=(boolean)true, packetsize=(int)188 /GstPlayBin:playbin/GstURIDecodeBin:uridecodebin0/GstDecodeBin:decodebin0/GstTypeFindElement:typefind.GstPad:src: caps = NULL /GstPlayBin:playbin/GstURIDecodeBin:uridecodebin0/GstDecodeBin:decodebin0/GstMultiQueue:multiqueue0.GstPad:src_0: caps = vid...
2019 Apr 26
1
Opus in m2ts
Hi Is there existing specification for encapsulation of opus in MPEG transport stream. The only thing I found is this draft https://people.xiph.org/~tterribe/opus/ETSI_TS_opus-v0.1.3-draft.doc. I compared it to https://github.com/FFmpeg/FFmpeg/blob/master/libavformat/mpegts.c and there are few differences
2024 Mar 21
2
Education - 1, 000s, 100, 000's, Millions of listeners. (What kind of infrastructure)
...this. > https://github.com/mbugeia/srt2hls Or you could just use ffmpeg: ffmpeg -hide_banner -i "${icecaststream}" -c:a copy -vn -strftime 1 -f hls -hls_time 6 -hls_list_size 10 -hls_segment_filename "${hlspath}radio-%Y%m%d-%s.ts" -hls_flags delete_segments -segment_format mpegts "${hlspath}radio.m3u8" then you just have a set of files for a normal webserver. Note the c:a copy means there is no transcoding in this instance. If theory the HLS spec only allows for mp3 or aac, but I've abused it by even using opus and not had a problem with the limited number...
2010 Nov 15
1
optimization of theora contract job
...of hardware (cpu) encoding with the existing theora/ffmpeg. Right now we have to downsample 1080 to 480 before we can transcode, so it becomes a two-step ffmpeg process to get a 480 ogg/theora/vorbis done in realtime: One proc: ffmpeg -deinterlace -sws_flags bilinear -i - -vcodec mpeg2video -f mpegts -vb 3000000 -s 852x480 -acodec copy -v 0 -async 2 -croptop 5 -padtop 5 -padcolor 000000 - Another proc: ffmpeg -sws_flags bilinear -i - -vcodec libtheora -f ogg -vb 704000 -r 14.00 -s 852x480 -aspect 16:9 -acodec libvorbis -ar 44100 -ac 2 -ab 64000 -v 0 -async 2 - This would be a contract job...
2024 Mar 21
1
Education - 1, 000s, 100, 000's, Millions of listeners. (What kind of infrastructure)
Looking through HLS, I found this. https://github.com/mbugeia/srt2hls For what I can un As in the liquidsoap link I shared, this is what my links look like. https://github.com/savonet/liquidsoap/discussions/3024 Liquisoap link. music = playlist("https://www.domain.com/Panels/DJ/101.asp",mode="normal") On Thu, Mar 21, 2024 at 4:08?AM <thomas.zumbrunnen at gmail.com>