
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (66)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 (...)
Sur d’autres sites (11185)
-
ffprobe "moov atom not found" on Linux, but works on OS X
15 mars 2017, par NeuroXcI have an MP4 file that I am trying to read info from via
ffprobe -print_format json -show_format -show_streams input.mp4
. On OS X with the Homebrew-provided FFMpeg 3.2.4, I’m able to read the video information this way. However, on both Debian Stretch and Arch Linux, with FFMpeg 3.2.4 provided through the respective package managers, I am getting :[mov,mp4,m4a,3gp,3g2,mj2 @ 0x55e0b7977120] Format mov,mp4,m4a,3gp,3g2,mj2 detected only with low score of 1, misdetection possible!
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x55e0b7977120] moov atom not found
input.mp4: Invalid data found when processing inputAn example of a file showing this issue is https://falcon479.startdedicated.com/files/boxes.mp4
-
Can I merge jpeg and mp3 files with 1 command ?
2 janvier 2017, par Pavel Alexandrovich Ak-01I have jpegs and mp3s files.
Is it possible to make slideshow video with intro and music using single command ?
Right now I have to render slideshow first, merge it with intro and only then render everything again while adding music. Not sure if this is very efficient, I would like to do all that in 1 go.
-
Stream Audio to Discord (FFMPEG and Discord.Net 1.0.1)
16 août 2017, par ComedicChimeraI have a music bot for Discord and I want to be able to stream audio from a site directly into Discord. Currently I have to download the file and then play it which works, but also takes a lot of time. Here is part of the code for the play command (The part the plays the audio.) :
IVoiceChannel channel = (Context.User as IVoiceState).VoiceChannel;
Music.client = await channel.ConnectAsync();
var output = CreateStream("tmpvid.mp3").StandardOutput.BaseStream;
var stream = Music.client.CreatePCMStream(AudioApplication.Music);
await output.CopyToAsync(stream);
await stream.FlushAsync().ConfigureAwait(false);Here is the code for the FFMPEG.
private Process CreateStream(string path)
{
return Process.Start(new ProcessStartInfo
{
FileName = "ffmpeg.exe",
Arguments = $"-hide_banner -loglevel panic -i \"{path}\" -ac 2 -f s16le -ar 48000 pipe:1",
UseShellExecute = false,
RedirectStandardOutput = true
});
}My code also is able to get the url and a network stream so would it be possible for me to simply pipe that stream through FFMPEG to discord or pass the url in as a parameter ? Thanks so much !