Posts

Showing posts from November 21, 2018

What should I do if the video is broken on a black screen when encoding with FFmpeg(h264)?

Image
up vote 0 down vote favorite The MOV is broken when H.264 is encoded as below image. Can I encode it without breaking? Encoding options: ffmpeg -y -i "background.mp4" -s "160x64" -c:v libx264 -vprofile baseline -level 3 -q:v 0 -mbtree 1 -r 30 -pix_fmt yuv420p -an -t "0:00:15.000000" "sample.mp4" ffmpeg share | improve this question edited 2 days ago kit 774 1 16 asked 2 days ago wowi77 1

Adding an appointment to a non-default calendar linked to iCloud

Image
up vote 0 down vote favorite I am attempting to add new appointments to a calendar linked using "iCloud for Windows". I have read everything I can find on the subject of Outlook and Calendars on this site and I have used OutlookSpy to navigate through the various objects and folders, (and I thank Dimitry for the huge help he has provided the coding community for this fabulous tool). However, I am still unable to write to the non-default calendar. Based on this answer, Creating an appointment to a specific calendar. VBA outlook, here is my code... using Microsoft.Office.Interop.Outlook ... Application app = new Application(); AppointmentItem appt = null; app.ActiveExplorer().CurrentFolder = app.GetNamespace("MAPI").GetDefaultFolder(OlDefaultFolders.olFolderCalendar); Recipient recipent = app.Session.C