
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (35)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 (...)
Sur d’autres sites (7424)
-
Convert youtube video files with ffmpeg to a format that can be playable on ios devices
26 décembre 2018, par AminI’ve created a
telegram robot
that downloads YouTube files and sends them to the user. Since most of our users useios
devices, Our first priority isios
.
Videos files play onWindows
andAndroid
but not broadcast onios
.
I convert format with ffmpeg after download from youtube :ffmpeg -i input.mp4 -strict -2 -vcodec mpeg4 output.mp4
But in addition to prolonging the processing time, the file size increases and eventually the file will not run again in
ios
. -
FFmpeg live stream to Youtube with Raspberry Pi & USB Camera — What command to use for better quality ?
4 août 2023, par qwet142I am currently streaming to Youtube live with the following command :


ffmpeg -re -f s16le -i /dev/zero -f v4l2 -thread_queue_size 512 -codec:v mjpeg -s 1920x1080 -i /dev/video0 -c:v libx264 -preset ultrafast -acodec aac -b:v 3500k -g 30 -f flv rtmp://a.rtmp.youtube.com/live2/key


The frame rate is great, and the speed is 1x. However, the quality is very poor, improved only slightly after increasing the bitrate to 3000k. Changing the resolution doesn't help, and using veryfast makes things worse. How can I fix the quality ?


Note : there is no audio and this is a USB camera.


-
c# pipe using youtube-dl to ffmpeg
1er janvier 2017, par lilscarecrowI am trying to pipe the audio stream from youtube-dl into ffmpeg for a program using discord.NET. I am not sure exactly how to achieve this in c#, though. Currently, I can play ffmpeg with a url or path from this code on the docs for discord.NET :
var process = Process.Start(new ProcessStartInfo
{
FileName = "ffmpeg",
Arguments = $"-i {outLine.Data}" +
" -f s16le -ar 48000 -ac 2 pipe:1",
UseShellExecute = false,
RedirectStandardOutput = true
});
Thread.Sleep(2000);
int blockSize = 3840;
byte[] buffer = new byte[blockSize];
int byteCount;
while (!playing)
{
byteCount = process.StandardOutput.BaseStream
.Read(buffer, 0, blockSize);
if (byteCount == 0)
break;
_vClient.Send(buffer, 0, byteCount);
}
_vClient.Wait();So, I am trying to pipe the youtube-dl audio to this I assume. I just have no idea how to achieve piping in this format and for the file while it is downloading. Also, the program works on async if that helps.