Advertising
advertising
related pastes to tag 'ffmpeg'
- 1437863 - gnu_d: ffmpeg vide glue combine concation
-
- #/bin/bash
- videoPATH="" # If no path, it's using current.
- ext_in=".flv" # Extensions to recongnize use "*" to accept all types.
- ext_out=".mpeg" # Output file.
- video_name="" # The name of the output file.
- video_out="video_name$ext_out" # The name of the output file with the out extension.
- 842314 - chemuduguntar: ffmpeg
-
- // assign buffers as usual
- // Assign appropriate parts of buffer to image planes in pFrameRGB
- avpicture_fill((AVPicture *)pFrameRGB, buffer, PIX_FMT_RGB24,
- pCodecContext->width, pCodecContext->height);
- // initialise convert context
- swsContext = sws_getContext( pCodecContext->width, pCodecContext->height, pCodecContext->pix_fmt,
- pCodecContext->width, pCodecContext->height, PIX_FMT_RGB24,
- 691788 - Simple script to resize videos t: ffmpeg resize videos aspect ratio height width
-
- #!/usr/bin/php
- <?php
- // outputs the username that owns the running php/httpd process
- // (on a system with the "whoami" executable in the path)
- $cmdWidth = 'midentify '.$argv[1];
- $finalHeight = $argv[2];
- //var_dump($output);
- 678123 - fris: shell video media ffmpeg
-
- #!/bin/sh
- # make life easier 1.0
- # script to convert, split and create thumbs for videos
- # chris <chris@lod.com>
- case "$1" in
- thumbs)