Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (26)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

Sur d’autres sites (7879)

  • c# using pipes to get output stream

    1er janvier 2017, par lilscarecrow

    I am trying to pipe youtube-dl output to ffmpeg as input, but cannot seem to get the piping part to work. In normal cmd, I can do something like

    C:\YT\youtube-dl.exe -o - https://www.youtube.com/watch?v=L4aLQ0ki9Tk | ffmpeg -i pipe:0 -f asf pipe:1

    but in c# this doesn’t work. Currently, I have c# create 2 processes :

    one for youtube-dl

    C:\YT\youtube-dl.exe -o - https://www.youtube.com/watch?v=L4aLQ0ki9Tk

    and another for ffmpeg

    ffmpeg  -i {yt.StandardOutput} -f s16le -ar 48000 -ac 2 pipe:1

    The problem is with the {yt.StandardOutput} (where yt is the process name of the youtube-dl process and -i specifies the input file/stream). Using pipe:0 doesn’t work either and I am not sure how to link the piped output of the first to the input of the second.

  • How to create video with dynamic pictures like Facebook Friend's Day video

    21 février 2019, par Vinicius

    How to create a video with pictures from a user just like Facebook does with their Facebook Friend’s day video ?

    Example : https://www.youtube.com/watch?v=mNWJ_XxfQfU

    The intention is to generate this sort of video with images that a visitor will upload to a website. FFMPEG does support images animation but it seems that a bit of 3d animations like the above needs ages to be done with FFMPEG. I wonder if there is an alternative to FFMPEG that can generate this sort of animations, or maybe a software like After Effects that can either generate a template that can be used on ffmpeg (or any command line alternative) or has its own command-line interface that can be executed in a linux machine to do such thing.

    Basically, the user would upload the pictures, the server would crop them to have the same size and then it would convert it to a video like the one mentioned above.

  • How to make doppler effect on audio with ffmpeg [duplicate]

    3 janvier 2019, par Adam Estel

    This question already has an answer here :

    How can i make the doppler effect on audio with ffmpeg.I mean : Sound run from left to right and opposite, just like this video :
    https://www.youtube.com/watch?v=j35K4QC_9bM
    I research ffmpeg for a while but I can’t firgure the audio filter i can start with
    Thank you for helping me
    Have a nice day.