Recherche avancée

Médias (91)

Autres articles (54)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6793)

  • Call to Process works fine with Debug, but it doesn't work in the installed application

    6 février 2019, par Santi

    I am developing a Windows Form program that has callings to ffmpeg library through the class Process.

    It works fine when I run it with the Debug in Visual Studio 2013. But when I install the program and I invoke the operation that call to the ffmpeg Process, it doesn’t work. The cmd screen appears an disappears and nothing happens.

    I have tried to know what can be happening getting a log file with the output of ffmpeg, in case it was a problem in the ffmpeg libraries. However, after executing it the log is empty, what means that the ffmpeg command has not been executed.

    Can someone help me, please ?

    The code is this :

    ProcessStartInfo startInfo = new ProcessStartInfo();
    startInfo.FileName = "cmd.exe";
    startInfo.Arguments = "/c " + ffmpegPath + " " + commandArguments;
    using (Process processTemp = new Process())
    {
       processTemp.StartInfo = startInfo;
       processTemp.EnableRaisingEvents = true;
       processTemp.Start();
       processTemp.WaitForExit();
    }

    I am invoking to cmd.exe (not directly ffmpeg.exe) because in the arguments sometimes there can be a pipe (that is why the command starts with "/c").

  • x86/swr : make pack_8ch functions work with compilers without aligned stack

    15 février 2015, par James Almer
    x86/swr : make pack_8ch functions work with compilers without aligned stack
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libswresample/x86/audio_convert.asm
    • [DH] libswresample/x86/audio_convert_init.c
  • ffmpeg -itsoffset does not work on a prores mov

    28 juin 2022, par friendlygiraffe

    Using -itsoffset works perfectly in ffmpeg with mp4 :

    &#xA;

    ffmpeg -i video.mp4 -itsoffset 0.355 -i video.mp4 -map 0:v -map 1:a -c copy -y video_offset.mp4&#xA;

    &#xA;

    However, with a prores mov it has no affect, throws no errors either :

    &#xA;

    ffmpeg -i proresvideo.mov -itsoffset 0.355 -i proresvideo.mov -map 0:v -map 1:a -c copy -y proresvideo_offset.mov&#xA;

    &#xA;