Esempio n. 1
0
        private void Form2_Load(object sender, EventArgs e)
        {
            dataGridViewTextBoxColumn = new DataGridViewTextBoxColumn {
                HeaderText = "Time", ReadOnly = true
            };
            dataGridViewCheckBoxColumn = new DataGridViewCheckBoxColumn {
                HeaderText = "Include?", Width = 80, TrueValue = true, FalseValue = false
            };
            dataGridViewImageColumn = new DataGridViewImageColumn {
                HeaderText = "Image", Width = 200, ImageLayout = DataGridViewImageCellLayout.Zoom
            };
            dataGridView1.Columns.Add(dataGridViewTextBoxColumn);
            dataGridView1.Columns.Add(dataGridViewCheckBoxColumn);
            dataGridView1.Columns.Add(dataGridViewImageColumn);
            voVideoSaveable vPVideoSaveable = new voVideoSaveable(Filename);

            kfi = vPVideoSaveable.KeyFramesIndex();
            dataGridView1.RowTemplate.Height = 100;
            if (System.IO.File.Exists(vPVideoSaveable.UFile))
            {
                ukfi = voSave.DeserializeObject <List <float> >(vPVideoSaveable.UFile);
                foreach (float f in kfi)
                {
                    dataGridView1.Rows.Add(f.ToString(), ukfi.Contains(f), vPVideoSaveable.VideoImage(f));
                }
            }
            else
            {
                foreach (float f in kfi)
                {
                    dataGridView1.Rows.Add(f.ToString(), true, vPVideoSaveable.VideoImage(f));
                }
            }
        }
Esempio n. 2
0
 public voPipeline(string f, string a, string r)
 {
     filename       = f;
     apikey         = a;
     region         = r;
     lVideoSaveable = new voVideoSaveable(filename);
     progress       = new Progress(P.No, P.No, P.No, P.No, P.No);
     UpdateProgress();
 }
Esempio n. 3
0
        private void button1_Click(object sender, EventArgs e)
        {
            List <float> outkf = new List <float>();

            for (int i = 0; i < dataGridView1.RowCount; i++)
            {
                if (Convert.ToBoolean(dataGridView1.Rows[i].Cells[1].Value))
                {
                    outkf.Add(kfi[i]);
                }
            }
            voVideoSaveable vPVideoSaveable = new voVideoSaveable(Filename);

            voSave.SerializableObject(outkf, vPVideoSaveable.UFile);
            vp.UpdateProgress();
            Close();
        }
Esempio n. 4
0
        public void Start(string sout)
        {
            PDF = Path.GetExtension(sout) == ".pdf";
            voVideoSaveable voVideoSaveable             = new voVideoSaveable(filename);
            List <float>    listfloat                   = voSave.DeserializeObject <List <float> >(voVideoSaveable.UFile);
            List <voSpeech.RecognizedText> listvospeech =
                voSave.DeserializeObject <List <voSpeech.RecognizedText> >(voSave.ConventionalFilepath(filename, "Transcription.p"));
            List <PictureOrText> listcontent   = new List <PictureOrText>();
            List <PictureOrText> listparagraph = new List <PictureOrText>();

            foreach (float f in listfloat)
            {
                listcontent.Add(new PictureOrText("", false, f));
            }
            foreach (voSpeech.RecognizedText vsrt in listvospeech)
            {
                listcontent.Add(new PictureOrText(vsrt.text, true, vsrt.seconds));
            }
            listcontent = listcontent.OrderBy(x => x.time).ToList();
            foreach (PictureOrText pot in listcontent)
            {
                if (listparagraph == null || listparagraph.Count == 0)
                {
                    listparagraph.Add(pot);
                }
                else if (pot.isText && listparagraph.Last().isText)
                {
                    listparagraph[listparagraph.Count - 1] = new PictureOrText(listparagraph.Last().text + " " + pot.text, true, listparagraph.Last().time);
                }
                else
                {
                    listparagraph.Add(pot);
                }
            }
            //Shuffle images forward.
            listparagraph = MoveImagesForward(listparagraph, listfloat);
            Microsoft.Office.Interop.Word.Application winword = new Microsoft.Office.Interop.Word.Application();
            winword.ShowAnimation = false;
            winword.Visible       = false;
            object   missing  = System.Reflection.Missing.Value;
            Document document = winword.Documents.Add(ref missing, ref missing, ref missing, ref missing);

            Microsoft.Office.Interop.Word.Paragraph para2 = document.Content.Paragraphs.Add(ref missing);
            object styleHeading2 = "Heading 2";

            para2.Range.set_Style(ref styleHeading2);
            para2.Range.Text = "Transcription: " + System.IO.Path.GetFileName(filename) + ". " + DateTime.Now.ToString("d MMM yyyy");
            para2.Range.InsertParagraphAfter();
            for (int i = 0; i < listparagraph.Count; i++)
            {
                if (listparagraph[i].isText)
                {
                    Microsoft.Office.Interop.Word.Paragraph para = document.Content.Paragraphs.Add(ref missing);
                    para.Range.Text = listparagraph[i].text;
                }
                else
                {
                    System.Drawing.Image image = voVideoSaveable.VideoImage((float)listparagraph[i].time);
                    image = ResizeImage(image, Convert.ToInt32(image.Size.Width / 1.5), Convert.ToInt32(image.Size.Height / 1.5));
                    string pictureFile = voSave.ConventionalFilepath(filename, "Temp.bmp");
                    image.Save(pictureFile);
                    Microsoft.Office.Interop.Word.Paragraph para = document.Content.Paragraphs.Add(ref missing);
                    Object oMissed           = document.Paragraphs[document.Paragraphs.Count].Range;
                    Object oLinkToFile       = false;
                    Object oSaveWithDocument = true;
                    para.Range.InlineShapes.AddPicture(pictureFile, ref oLinkToFile, ref oSaveWithDocument, ref missing);
                }
            }
            object osout = sout;

            if (PDF)
            {
                document.SaveAs2(ref osout, WdSaveFormat.wdFormatPDF);
            }
            else
            {
                document.SaveAs2(ref osout);
            }
            object saveChanges = WdSaveOptions.wdDoNotSaveChanges;

            document.Close(ref saveChanges, ref missing, ref missing);
            document = null;
            winword.Quit(ref missing, ref missing, ref missing);
            winword = null;
        }