
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (48)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (8707)
-
How can I use ffmpeg to create video with alpha from png in C code ?
29 juin 2023, par rebornI'm trying to encode a video (mov) from png images with alpha channel in FFMPEG. Using cmd :


ffmpeg -i %d.png -r 25 -vcodec png -b:v 2500K out.mov -y



It works well.


Now I want to use in c++ code, but it got error like this :


[mov @ 0x29bf0c0] muxer does not support non seekable output



I use it in code like this :


oformat = av_guess_format("mov", nullptr, nullptr)
oformat->video_codec = AV_CODEC_ID_PNG;



The ffmpeg shows :


ffmpeg -h muxer=mov
Muxer mov [QuickTime / MOV]:
Common extensions: mov.
Default video codec: h264.
Default audio codec: aac.



The default video codec is h264, but it can create mov with png encoder using ffmpeg Command Line like above


ffmpeg -i out.mov

Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'resa.mov':
 Metadata:
 major_brand : qt
 minor_version : 512
 compatible_brands: qt
 encoder : Lavf59.24.100
 Duration: 00:00:03.00, start: 0.000000, bitrate: 13430 kb/s
 Stream #0:0: Video: png (png / 0x20676E70), rgba(pc), 1280x720, 13427 kb/s, 25 fps, 25 tbr, 12800 tbn, 12800 tbc (default)
 Metadata:
 handler_name : VideoHandler
 vendor_id : FFMP



How can I change this cmd to c code ?


ffmpeg -i %d.png -r 25 -vcodec png -b:v 2500K out.mov -y



The code I use :
Header file :


#ifndef _RENDER_H_
#define _RENDER_H_
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <fstream>
#include <cstring>
#include 
#include 
#include <algorithm>
#include <string> 

extern "C"
{
#include <libavcodec></libavcodec>avcodec.h>
#include <libavcodec></libavcodec>avfft.h>

#include <libavdevice></libavdevice>avdevice.h>

#include <libavfilter></libavfilter>avfilter.h>
//#include <libavfilter></libavfilter>avfiltergraph.h>
#include <libavfilter></libavfilter>buffersink.h>
#include <libavfilter></libavfilter>buffersrc.h>

#include <libavformat></libavformat>avformat.h>
#include <libavformat></libavformat>avio.h>

 

#include <libavutil></libavutil>opt.h>
#include <libavutil></libavutil>common.h>
#include <libavutil></libavutil>channel_layout.h>
#include <libavutil></libavutil>imgutils.h>
#include <libavutil></libavutil>mathematics.h>
#include <libavutil></libavutil>samplefmt.h>
#include <libavutil></libavutil>time.h>
#include <libavutil></libavutil>opt.h>
#include <libavutil></libavutil>pixdesc.h>
#include <libavutil></libavutil>file.h>


 
//#include "libavcodec/vdpau.h"
#include "libavutil/hwcontext.h"
//#include "libavutil/hwcontext_vdpau.h"

 

#include <libswscale></libswscale>swscale.h>

 class VideoCapture {
 public:

 VideoCapture() {
 oformat = nullptr;
 ofctx = nullptr;
 videoStream = nullptr;
 videoFrame = nullptr;
 swsCtx = nullptr;
 frameCounter = 0;

 
 av_register_all();
 //av_log_set_callback(avlog_cb);
 }

 ~VideoCapture() {
 //Free();
 }

 void Init(std::string name, int width, int height, int fpsrate, int bitrate);

 void AddFrame(uint8_t *data);

 void Finish();

 private:

 AVOutputFormat *oformat;
 AVFormatContext *ofctx;
 AVIOContext *avio_out;
 AVStream *videoStream;
 AVFrame *videoFrame;

 AVCodec *codec;
 AVCodecContext *cctx;
 struct buffer_data *bd;
 struct buffer_data* res_video;
 SwsContext *swsCtx;
 //FILE *fp_write;
 char* filename;
 //int buf_len;
 int frameCounter;

 int fps;

 void Free();

 void Remux();
 };

 struct buffer_data {
 uint8_t *ptr;
 size_t size; ///< size left in the buffer
 };

}
#endif
</string></algorithm></cstring></fstream></cstdlib></cstdio></iostream>


