
Recherche avancée
Autres articles (61)
-
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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (7359)
-
Anomalie #4516 (Nouveau) : Fatal error en php 8.0
9 juillet 2020, par Franck DHello, :)
Windows 10 (1909)
Firefox 78.0.2
Easyphp
Apache 2.4.43 x64
PHP 8.0.0 alpha1 x64
MySQL 8.0.20 x64
PhpMyAdmin 5.0.2memory_limit 512M
post_max_size 130M
upload_max_filesize 64M
max_execution_time 300
max_input_time -1Comme php 8.0 sort le 26 novembre, https://wiki.php.net/todo/php80 et que spip 3.4 ne sortira sans doute pas avant 2022... Je commence à faire des tests avec php 8 (plus c’est tôt mieux c’est) histoire de voir si cela posera de gros problèmes avec spip 3.3 !
Si je lance spip_loader version 3.0.9, j’ai une page blanche avec :
Fatal error : Uncaught Error : Call to undefined function get_magic_quotes_gpc() in C :\Program Files (x86)\EasyPHP-Devserver-17\eds-www\test2\config\ecran_securite.php:350 Stack trace : #0 C :\Program Files (x86)\EasyPHP-Devserver-17\eds-www\test2\ecrire\inc_version.php(130) : include() #1 C :\Program Files (x86)\EasyPHP-Devserver-17\eds-www\test2\spip.php(17) : include_once(’C :\Program File...’) #2 C :\Program Files (x86)\EasyPHP-Devserver-17\eds-www\test2\index.php(3) : include(’C :\Program File...’) #3 main thrown in C :\Program Files (x86)\EasyPHP-Devserver-17\eds-www\test2\config\ecran_securite.php on line 350Je monte la priorité à "haut" pour voir, si cela ne serait pas possible pour spip 3.3.0, mais c’est discutable...
-
ffmpeg api alternate transcoding and remuxing for same file
21 juin 2022, par Alexandre NoviusContext


Hello !


I'm currently working on the development of a small library allowing to cut an h.264 video on any frame, but without re-encoding (transcoding) the whole video. The idea is to re-encode only the GOP on which we want to cut, and to rewrite (remux) directly the others GOP.


