Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (78)

  • 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 (11920)

  • ffmpeg is working in terminal but not in php

    31 août 2018, par Gaurav kakkar

    I have installed ffmpeg using Ubuntu,

    sudo apt-get install ffmpeg

    ffmpeg is installed on root "/usr/bin/ffmpeg".

    It’s working fine in the terminal, but when I execute that using php i don’t get any output.

    shell_exec(/usr/bin/ffmpeg -y -i ./upload/1535531595first.mp3 -i ./upload/1535531595second.mp3 -filter_complex "[0:0][1:0] amix=inputs=2:duration=longest" -c:a libmp3lame ./download/1535531595outputnow1.mp3)

    and using this command in "opt/lampp/htdocs/project-Name/sub-directory/test.php" file.

    Any help will be appreciatable. Thanks in Advance.
    find the attachment cmd terminal working fine but for php not working

  • Fast gnuplot terminal compatible with ffmpeg

    16 mai 2013, par DarioP

    I am using gnuplot to make some thousands of frames from raw data, I then make a video with ffmpeg (the easiest way I know to use advanced codecs like x264). The frames are not complicated : just few lines and some dots.

    Up to now I have been using the pngcairo terminal to produce the frames, but I noticed that postscript is way faster than pngcairo. Unfortunately ffmpeg doesn't recognize postscript, so I was wondering if you know a fast (but still a good quality -at least antialiased) gnuplot terminal which output can be readed by ffmpeg.

  • Send command to terminal with AppleScript

    16 mars 2017, par Björn

    I have this ffmpeg command that I would like to send to terminal through appelscript. It works when I run it directly in terminal.

    ffmpeg -i score.mov -i palette.png -filter_complex \
    "fps=8,scale=600:-1:flags=lanczos[x];[x][1:v]paletteuse" -f image2pipe -vcodec ppm - | convert -delay 15 -loop 0 -layers Optimize - output39.gif

    This doesn’t compile in scripteditor.

    tell application "Terminal"
       do script "ffmpeg -i score.mov -i palette.png -filter_complex \
    "fps=8,scale=600:-1:flags=lanczos[x];[x][1:v]paletteuse" -f image2pipe -vcodec ppm - | convert -delay 15 -loop 0 -layers Optimize - output39.gif"
    end tell

    I get "Expected end of line but found identifier"

    Anyone have an idea what to do ?