and the code :


#include "VideoCapture.h"
#define FINAL_FILE_NAME "record.mov"
#define VIDEO_TMP_FILE "tmp.avi"


using namespace std;

FILE *fp_write;
static int write_packet(void *opaque, uint8_t *buf, size_t buf_size)
{
 struct buffer_data *bd = (struct buffer_data *)opaque;
 printf("ptr :%p size:%zu\n", bd->ptr, bd->size);
 memcpy(bd->ptr + bd->size, buf, buf_size);
 bd->size = buf_size + bd->size;
 return 1;
}

void VideoCapture::Init(string filename, int width, int height, int fpsrate, int bitrate) {

 fps = fpsrate;

 int err;
 uint8_t *outbuffer=nullptr;
 outbuffer=(uint8_t*)av_malloc(32768);
 bd = (struct buffer_data*)malloc(sizeof(struct buffer_data));
 bd->ptr = (uint8_t*)av_malloc(1000000000);
 bd->size = 0;
 avio_out =avio_alloc_context(outbuffer, 32768,1,bd,nullptr,write_packet,nullptr);
 if (!(oformat = av_guess_format("mov", nullptr, nullptr))) {
 cout << "Failed to define output format"<< endl;
 return;
 }
 oformat->video_codec = AV_CODEC_ID_PNG;
 cout << "oformat->video_codec " << oformat->video_codec << endl;
 if ((err = avformat_alloc_output_context2(&ofctx, oformat, nullptr, nullptr) < 0)) {
 cout <<"Failed to allocate output context"<< endl;
 //Free();
 return;
 }
 cout << "oformat->video_codec " << oformat->video_codec << endl;
 if (!(codec = avcodec_find_encoder(oformat->video_codec))) {
 cout <<"Failed to find encoder"<< endl;
 //Free();
 return;
 }

 if (!(videoStream = avformat_new_stream(ofctx, codec))) {
 cout <<"Failed to create new stream"<< endl;
 //Free();
 return;
 }

 if (!(cctx = avcodec_alloc_context3(codec))) {
 cout <<"Failed to allocate codec context"<< endl;
 //Free();
 return;
 }

 videoStream->codecpar->codec_id = oformat->video_codec;
 videoStream->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
 videoStream->codecpar->width = width;
 videoStream->codecpar->height = height;
 videoStream->codecpar->format = AV_PIX_FMT_RGBA;
 videoStream->codecpar->bit_rate = bitrate * 1000;
 videoStream->time_base = { 1, fps };

 avcodec_parameters_to_context(cctx, videoStream->codecpar);
 cctx->time_base = { 1, fps };
 cctx->max_b_frames = 2;
 cctx->gop_size = 12;
 if (videoStream->codecpar->codec_id == AV_CODEC_ID_PNG) {
 //av_opt_set(cctx, "preset", "ultrafast", 0);
 }
 if (ofctx->oformat->flags & AVFMT_GLOBALHEADER) {
 cctx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
 }
 avcodec_parameters_from_context(videoStream->codecpar, cctx);

 if ((err = avcodec_open2(cctx, codec, nullptr)) < 0) {
 cout <<"Failed to open codec"<< endl;
 Free();
 return;
 }
 
 ofctx->pb = avio_out;
 
 ofctx->flags=AVFMT_FLAG_CUSTOM_IO;
 if ((err = avformat_write_header(ofctx, nullptr)) < 0) {
 cout <<"Failed to write header"<< endl;
 Free();
 return;
 }

 //av_dump_format(ofctx, 0, VIDEO_TMP_FILE, 1);
 cout << "init com" << endl;
}

