Browse Source

Use AVI instead of MP4 for testing

The codecs used for AVI seem to have less of an impact than the MP4
codecs at the moment.
jp9000 11 years ago
parent
commit
d4ad1d5c10
2 changed files with 8 additions and 20 deletions
  1. 7 19
      obs/forms/NameDialog.ui
  2. 1 1
      obs/window-basic-main.cpp

+ 7 - 19
obs/forms/NameDialog.ui

@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>555</width>
-    <height>104</height>
+    <height>102</height>
    </rect>
   </property>
   <property name="sizePolicy">
@@ -33,29 +33,17 @@
      </property>
     </widget>
    </item>
-   <item alignment="Qt::AlignBottom">
-    <widget class="QWidget" name="widget" native="true">
+   <item>
+    <widget class="QLineEdit" name="userText">
      <property name="sizePolicy">
-      <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
+      <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
-     <layout class="QFormLayout" name="formLayout">
-      <item row="0" column="1">
-       <widget class="QLineEdit" name="userText">
-        <property name="sizePolicy">
-         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
-          <horstretch>0</horstretch>
-          <verstretch>0</verstretch>
-         </sizepolicy>
-        </property>
-        <property name="text">
-         <string notr="true"/>
-        </property>
-       </widget>
-      </item>
-     </layout>
+     <property name="text">
+      <string notr="true"/>
+     </property>
     </widget>
    </item>
    <item>

+ 1 - 1
obs/window-basic-main.cpp

@@ -547,7 +547,7 @@ void OBSBasic::on_recordButton_clicked()
 	} else {
 		QString path = QFileDialog::getSaveFileName(this,
 				"Please enter a file name", QString(),
-				"Video Files (*.mp4)");
+				"Video Files (*.avi)");
 
 		if (path.isNull() || path.isEmpty())
 			return;