Searched refs:h264 (Results 1 – 11 of 11) sorted by relevance
1 # play-from-disk-h2643 play-from-disk-h264 demonstrates how to send h264 video and/or audio to your browser from files sav…14 ### Build play-from-disk-h26417 cargo build --example play-from-disk-h26420 ### Open play-from-disk-h264 example page24 ### Run play-from-disk-h264 with your browsers SessionDescription as stdin26 The `output.h264` you created should be in the same directory as `play-from-disk-h264`. In the jsfi…30 …ho $BROWSER_SDP | ./target/debug/examples/play-from-disk-h264 -v examples/test-data/output.h264 -a…35 1. Run `./target/debug/examples/play-from-disk-h264 -v examples/test-data/output.h264 -a examples/t…37 ### Input play-from-disk-h264's SessionDescription into your browser[all …]
175 let mut h264 = H264Reader::new(reader, 1_048_576); in main() localVariable187 let nal = match h264.next_nal() { in main()
1 # save-to-disk-h2643 save-to-disk-h264 is a simple application that shows how to record your webcam/microphone using Web…7 ### Build save-to-disk-h26410 cargo build --example save-to-disk-h26417 ### Run save-to-disk-h264, with your browsers SessionDescription as stdin23 Run `echo $BROWSER_SDP | ./target/debug/examples/save-to-disk-h264`28 1. Run `./target/debug/examples/save-to-disk-h264 < my_file`30 ### Input save-to-disk-h264's SessionDescription into your browser32 Copy the text that `save-to-disk-h264` just emitted and copy into second text area36 In the folder you ran `save-to-disk-h264` you should now have a file `output.h264` play with your v…
196 let h264 = H264Packet::default(); in test_h264_partition_head_checker_is_partition_head() localVariable199 !h264.is_partition_head(&empty_nalu), in test_h264_partition_head_checker_is_partition_head()205 h264.is_partition_head(&single_nalu), in test_h264_partition_head_checker_is_partition_head()211 h264.is_partition_head(&stapa_nalu), in test_h264_partition_head_checker_is_partition_head()217 h264.is_partition_head(&fua_start_nalu), in test_h264_partition_head_checker_is_partition_head()223 !h264.is_partition_head(&fua_end_nalu), in test_h264_partition_head_checker_is_partition_head()229 h264.is_partition_head(&fub_start_nalu), in test_h264_partition_head_checker_is_partition_head()235 !h264.is_partition_head(&fub_end_nalu), in test_h264_partition_head_checker_is_partition_head()
88 name = "play-from-disk-h264"89 path = "examples/play-from-disk-h264/play-from-disk-h264.rs"118 name = "save-to-disk-h264"119 path = "examples/save-to-disk-h264/save-to-disk-h264.rs"
2 pub(crate) mod h264; module5 use crate::rtp_transceiver::fmtp::h264::H264Fmtp;
2 pub mod h264; module
7 use rtp::codecs::h264::H264Packet;
10 - [x] [Play from Disk H264](play-from-disk-h264): The play-from-disk-h264 example demonstrates how …14 - [x] [Save to Disk H264](save-to-disk-h264): The save-to-disk example shows how to record your web…
68 Ok(Box::<rtp::codecs::h264::H264Payloader>::default()) in payloader_for_codec()
125 cargo build --example play-from-disk-h264 # build play-from-disk-h264 example only