
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (67)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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) (...)
Sur d’autres sites (12429)
-
FFmpeg - Can't redirect standard output stream
4 janvier 2017, par Ryan Vancity GoslingI’m running FFmpeg throught my C# application to encode an video. To try an get the progress of the video, I’ve redirected the output but there seems to be no output. I tried the same with FFProbe and it worked perfectly. Just doesn’t work for FFmpeg.
var FFmpeg = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = Directory.GetCurrentDirectory() + "\\FFmpeg\\ffmpeg.exe",
Arguments = CurrentArgs,
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = false
}
};
FFmpeg.Start();
string line;
int i = 0;
while (!FFmpeg.StandardOutput.EndOfStream)
{
i = i + 1;
}And the weird thing is that I have the console window enabled on my WPF project and the output is shown although there isnt any code to write it to the console. And the loop is not iterating. The FFProbe output didn’t show up on console like this.
Can someone help me. I need to get a percentage of the FFmpeg encoding process.
-
opus : move the entropy decoding functions to opus_rc.c
7 novembre 2016, par Rostislav Pehlivanovopus : move the entropy decoding functions to opus_rc.c
The intention is to have both encoding and decoding functions
in opus_rc.c.Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>
-
avcodec/opus : Move defines to better places
3 octobre 2022, par Andreas Rheinhardtavcodec/opus : Move defines to better places
Move ROUND_MUL* macros to their only users and the Celt
macros to opus_celt.h. Also improve the other headers
a bit while at it.Reviewed-by : Lynne <dev@lynne.ee>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>