
Recherche avancée
Autres articles (49)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (5985)
-
encode audio ffmpeg c++ with different number of samples between input and output
4 décembre 2015, par Victor Canezin de OliveiraI am trying to make an audio encoder to encode a live stream. I get my audio stream from a webrtc source. The properties for the source audio buffer is(AND I CANNOT CHANGE IT) :
number of samples: 480
sample size: 2 bytes
sample rate: 44100Hz
number of channels: 1I am using MP2 codec to encode the audio. It expects an audio number of samples of 1152(CAN’T CHANGE THAT EITHER), which is different from the source(480)
I generate the audio frame using :
frame->nb_samples = 480;
avcodec_fill_audio_frame(frame, nb_channels(=1), sample_fmt(=AVCodecContext sample_fmt), temp_audio_buffer(=source), 480, 0);And I am getting a "chopped" sound. From what I know, It is because of the difference between number of samples in each frame.
Is there a way to fill the entire frame(1152 samples) somehow ? Will I be able to encode this live stream ?
thanks
-
Revision c6b8fce22a : Merge "Revert "VP8 for ARMv8 by using NEON intrinsics 06" This reverts commit 81
14 mai 2014, par JohannMerge "Revert "VP8 for ARMv8 by using NEON intrinsics 06" This reverts commit
81ad047ee57ecb0e2c1ee4dcebda54a44ea54ae9. Revert "VP8 for ARMv8 by using NEON
intrinsics 15" This reverts commit 727af7cebe3698b8493ba6c1360b0a6606c310fb." -
Rename "AVClass class" as "AVClass component_class" for external codecs.
4 juillet 2013, par Sean McGovernRename "AVClass class" as "AVClass component_class" for external codecs.
The aix header math.h defines "extern int class()" for C.
This fixes compilation on aix with external libraries enabled.Signed-off-by : Carl Eugen Hoyos <cehoyos@ag.or.at>