
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (52)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (4986)
-
avformat/aacdec : enable probesize-sized resyncs mid-stream
27 septembre 2021, par Jan Ekströmavformat/aacdec : enable probesize-sized resyncs mid-stream
Before adts_aac_resync would always bail out after probesize amount
of bytes had been progressed from the start of the input.Now just query the current position when entering resync, and at most
advance probesize amount of data from that start position.Fixes #9433
-
FFMpegCore .Net cuts off the fist few ( 1.5) seconds of audio
28 mai 2024, par TimI want to use FFMpegCore to convert some audio files to raw pcm. I noticed that this always cuts off 1.5 seconds of my audio from the start. I check my input stream, saved it to HD all good. If use it from cli with the same arguments everything seem fine. I tried -ss 0, no luck. This behavior is observed with .wav (RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16 bit, stereo 44100 Hz), same issue with different sample rate. I tested mp3 works fine.


public async Task<memorystream> ConvertToPcmStreamAsync(Stream inputStream)
{
 var outputStream = new MemoryStream();
 
 var audioInput = new StreamPipeSource(inputStream);
 var audioOutput = new StreamPipeSink(outputStream);

 await FFMpegArguments
 .FromPipeInput(audioInput)
 .OutputToPipe(audioOutput, options => options
 .WithCustomArgument("-ss 0 -f s16le -acodec pcm_s16le -ac 1"))
 .ProcessAsynchronously();

 // Reset the position of the memory stream to the beginning
 outputStream.Position = 0;

 return outputStream;
}
</memorystream>


-
How to use custom function to calculate 'x' in ffmpeg crop
17 septembre 2016, par Sasha Kastsiushkinffmpeg docs have this example :
crop=in_w/2:in_h/2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(n/10):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(n/7)
To make it simpler, I will use named params and only affect output width and position
x
crop=w=in_w/3:x=(in_w-out_w)/2+((in_w-out_w)/2)*sin(n/10)
The result will be the video that is 3 times shorter than original and it will ’float’ along the
x
axis thanks to that sin(n/10) function. x is evaluated for each frame and n(number of the input frame) will increase and change the x position dynamically.I’m trying to create a custom function, which will take
n
ort
and based on it return some value of x.Please help me or perhaps this is not possible. I was trying to create a small bash script, which will do so unsuccessfully.
Thank you