Sap
Sap
I have similar issue. Js code randomly cuts. I have tried v 1.1.1, but no luck. I using code like this: ``` return gulp.src('myfile.js') .pipe(plugins.rename({suffix:'.dev'})) .pipe(plugins.include()) // parse include patterns...
I found some resolve for my issue. There was file trims in base of 16kb (0 - 16kb - 32kb etc). I debugged 'gulp-include' module and did not found problems...
See my gist https://gist.github.com/sapzxc/10171091 download it, then run test.sh It creates 1.mp4 1.jpg - normal, 2.mp4 2.jpg - rotated video and frame.
As I understand we must setup aspect ratio with transcode operation. Similar issues (search on page by "aspect" keyword): https://github.com/rheaton/carrierwave-video/issues/21 http://superuser.com/questions/630433/rotate-a-video-90-degrees http://stackoverflow.com/questions/21709900/ffmpeg-conditional-rotation-of-video
Something wrong: I added $outputFormat->setVideoAspectRatio('3:4'); Got: CommandString: /usr/bin//ffmpeg '-i' '/usr/www/fmqa/public/test/1.mov' '-y' '-qscale' '4' '-f' 'mp4' '-strict' 'experimental' '-threads' '1' '-acodec' 'aac' '-ab' '96k' '-ar' '48000' '-ac' '2' '-vcodec' 'h264' '-s'...
Now my test works and image has proper aspect. But strange dimensions still there. 1.mp4: '-s' '640x480' - good 2.mp4: '-s' '360x270' '-aspect' '3:4' - wrong? It should be 640x480...
Updated scripts and it works! But have another issue with size, You hate me I know =) Source file is 640x480. First not rotated file has size 1280x720 Video: h264...
Oh, I understand, my last comment is wrong. I was playing with code and there was error. Now works, I got one file 1024x768 and second 540x720. Good. But if...
Sorry for the delay of my response. I have created fork for last version on 2014-06-18 and added here tests based on phpunit. Using tests we can define default behavior...
Thanks a lot! I used this library first time and attempted to save credentials manually until I came across your ticket. I had assumed there was no save functionality. Upon...