void VideoCapture::AddFrame(uint8_t *data) {
 int err;
 if (!videoFrame) {

 videoFrame = av_frame_alloc();
 videoFrame->format = AV_PIX_FMT_RGBA;
 videoFrame->width = cctx->width;
 videoFrame->height = cctx->height;

 if ((err = av_frame_get_buffer(videoFrame, 32)) < 0) {
 cout <<"Failed to allocate picture"<< endl;
 return;
 }
 }
 cout << "finish" << endl;
 if (!swsCtx) {
 swsCtx = sws_getContext(cctx->width, cctx->height, AV_PIX_FMT_RGBA, cctx->width, cctx->height, AV_PIX_FMT_RGBA, SWS_BICUBIC, 0, 0, 0);
 }

 int inLinesize[1] = { 4 * cctx->width};

 
 sws_scale(swsCtx, (const uint8_t * const *)&data, inLinesize, 0, cctx->height, videoFrame->data, videoFrame->linesize);

 videoFrame->pts = (1.0 / 30.0) * 90000 * (frameCounter++);;

 if ((err = avcodec_send_frame(cctx, videoFrame)) < 0) {
 cout <<"Failed to send frame"<< endl;
 return;
 }

 AVPacket pkt;
 av_init_packet(&pkt);
 pkt.data = nullptr;
 pkt.size = 0;

 if (avcodec_receive_packet(cctx, &pkt) == 0) {
 pkt.flags |= AV_PKT_FLAG_KEY;
 av_interleaved_write_frame(ofctx, &pkt);
 av_packet_unref(&pkt);
 }
}

void VideoCapture::Finish() {
 
 AVPacket pkt;
 av_init_packet(&pkt);
 pkt.data = nullptr;
 pkt.size = 0;

 for (;;) {
 avcodec_send_frame(cctx, nullptr);
 if (avcodec_receive_packet(cctx, &pkt) == 0) {
 av_interleaved_write_frame(ofctx, &pkt);
 av_packet_unref(&pkt);
 }
 else {
 break;
 }
 }
 
 
 av_write_trailer(ofctx);
 /*
 if (!(oformat->flags & AVFMT_NOFILE)) {
 int err = avio_close(ofctx->pb);
 if (err < 0) {
 cout <<"Failed to close file"<< endl;
 }
 }
 */
 fp_write = fopen(VIDEO_TMP_FILE, "wb");
 if (!feof(fp_write)) {
 int true_size = fwrite(bd->ptr, 1, bd->size, fp_write);
 std::cout << true_size << std::endl;
 }
 fcloseall();

 //Remux();
 //Free();
}

void VideoCapture::Free() {
 if (videoFrame) {
 //std::cout << "videoFrame " << std::endl;
 av_frame_free(&videoFrame);
 }
 if (cctx) {
 //std::cout << "cctx" << std::endl;
 avcodec_free_context(&cctx);
 }
 if (ofctx) {
 //std::cout << "ofctx" << ofctx << std::endl;
 avformat_free_context(ofctx);
 }
 if (swsCtx) {
 //std::cout << "swsCtx" << std::endl;
 sws_freeContext(swsCtx);
 }
 /*
 if (bd->ptr != (void*)0)
 {
 free(bd->ptr);
 }
 free(bd);*/
}

static int read_packet(void *opaque, uint8_t *buf, int buf_size)
{
 struct buffer_data *bd = (struct buffer_data *)opaque;
 buf_size = FFMIN(buf_size, bd->size);
 if(buf_size == 0) return -1;
 //printf("read ptr:%p size:%zu\n", bd->ptr, bd->size);
 /* copy internal buffer data to buf */
 memcpy(buf, bd->ptr, buf_size);
 bd->ptr += buf_size;
 bd->size -= buf_size;
 return buf_size;
}