The avcut project (https://github.com/anyc/avcut) allows to do that, but requires a systematic decoding of each package, and seems to not work with the recent versions of ffmpeg from the tests I could do and from the recent feedbacks in the github issues.


As a beginner, I started from the code examples provided in the ffmpeg documentation, in particular : transcoding.c and remuxing.c.


Problem encountered


The problem I'm having is that I can't get both transcoding and remuxing to work properly at the same time. In particular, depending on the method I use to initialize the AVCodecParameters of the output video stream, transcoding works, or remuxing works :


- 

avcodec_parameters_copy
works well for remuxingavcodec_parameters_from_context
works well for transcoding






In case I choose
avcodec_parameters_from_context
, the transcoded GOP are correctly read by my video player (parole), but the remuxed packets are not read, and ffprobe does not show/detect them.

In case I choose
avcodec_parameters_from_context
, the remuxing GOP are correctly read by my video player, but the transcoding key_frame are bugged (I have the impression that the b-frame and p-frame are ok), andffprobe -i
return an error about the NAL of the key-frames :

[h264 @ 0x55ec8a079300] sps_id 32 out of range
[h264 @ 0x55ec8a079300] Invalid NAL unit size (1677727148 > 735).
[h264 @ 0x55ec8a079300] missing picture in access unit with size 744



I suspect that the problem is related to the extradata of the packets. Through some experiments on the different attributes of the output AVCodecParameters, it seems that it is the
extradata
andextradata_size
attributes that are responsible for the functioning of one method or the other.

Version


ffmpeg development branch retrieved on 2022-05-17 from https://github.com/FFmpeg/FFmpeg.


Compiled with
--enable-libx264 --enable-gpl --enable-decoder=png --enable-encoder=png


Code


My code is written in c++ and is based on two classes : a class defining the parameters and methods on the input file (
InputContexts
) and a class defining them for the output file (OutputContexts
). The code of these two classes is defined in the following files :

- 

- contexts.h
- contexts.cpp






The code normally involved in the problem is the following :


- 

- stream initialization




int OutputContexts::init(const char* out_filename, InputContexts* input_contexts){
 int ret;
 int stream_index = 0;

 avformat_alloc_output_context2(&ofmt_ctx, NULL, NULL, out_filename);
 if (!ofmt_ctx) {
 fprintf(stderr, "Could not create output context\n");
 ret = AVERROR_UNKNOWN;
 return ret;
 }

 av_dump_format(ofmt_ctx, 0, out_filename, 1);
 
 encoders.resize(input_contexts->ifmt_ctx->nb_streams, nullptr);
 codecs.resize(input_contexts->ifmt_ctx->nb_streams, nullptr);
 
 // stream mapping
 for (int i = 0; i < input_contexts->ifmt_ctx->nb_streams; i++) {
 AVStream *out_stream;
 AVStream *in_stream = input_contexts->ifmt_ctx->streams[i];
 AVCodecContext* decoder_ctx = input_contexts->decoders[i];
 
 // add new stream to output context
 out_stream = avformat_new_stream(ofmt_ctx, NULL);
 if (!out_stream) {
 fprintf(stderr, "Failed allocating output stream\n");
 ret = AVERROR_UNKNOWN;
 return ret;
 }

 // from avcut blog
 av_dict_copy(&out_stream->metadata, in_stream->metadata, 0);

 out_stream->time_base = in_stream->time_base;

 // encoder
 if (decoder_ctx->codec_type == AVMEDIA_TYPE_VIDEO){
 ret = prepare_encoder_video(i, input_contexts);
 if (ret < 0){
 fprintf(stderr, "Error while preparing encoder for stream #%u\n", i);
 return ret;
 }

 // from avcut
 out_stream->sample_aspect_ratio = in_stream->sample_aspect_ratio;

 // works well for remuxing
 ret = avcodec_parameters_copy(out_stream->codecpar, in_stream->codecpar);
 if (ret < 0) {
 fprintf(stderr, "Failed to copy codec parameters\n");
 return ret;
 }

 // works well for transcoding
 // ret = avcodec_parameters_from_context(out_stream->codecpar, encoders[i]);
 // if (ret < 0) {
 // av_log(NULL, AV_LOG_ERROR, "Failed to copy encoder parameters to output stream #%u\n", i);
 // return ret;
 // }

 } else if (decoder_ctx->codec_type == AVMEDIA_TYPE_AUDIO) {
 ...
 } else {
 ...
 }

 // TODO useful ???
 // set current stream position to 0
 // out_stream->codecpar->codec_tag = 0;
 }

 // opening output file in write mode with the ouput context
 if (!(ofmt_ctx->oformat->flags & AVFMT_NOFILE)) {
 ret = avio_open(&ofmt_ctx->pb, out_filename, AVIO_FLAG_WRITE);
 if (ret < 0) {
 fprintf(stderr, "Could not open output file '%s'", out_filename);
 return ret;
 }
 }
 
 // write headers from output context in output file
 ret = avformat_write_header(ofmt_ctx, NULL);
 if (ret < 0) {
 fprintf(stderr, "Error occurred when opening output file\n");
 return ret;
 }

 return ret;
}



- 

- AVCodecContext initialization for encoder




int OutputContexts::prepare_encoder_video(int stream_index, InputContexts* input_contexts){
 int ret;
 const AVCodec* encoder;
 AVCodecContext* decoder_ctx = input_contexts->decoders[stream_index];
 AVCodecContext* encoder_ctx;

 if (video_index >= 0){
 fprintf(stderr, "Impossible to mark stream #%u as video, stream #%u is already registered as video stream.\n", 
 stream_index, video_index);
 return -1; //TODO change this value for correct error code
 }
 video_index = stream_index;

 if(decoder_ctx->codec_id == AV_CODEC_ID_H264){
 encoder = avcodec_find_encoder_by_name("libx264");
 if (!encoder) {
 av_log(NULL, AV_LOG_FATAL, "Encoder libx264 not found\n");
 return AVERROR_INVALIDDATA;
 }
 fmt::print("Encoder libx264 will be used for stream {}.\n", stream_index);
 } else {
 std::string s = fmt::format("No video encoder found for the given codec_id: {}\n", avcodec_get_name(decoder_ctx->codec_id));
 av_log(NULL, AV_LOG_FATAL, s.c_str());
 return AVERROR_INVALIDDATA;
 }
 
 encoder_ctx = avcodec_alloc_context3(encoder);
 if (!encoder_ctx) {
 av_log(NULL, AV_LOG_FATAL, "Failed to allocate the encoder context\n");
 return AVERROR(ENOMEM);
 }

 // from avcut
 encoder_ctx->time_base = decoder_ctx->time_base;
 encoder_ctx->ticks_per_frame = decoder_ctx->ticks_per_frame;
 encoder_ctx->delay = decoder_ctx->delay;
 encoder_ctx->width = decoder_ctx->width;
 encoder_ctx->height = decoder_ctx->height;
 encoder_ctx->pix_fmt = decoder_ctx->pix_fmt;
 encoder_ctx->sample_aspect_ratio = decoder_ctx->sample_aspect_ratio;
 encoder_ctx->color_primaries = decoder_ctx->color_primaries;
 encoder_ctx->color_trc = decoder_ctx->color_trc;
 encoder_ctx->colorspace = decoder_ctx->colorspace;
 encoder_ctx->color_range = decoder_ctx->color_range;
 encoder_ctx->chroma_sample_location = decoder_ctx->chroma_sample_location;
 encoder_ctx->profile = decoder_ctx->profile;
 encoder_ctx->level = decoder_ctx->level;

 encoder_ctx->thread_count = 1; // spawning more threads causes avcodec_close to free threads multiple times
 encoder_ctx->codec_tag = 0;
 
 // correct values ???
 encoder_ctx->qmin = 16;
 encoder_ctx->qmax = 26;
 encoder_ctx->max_qdiff = 4;
 // end from avcut

 // according to avcut, should not be set
 // if (ofmt_ctx->oformat->flags & AVFMT_GLOBALHEADER){
 // encoder_ctx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
 // }

 ret = avcodec_open2(encoder_ctx, encoder, NULL);
 if (ret < 0) {
 av_log(NULL, AV_LOG_ERROR, "Cannot open video encoder for stream #%u\n", stream_index);
 return ret;
 }
 
 codecs[stream_index] = encoder;
 encoders[stream_index] = encoder_ctx;

 return ret;
}



Example


To illustrate my problem, I provide here a test code using the two classes that alternates between transcoding and remuxing at each key-frame encountered in the file using my classes.


- 

- trans_remux.cpp




To compile the code :


g++ -o trans_remux trans_remux.cpp contexts.cpp -D__STDC_CONSTANT_MACROS `pkg-config --libs libavfilter` -lfmt -g



Currently the code is using
avcodec_parameters_copy
(contexts.cpp:333
), so it works well for remuxing. If you want to test the version withavcodec_parameters_from_context
, pls comment from line 333 to 337 incontexts.cpp
and uncomment from line 340 to 344 and recompile.

-
FFMPEG : Overlay Capture Time (w/Counter)
27 juin 2022, par AdamKI am using the Shutter Encoder application on Windows to batch convert .MOV files, which provides the option of injecting custom FFMPEG commands for each file. The app natively offers overlay (drawtext) of timecode starting at 00:00:00:00. I also see that it knows and preserves the metadata time for each file as this is included in the commands "-metadata creation_time="2022-06-27T16:00:30.730888500Z"


I would like to have the timecode start at the creation time, and was wondering how I might be able to offset the timecode as such. Or...is there another way of overlaying (drawtext-ing) a time counter, starting at creation time ? I would also like to overlay the creation date as well. Thanks in advance for your advice.