
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (48)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (7204)
-
Pre-Transcoding live streams before Re-stream them to wowza Streaming Engine [on hold]
14 décembre 2017, par Ninjai’am using ffmpeg on other device to get live feed from cam and convert them to multi bitrate outputs localy and stream them to a remote wowza to achieve adaptive bitrate content for users with optimized resources i have succeeded to transcode to one specifique bitrate locally using this line
ffmpeg -re -i cuted.mp4 -c:v libx264 -profile:v baseline -level:v 1.2 -r 12 -g 96 -vb 110000 -s 212x120 -c:a libvo_aacenc -ab 40000 -ar 22050 -ac 1 -f rtsp -muxdelay 0.1 rtsp://*****:*****@***.168.*0.*0:1935/live/myStream
but i need at least 4 resolutions support i’ve tried to lunched twice at the same time with diffrent resolutions but in wowza engine manager => incoming streams i got one stream input, i appreciate any suggestion
-
How to convert live video stream to mp4 format stream using FFmpeg API [on hold]
27 avril 2017, par krishUsing FFmpeg API :ConvertLiveMediaTask
ConvertLiveMedia(Stream inputStream, string inputFormat, Stream outputStream, string outputFormat, ConvertSettings settings) ;
Requirement : want to convert video file from any format to mp4 format and conversion should happen on fly using ConvertLiveMedia API
Please help me for this problem, I googled so many times i didnt get a solution for this.
Here is my code
const int megabyte = 1024 * 1024;
static string theFilename = @"F:\BackUp\Short video clip-nature.avi";
static string[] VideoExtension = { ".ac3", ".aiff", ".alaw", ".asf", ".ast", ".mp4", ".au", ".avi", ".caf"};
static void Main(string[] args)
{
ChunkedData(theFilename, 0);
}
private static void ChunkedData(string theFilename, long whereToStartReading = 0)
{
string extension = System.IO.Path.GetExtension(theFilename);
Stream chunkStream = new MemoryStream();
if (VideoExtension.Any(Vi => extension.Contains(Vi)))
{
FileStream fileStram = new FileStream(theFilename, FileMode.Open, FileAccess.Read);
using (fileStram)
{
byte[] buffer = new byte[megabyte];
fileStram.Seek(whereToStartReading, SeekOrigin.Begin);
int bytesRead = fileStram.Read(buffer, 0, megabyte);
while (bytesRead > 0)
{
// Here i receive and implement
chunkStream = StreamData(buffer, bytesRead, extension);
bytesRead = fileStram.Read(buffer, 0, megabyte);
}
}
}
}
private static Stream StreamData(byte[] buffer, int bytesRead, string formate)
{
// Have no idea what to give for ConvertSettings, i simply pass a object
ConvertSettings settings = new ConvertSettings();
var ffmpeg = new FFMpegConverter();
Stream inputStream = new MemoryStream(buffer);
Stream outputStream = new MemoryStream();
try
{
// Here im getting outputStream capacity = 0, length = 0, position =0.
var task = ffmpeg.ConvertLiveMedia(inputStream, formate, outputStream, Format.mp4, settings );
task.Start();
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
return outputStream;
} -
Live webcam stream to mjpeg file [on hold]
20 mars 2018, par neph94I am looking for a way for ffmpeg or any other alternative to be able to continuously stream data to an mjpeg (or any other) file. There would be a size limitation to it. When exceeded oldest frames would just be removed to make space.
Basically, what I am looking is ffserver with an option to stream locally to a file without serving it on an HTTP server.