void VideoCapture::Remux() {
 AVFormatContext *ifmt_ctx = nullptr, *ofmt_ctx = nullptr;
 int err;

 unsigned char* inbuffer=nullptr;
 inbuffer=(unsigned char*)av_malloc(32768);
 ifmt_ctx = avformat_alloc_context();
 AVIOContext *avio_in =avio_alloc_context(inbuffer, 32768 ,0,bd,read_packet,nullptr,nullptr);
 ifmt_ctx->pb=avio_in;
 
 if (!(oformat = av_guess_format(nullptr, nullptr, "h264"))) {
 cout << "Failed to define output format";
 return;
 }

 if ((err = avformat_open_input(&ifmt_ctx, "nullptr", 0, 0)) < 0) {
 cout <<"Failed to open input file for remuxing"<< endl;
 }
 if ((err = avformat_find_stream_info(ifmt_ctx, 0)) < 0) {
 cout <<"Failed to retrieve input stream information"<< endl;
 }
 if ((err = avformat_alloc_output_context2(&ofmt_ctx, oformat, nullptr, nullptr))) {
 cout <<"Failed to allocate output context"<< endl;
 }

 AVStream *inVideoStream = ifmt_ctx->streams[0];
 AVStream *outVideoStream = avformat_new_stream(ofmt_ctx, nullptr);
 if (!outVideoStream) {
 cout <<"Failed to allocate output video stream" << endl;
 }
 outVideoStream->time_base = { 1, fps };
 avcodec_parameters_copy(outVideoStream->codecpar, inVideoStream->codecpar);
 outVideoStream->codecpar->codec_tag = 0;
 
 uint8_t *outbuffer=nullptr;
 outbuffer=(uint8_t*)av_malloc(32768);
 res_video = (struct buffer_data*)malloc(sizeof(struct buffer_data));
 res_video->ptr = (uint8_t*)av_malloc(100000000);
 res_video->size = 0;

 if (!(ofmt_ctx->oformat->flags & AVFMT_NOFILE)) {
 avio_out =avio_alloc_context(outbuffer, 32768,1, res_video, nullptr, write_packet, nullptr);
 ofmt_ctx->pb = avio_out;
 }
 AVDictionary* opts = nullptr;
 av_dict_set(&opts, "movflags", "frag_keyframe+empty_moov", 0);
 if ((err = avformat_write_header(ofmt_ctx, &opts)) < 0) {
 cout <<"Failed to write header to output file"<< endl;
 }

 AVPacket videoPkt;
 int ts = 0;
 while (true) {
 if ((err = av_read_frame(ifmt_ctx, &videoPkt)) < 0) {
 break;
 }
 videoPkt.stream_index = outVideoStream->index;
 videoPkt.pts = ts;
 videoPkt.dts = ts;
 videoPkt.duration = av_rescale_q(videoPkt.duration, inVideoStream->time_base, outVideoStream->time_base);
 ts += videoPkt.duration;
 videoPkt.pos = -1;
 if ((err = av_interleaved_write_frame(ofmt_ctx, &videoPkt)) < 0) {
 cout <<"Failed to mux packet"<< endl;
 av_packet_unref(&videoPkt);
 break;
 }
 av_packet_unref(&videoPkt);
 }

 av_write_trailer(ofmt_ctx);
 cout << "res_video->size " << res_video->size << endl;
 fp_write=fopen(FINAL_FILE_NAME,"wb");
 if(!feof(fp_write)){
 int true_size=fwrite(res_video->ptr,1, res_video->size,fp_write);
 std::cout << true_size << std::endl;
 }
 fcloseall();
}



