Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (73)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8384)

  • 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 ?

  • 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.

  • How To Run Multiple Code ffmpeg in Macbook Terminal Using bat file ?

    26 juillet 2021, par ChhengRavy

    I have a problem to run bat file in Macboook Terminal. I created file bat that has code below.

    


    ffmpeg -i input1.mp4    -vf hflip -c:a copy output1.mp4
ffmpeg -i input2.mp4    -vf hflip -c:a copy output2.mp4
ffmpeg -i input3.mp4    -vf hflip -c:a copy output3.mp4


    


    If I run that bat file in window Command Promt I will get three outputs(output1,output2,output3). It work fine.

    


    But If I run it in terminal Mackbook by drag that file to terminal I get only output3. I don't know why in Macbook It works only the last code.

    


    Please Anyone knows about this help me. I was stuck a few days already.

    


    Thank you so much for your help.