Recherche avancée

Médias (91)

Autres articles (46)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (9097)

  • Pipe each ffmpeg output to command line

    6 septembre 2016, par Max13

    I would like to output a screenshot every X seconds of a video using ffmpeg, but I also would like to pipe each output to another command.

    Here is my screenshot command : ffmpeg -i video.mp4 -vf fps=1/5 sh%03d.png (one image every 5 seconds).

    I would like to do as find’s argument -exec do, allowing the user to execute a command for each output. Is this possible ? This is the first time I’m using ffmpeg, thanks for your help.

  • trailing options found on command line ffmpeg

    1er juillet 2016, par asad

    ffmpeg complains about trailing options. What parameters are out of the order. I am unable to find any. Please point out some.

    /home/ec2-user/bin/ffmpeg -thread_queue_size 1024 -probesize 18M
       -re -f rawvideo -framerate 1 -pixel_format rgb32 -video_size 1920x1080
       -i pipe:0 -i /home/ec2-user/logo.png
       -i /home/ec2-user/testdata/audio.m4a -ss 0 -t 20
       -filter_complex "[0:v]vflip[main];[1:v]scale=1920/10:-1[si], [main][si]overlay=5:5:format=rgb,format=yuv420p"
       -c:v libx264 /home/ec2-user/output.mp4
       -c:v copy -shortest
  • Sample points from raw audio file

    25 mai 2016, par Asesh

    I use FFMPEG for encoding/decoding audio files in C++. Right now I am trying to extract sample points from a raw audio file that I have exported by using FFMPEG APIs but now I need to find out all the sample points from that raw audio file. Can someone tell me how can I do it ?

    Thanks