-
FFmpeg video alpha merged freezes
29 mai 2017, par cdapalcI am using ffmpeg 4 Android to overlay a video with alpha channnel in a normal video. I use the following command :
String[] mergeVideosCommand = new String[]{
"-y",
"-i",
videoAlphaPath.mov,
"-i",
videoNormalPath.mp4,
"-filter_complex",
"[0:v]colorchannelmixer=aa=1[ov];[1:v][ov]overlay=0:0[video_out]",
"-map",
"[video_out]",
"-map",
"0:a",
videoResultPath.mp4
};
ffmpeg.execute(mergeVideosCommand, responseHandler);Both videos get merged, but the non-transparent one freezes after one second of playing but the video with alpha channel keeps moving and both audios work fine as well.
I have tried the same command from my computer (with ffmpeg v2.6.3) and it works fine but I need to make it work on Android (ffmpeg v3.0.1).
Anybody experienced something similar ? I would appreciate any help. Thanks. -
FFMPEG encode video with alpha channel to flv
29 novembre 2017, par treeI’m trying to encode a video (mov) to an flv with alpha channel in FFMPEG but I can’t seem to either
- find a codec that is supported
- find one that actually maintains the alpha
Does anyone know how to set that up ?
Thanks,
ffmpeg -i abc_btr_1280x800_Takeover.mov -vcodec flv -pix_fmt yuv444p -s 1280x800 test4.flv
here is the report...
ffmpeg started on 2013-10-25 at 15:47:30
Report written to "ffmpeg-20131025-154730.log"
Command line:
ffmpeg -i abc_btr_1280x800_Takeover.mov -vcodec flv -pix_fmt yuv444p -s 1280x800 test4.flv -report
ffmpeg version N-57367-g2f31b73 Copyright (c) 2000-2013 the FFmpeg developers
built on Oct 23 2013 20:34:17 with gcc 4.8.2 (GCC)
configuration: --disable-static --enable-shared --enable-gpl --enable-version3 -- disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r -- enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable- libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame -- enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib
libavutil 52. 47.101 / 52. 47.101
libavcodec 55. 38.101 / 55. 38.101
libavformat 55. 19.104 / 55. 19.104
libavdevice 55. 4.100 / 55. 4.100
libavfilter 3. 89.100 / 3. 89.100
libswscale 2. 5.101 / 2. 5.101
libswresample 0. 17.104 / 0. 17.104
libpostproc 52. 3.100 / 52. 3.100
Splitting the commandline.
Reading option '-i' ... matched as input file with argument 'abc_btr_1280x800_Takeover.mov'.
Reading option '-vcodec' ... matched as option 'vcodec' (force video codec ('copy' to copy stream)) with argument 'flv'.
Reading option '-pix_fmt' ... matched as option 'pix_fmt' (set pixel format) with argument 'yuv444p'.
Reading option '-s' ... matched as option 's' (set frame size (WxH or abbreviation)) with argument '1280x800'.
Reading option 'test4.flv' ... matched as output file.
Reading option '-report' ... matched as option 'report' (generate a report) with argument '1'.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option report (generate a report) with argument 1.
Successfully parsed a group of options.
Parsing a group of options: input file abc_btr_1280x800_Takeover.mov.
Successfully parsed a group of options.
Opening an input file: abc_btr_1280x800_Takeover.mov.
[mov,mp4,m4a,3gp,3g2,mj2 @ 000000000085ac00] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100
[mov,mp4,m4a,3gp,3g2,mj2 @ 000000000085ac00] ISO: File Type Major Brand: qt
[mov,mp4,m4a,3gp,3g2,mj2 @ 000000000085ac00] File position before avformat_find_stream_info() is 281624339
[mov,mp4,m4a,3gp,3g2,mj2 @ 000000000085ac00] All info found
[mov,mp4,m4a,3gp,3g2,mj2 @ 000000000085ac00] File position after avformat_find_stream_info() is 288732
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'abc_btr_1280x800_Takeover.mov':
Metadata:
major_brand : qt
minor_version : 537199360
compatible_brands: qt
creation_time : 2013-09-22 02:50:18
Duration: 00:00:10.00, start: 0.000000, bitrate: 225299 kb/s
Stream #0:0(eng), 1, 1/24: Video: qtrle (rle / 0x20656C72), bgra, 1280x800, 225293 kb/s, SAR 1280:1280 DAR 8:5, 24 fps, 24 tbr, 24 tbn, 24 tbc (default)
Metadata:
creation_time : 2013-09-22 02:50:18
handler_name : Apple Alias Data Handler
timecode : 00:00:00:00
Stream #0:1(eng), 0, 1/24: Data: none (tmcd / 0x64636D74), 0 kb/s (default)
Metadata:
creation_time : 2013-09-22 02:50:22
handler_name : Apple Alias Data Handler
timecode : 00:00:00:00
Successfully opened the file.
Parsing a group of options: output file test4.flv.
Applying option vcodec (force video codec ('copy' to copy stream)) with argument flv.
Applying option pix_fmt (set pixel format) with argument yuv444p.
Applying option s (set frame size (WxH or abbreviation)) with argument 1280x800.
Successfully parsed a group of options.
Opening an output file: test4.flv.
Successfully opened the file.
detected 4 logical cores
[graph 0 input from stream 0:0 @ 0000000000303bc0] Setting 'video_size' to value '1280x800'
[graph 0 input from stream 0:0 @ 0000000000303bc0] Setting 'pix_fmt' to value '30'
[graph 0 input from stream 0:0 @ 0000000000303bc0] Setting 'time_base' to value '1/24'
[graph 0 input from stream 0:0 @ 0000000000303bc0] Setting 'pixel_aspect' to value '1280/1280'
[graph 0 input from stream 0:0 @ 0000000000303bc0] Setting 'sws_param' to value 'flags=2'
[graph 0 input from stream 0:0 @ 0000000000303bc0] Setting 'frame_rate' to value '24/1'
[graph 0 input from stream 0:0 @ 0000000000303bc0] w:1280 h:800 pixfmt:bgra tb:1/24 fr:24/1 sar:1/1 sws_param:flags=2
[scaler for output stream 0:0 @ 00000000003056a0] Setting 'w' to value '1280'
[scaler for output stream 0:0 @ 00000000003056a0] Setting 'h' to value '800'
[scaler for output stream 0:0 @ 00000000003056a0] Setting 'flags' to value '0x4'
[scaler for output stream 0:0 @ 00000000003056a0] w:1280 h:800 flags:'0x4' interl:0
Incompatible pixel format 'yuv444p' for codec 'flv', auto-selecting format 'yuv420p'
[format @ 00000000002f8320] compat: called with args=[yuv420p]
[format @ 00000000002f8320] Setting 'pix_fmts' to value 'yuv420p'
[AVFilterGraph @ 000000000085bc60] query_formats: 5 queried, 4 merged, 0 already done, 0 delayed
[scaler for output stream 0:0 @ 00000000003056a0] w:1280 h:800 fmt:bgra sar:1/1 -> w:1280 h:800 fmt:yuv420p sar:1/1 flags:0x4
[flv @ 0000000000374be0] intra_quant_bias = 0 inter_quant_bias = -64
Output #0, flv, to 'test4.flv':
Metadata:
major_brand : qt
minor_version : 537199360
compatible_brands: qt
encoder : Lavf55.19.104
Stream #0:0(eng), 0, 1/1000: Video: flv1 (flv) ([2][0][0][0] / 0x0002), yuv420p, 1280x800 [SAR 1:1 DAR 8:5], q=2-31, 200 kb/s, 1k tbn, 24 tbc (default)
Metadata:
creation_time : 2013-09-22 02:50:18
handler_name : Apple Alias Data Handler
timecode : 00:00:00:00
Stream mapping:
Stream #0:0 -> #0:0 (qtrle -> flv)
Press [q] to stop, [?] for help
frame= 27 fps=0.0 q=31.0 size= 351kB time=00:00:01.12 bitrate=2554.2kbits/s
frame= 46 fps= 45 q=31.0 size= 477kB time=00:00:01.91 bitrate=2039.5kbits/s
frame= 60 fps= 39 q=31.0 size= 543kB time=00:00:02.50 bitrate=1779.4kbits/s
frame= 74 fps= 36 q=31.0 size= 629kB time=00:00:03.08 bitrate=1672.4kbits/s
frame= 96 fps= 37 q=31.0 size= 795kB time=00:00:04.00 bitrate=1627.4kbits/s
frame= 123 fps= 40 q=31.0 size= 924kB time=00:00:05.12 bitrate=1477.0kbits/s
frame= 149 fps= 41 q=31.0 size= 1133kB time=00:00:06.20 bitrate=1494.7kbits/s
frame= 175 fps= 43 q=31.0 size= 1224kB time=00:00:07.29 bitrate=1375.5kbits/s
frame= 201 fps= 44 q=31.0 size= 1352kB time=00:00:08.37 bitrate=1322.7kbits/s
frame= 228 fps= 45 q=31.0 size= 1461kB time=00:00:09.50 bitrate=1260.1kbits/s
[output stream 0:0 @ 00000000003053c0] EOF on sink link output stream 0:0:default.
No more output streams to write to, finishing.
frame= 240 fps= 45 q=31.0 Lsize= 1600kB time=00:00:10.00 bitrate=1310.4kbits/s
video:1596kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.252476%
240 frames successfully decoded, 0 decoding errors
[AVIOContext @ 000000000032dfc0] Statistics: 3 seeks, 242 writeouts
[AVIOContext @ 000000000085bde0] Statistics: 281664506 bytes read, 3 seeks