
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (76)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 -
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 (...)
Sur d’autres sites (8659)
-
FFmpeg transcoding stretches Vertically recorded videos
28 juin 2017, par oteammHi I am having an issue with the Transcoder (FFmpeg) .
Problem Details :
Vertically recorded videos are appearing stretched (widened) upon transcode.For videos which are recorded vertically (height is more than width), the transcoded video generated does shrink vertically. If we change the aspect ratio for such files it will ruin the other video transcodes for which the transcode is generating correctly.
Expected Behaviour :
should not shrink/stretch vertically recorded videosImpact :
we are seeing a distorted version of video, stretched horizontallyNotes :
Version of FFmpeg Software that you’re is used : - ffmpeg-2.8.6-win64
(default Settings used)Request :
Need to a way to correct this as if we change the aspect ratio for such files it will ruin the other video proxies for which the proxy is generating correctly.
Please suggest, if there is any way to AUTO select the aspect ratio of original file and generate transcode accordingly. Thanks ! -
avcodec/hevcdec : constrained intra predict, do not check top left IS_INTRA if it...
16 octobre 2020, par Xu Guangxinavcodec/hevcdec : constrained intra predict, do not check top left IS_INTRA if it's not available
fix ticket : 8932
For poc 2, we have tile boundary at x = 640.
When we predict cu(640,912),the top left pixel is not avaliable to the cu.
So, we can not check it's intra or not. We need set top[-1] = top[0] directly.
see 8.4.4.2.1 for detailsSigned-off-by : Xu Guangxin <oddstone@gmail.com>
Signed-off-by : Linjie Fu <linjie.justin.fu@gmail.com> -
C# ffmpeg not working
24 février 2018, par ViViI am trying to convert an mp3 file into a flac file using ffmpeg for c#.
I downloaded theffmpeg.exe
and placed it inside thebin/debug
folder of my project.My input folder is
testmp3
and output folder istestmp3OUTPUT
. These folders are located within the debug folder itself. testmp3 folder got mp3 files.This is the code I am using :
string inputfile = @"..\\testmp3\\349.mp3";
string outputfile = @"..\\testmp3OUTPUT\\349.flac";
Process myProcess = new Process();
ProcessStartInfo p = new ProcessStartInfo();
string sArgs = string.Format(" -i {0} -f wav - | neroAacEnc -ignorelength -q 0.5 -if - -of {1}", inputfile, outputfile);
p.FileName = "ffmpeg.exe";
p.CreateNoWindow = true;
p.RedirectStandardOutput = true;
//p.WindowStyle = ProcessWindowStyle.Normal
p.UseShellExecute = false;
p.Arguments = sArgs;
myProcess.StartInfo = p;
myProcess.Start();
myProcess.WaitForExit();
//Write details about call
myProcess.StandardOutput.ReadToEnd();