To remove metadata from a video file using FFmpeg, you can use the following command:
ffmpeg -i input.mp4 -map_metadata -1 -c:v copy -c:a copy output.mp4
// XPath CheatSheet | |
// To test XPath in your Chrome Debugger: $x('/html/body') | |
// http://www.jittuu.com/2012/2/14/Testing-XPath-In-Chrome/ | |
// 0. XPath Examples. | |
// More: http://xpath.alephzarro.com/content/cheatsheet.html | |
'//hr[@class="edge" and position()=1]' // every first hr of 'edge' class |
// https://github.com/twitter/bootstrap/issues/675#issuecomment-6184243 | |
$('#feedback-modal').modal({ | |
backdrop: true, | |
keyboard: true | |
}).css({ | |
'width': function () { | |
return ($(document).width() * .9) + 'px'; | |
}, | |
'margin-left': function () { |