adding in iniitial

This commit is contained in:
talksik
2023-09-18 08:14:42 -07:00
commit dc7b387ee7
4 changed files with 19 additions and 0 deletions
BIN
View File
Binary file not shown.
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
rm -rf dump.ogg
gst-launch-1.0 pulsesrc ! audioconvert ! vorbisenc ! oggmux ! filesink location=dump.ogg
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
rm -rf test.mp4
export GST_DEBUG=3
gst-launch-1.0 -e v4l2src ! video/x-raw,width=640,height=480,framerate=30/1 ! \
videoconvert ! \
x264enc tune=zerolatency ! \
mux. alsasrc ! queue ! audioconvert ! \
audioresample ! voaacenc ! aacparse ! qtmux name=mux ! \
filesink location=test.mp4 sync=false
BIN
View File
Binary file not shown.