
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (24)
-
Les notifications de la ferme
1er décembre 2010, parAfin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
Les notifications de changement de statut
Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
À la demande d’un canal
Passage au statut "publie"
Passage au (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (4078)
-
avcodec/nvenc : Add support for H.265 encoding
24 mars 2015, par Philip Langdaleavcodec/nvenc : Add support for H.265 encoding
Sufficiently new nvenc hardware (GM20x or later) has support for H.265
encoding. This works the same as the H.264 encoder except the
codec parameters are different.Due to the fact that common codec parameters are not shareable, there’s
quite a bit of conditional logic you’d wish we could do without, but
such is life.Signed-off-by : Philip Langdale <philipl@overt.org>
Reviewed-by : Timo Rothenpieler <timo@rothenpieler.org> -
Append multiple audio files into a single audio file with overlap
4 octobre 2022, par user3564069I have been trying to make an application that takes an array of wav or mp3 files as an input.
I want it to then produce an output file of all the wavs or mp3's in sequential order they were added, but each wav added should overlap the previous wav file added by half a second.


So it should be Wav1 -> wav2 -> wav3 = output.wav, but with the start of wav2 overlapping wav1 and wav3 overlapping wav2.


I have tried to use SOX to create silence for each required duration per wav and then append it and outputted a new wav file and then join them all at the end, while this works it is incredibly slow.


I am open to any suggestions IE FFMPEG.
I tried using suggestions here FFMPEG ADelay using a FFMPEG feature known as ADelay but i was unable to make it work past 2 input files


-
ffmpeg : properly cleanup filter graph on init failure
2 mars 2017, par wm4ffmpeg : properly cleanup filter graph on init failure
The filter field is often used to check whether a filter is
configured. If configuring the filter actually fails somewhere in
the middle of it, these fields could still be set to non-NULL, which
lead to other code accessing the half-configured filter graph, which
in turn could lead to crashes within libavfilter.Solve this by properly resetting all fields.
This was triggered by a fuzzed sample after the recent changes. It’s
unknown whether this behavior could be triggered before that.