this->prompt_video_compression = prompt_video_compression;
this->file_per_label = file_per_label;
+
+ if(asset->format == FILE_UNKNOWN)
+ asset->format = FILE_FFMPEG;
//printf("FormatTools::create_objects 1\n");
if(!recording)
<html>
<body>
<script type="text/javascript">
-var userLang = navigator.language || navigator.userLanguage;
+var B_Lang = window.navigator.language||navigator.browserLanguage;
+var userLang = B_Lang.slice(0,2);
var ref = 'ShellCmds_en.html';
switch(userLang){
- case 'ru': ref = 'ShellCmds_ru.html'; break;
+//Only uncomment when the file exists with this language, check that the name is correct.
+// case 'fr': ref = 'ShellCmds_fr.html'; break; //French
+// case 'de': ref = 'ShellCmds_de.html'; break; //German
+ case 'ru': ref = 'ShellCmds_ru.html'; break; //Russian
+ case 'es': ref = 'ShellCmds_es.html'; break; //Spanish
+// case 'it': ref = 'ShellCmds_it.html'; break; //Italian
+// case 'nb': ref = 'ShellCmds_nb.html'; break; //Norwegian
}
window.location.href = ref;
</script>
-<!DOCTYPE html><html>
+<!DOCTYPE html>
+<html>
<head>
-<title></title>
-<style type="text/css">
-<!--
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
+ <title>Cinelerra GG Configure Shell Command</title>
+
+ <style type="text/css">
.xflip {
- -moz-transform: scaleX(-1);
- -webkit-transform: scaleX(-1);
- -o-transform: scaleX(-1);
- transform: scaleX(-1);
- filter: fliph;
+ -moz-transform: scaleX(-1);
+ -webkit-transform: scaleX(-1);
+ -o-transform: scaleX(-1);
+ transform: scaleX(-1);
+ filter: fliph;
}
.yflip {
- -moz-transform: scaleY(-1);
- -webkit-transform: scaleY(-1);
- -o-transform: scaleY(-1);
- transform: scaleY(-1);
- filter: flipv;
+ -moz-transform: scaleY(-1);
+ -webkit-transform: scaleY(-1);
+ -o-transform: scaleY(-1);
+ transform: scaleY(-1);
+ filter: flipv;
}
.xyflip {
- -moz-transform: scaleX(-1) scaleY(-1);
- -webkit-transform: scaleX(-1) scaleY(-1);
- -o-transform: scaleX(-1) scaleY(-1);
- transform: scaleX(-1) scaleY(-1);
- filter: fliph + flipv;
-}
--->
-</style>
+ -moz-transform: scaleX(-1) scaleY(-1);
+ -webkit-transform: scaleX(-1) scaleY(-1);
+ -o-transform: scaleX(-1) scaleY(-1);
+ transform: scaleX(-1) scaleY(-1);
+ filter: fliph + flipv;
+}
+body {
+ margin-top:0;
+ margin-left: 10px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+}
+h1 {
+ margin-top:0;
+ margin-bottom:0;
+ font-size: 1.5em;
+ color: #3d77d5;
+}
+h2{
+ margin-top:0;
+ margin-bottom:8px;
+ font-size: 1.2em;
+ color: gray;
+ text-decoration: underline black;
+}
+p {
+ margin-top:0;
+ margin-bottom: 12px;
+ line-height: 100%;
+ font-size: 1em;
+}
+li {
+ line-height:100%;
+}
+li p {
+ line-height:100%;
+}
+
+ </style>
</head>
-<body>
-<a name=1></a>The Shell Cmds popup menu items are configured in:<br/>
-<b>Settings->Preferences->Interface->Shell Commands</b><br/>
-This runs a dialog that lets you Add/Del/Edit the items in the main menu popup.  Possible options are:<br/> <br/>1) Add a new menu item/script: <br/>    click Add<br/>    in the Label box, change the word "new" to the desired menu label<br/>    in the Commands box, type the command lines to be included in the script<br/>    (for example: Label => gimp; Commands => gimp)<br/>    check-OK in the Commands window<br/>    check-OK in the Shell window<br/>    click on OK or Apply in the Preferences window (WILL NOT TAKE EFFECT UNTIL CLICK)<br/>
-2) Del to delete an existing menu item (for example manual):<br/>     select to highlight an entry in the Cinelerra: Shell listbox<br/>     click Del <br/>     check-OK in the Shell window<br/>     click on OK or Apply in the Preferences window (the entry is destroyed)<br/>
-3) Edit an existing menu item:<br/>    click Edit<br/>    select to highlight an entry in the Cinelerra: Shell listbox<br/>    click edit (the edit dialog appears)<br/>    set the label and/or commands to the new desired values<br/>    check-OK in the Shell window<br/>    click on OK or Apply in the Preferences window<br/>
+<body lang="en">
+<h1>Cinelerra GG</h1>
+<h2>Shell menu commands</h2>
+<p>The Shell Cmds popup menu items are configured in:</p>
+<p><b>Settings->Preferences->Interface->Shell Commands</b></p>
+<p>This runs a dialog that lets you Add/Del/Edit the items in the main menu popup. Possible options are:</p>
+
+<ol>
+ <li/>
+<p><b>Add a new menu item/script: </b></p>
+<p>click Add</p>
+<p>in the Label box, change the word "new" to the desired menu label</p>
+<p>in the Commands box, type the command lines to be included in the script</p>
+<p><i>(for example: Label => gimp; Commands => gimp)</i></p>
+<p>check-OK in the Commands window</p>
+<p>check-OK in the Shell window</p>
+<p>click on OK or Apply in the Preferences window (WILL NOT TAKE EFFECT UNTIL CLICK)</p>
+ <li/>
+<p><b>Del to delete an existing menu item (for example manual):</b></p>
+<p> select to highlight an entry in the Cinelerra: Shell listbox</p>
+<p> click Del </p>
+<p> check-OK in the Shell window</p>
+<p> click on OK or Apply in the Preferences window (the entry is destroyed)</p>
+ <li/>
+<p><b>Edit an existing menu item:</b></p>
+<p>click Edit</p>
+<p>select to highlight an entry in the Cinelerra: Shell listbox</p>
+<p>click edit (the edit dialog appears)</p>
+<p>set the label and/or commands to the new desired values</p>
+<p>check-OK in the Shell window</p>
+<p>click on OK or Apply in the Preferences window</p>
</body>
</html>
--- /dev/null
+<!DOCTYPE html>
+<html>
+<head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
+ <title>Cinelerra GG Configurar menú emergente Shell</title>
+
+ <style type="text/css">
+.xflip {
+ -moz-transform: scaleX(-1);
+ -webkit-transform: scaleX(-1);
+ -o-transform: scaleX(-1);
+ transform: scaleX(-1);
+ filter: fliph;
+}
+.yflip {
+ -moz-transform: scaleY(-1);
+ -webkit-transform: scaleY(-1);
+ -o-transform: scaleY(-1);
+ transform: scaleY(-1);
+ filter: flipv;
+}
+.xyflip {
+ -moz-transform: scaleX(-1) scaleY(-1);
+ -webkit-transform: scaleX(-1) scaleY(-1);
+ -o-transform: scaleX(-1) scaleY(-1);
+ transform: scaleX(-1) scaleY(-1);
+ filter: fliph + flipv;
+}
+body {
+ margin-top:0;
+ margin-left: 10px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+}
+h1 {
+ margin-top:0;
+ margin-bottom:0;
+ font-size: 1.5em;
+ color: #3d77d5;
+}
+h2{
+ margin-top:0;
+ margin-bottom:8px;
+ font-size: 1.2em;
+ color: gray;
+ text-decoration: underline black;
+}
+p {
+ margin-top:0;
+ margin-bottom: 12px;
+ line-height: 100%;
+ font-size: 1em;
+}
+li {
+ line-height:100%;
+}
+li p {
+ line-height:100%;
+}
+
+ </style>
+</head>
+<body lang="es-ES">
+<h1>Cinelerra GG</h1>
+<h2>Comandos del menú Shell</h2>
+<p>Los elementos del menú emergente Shell Cmds se configuran en:</p>
+<p><b>Ajustes -> Preferencias -> Interfaz -> Comandos de Shell</b></p>
+<p>Esto abre una ventana que te permite Agregar, Suprimir y Editar los elementos que puedes ver en el menú de comandos.</p>
+<p>Este menú está en la esquina superior derecha de la línea de tiempo, indicado con el icono con una letra [ i ].</p>
+<p><b>Las opciones son:</b></p>
+
+<ol>
+ <li/>
+<p><b>Agregar un nuevo elemento o script al menú:</b></p>
+<p>Haz clic en Agregar, en el cuadro Etiqueta, cambie la palabra "nuevo" por la etiqueta de menú que desees ver en el cuadro Comandos [ i ].</p>
+<p>Escribe las líneas de comando que se incluirán en el script.</p>
+<p><i>Por ejemplo: Etiqueta => gimp; Comandos => gimp.</i></p>
+<p>Pulsa OK en la ventana de Comandos</p>
+<p>Pulsa OK en la ventana Shell</p>
+<p>Pulsa OK o Aplicar en la ventana de Preferencias</p>
+<p>(ESTA OPERACIÓN NO TENDRÁ EFECTO HASTA QUE ACEPTES O APLIQUES)</p>
+
+ <li/>
+<p><b>Supr (Suprimir) para eliminar un elemento de menú existente (por ejemplo, manual):</b></p>
+<p>Resalta la línea que desea eliminar de la caja de la izquierda de la ventana de Shell.</p>
+<p>Pulsa Supr.</p>
+<p>Pulsa OK en la ventana Shell</p>
+<p>Haz clic en Aceptar o Aplicar en la ventana de Preferencias (la entrada se eliminará en este momento).</p>
+
+</p>
+ <li/>
+<p><b>Editar un elemento ya existente o creado:</b></p>
+<p>Pulsa Editar.</p>
+<p>Selecciona la línea que deseas editar de la caja de la izquierda de la ventana Shell.</p>
+<p>Pulsa Editar (Se abre la ventana para poder editar la línea elegida).</p>
+<p>Establecer la etiqueta y/o comandos a los nuevos valores deseados.</p>
+<p>Pulsa OK en la ventana Shell.</p>
+<p>Pulsa Aceptar o Aplicar en la ventana de Preferencias para que los cambios se hagan efectivos.</p>
+</ol>
+</body>
+</html>