Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (67)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (9468)

  • Save local video with fragment shader in sdcard android

    1er octobre 2015, par Hashir Sheikh

    I am using VidEffects library to play video with effect using fragment shader. Now I want to save that video on sdcard with fragment shader effects. How can I achieve this ?

    I am currently using Curves propery of ffmpeg library to save video in sdacrd. Is there any way to create curve value or curve preset from fragment shader or vertex shader ?

  • How to save .flv file from rtsp camera C#

    22 juillet 2017, par BlackRoot

    I’m trying to save streamed rtsp video from my IP camera using FFmpeg.exe command like this

    ffmpeg -i rtsp://[source_url_full_file_name] -acodec copy -vcodec copy [local_target_file_name].flv

    but it is so hard to manage all process started for each camera so I decided to have an embedded managed thread that do the same thing

    I’ve tried many libraries and codes but still no result.

    any one have a code or links to achieve that using C#

  • How to save ffmpeg output.mp4 to file

    31 mars 2020, par Interestedbutnotknowing

    I have a very basic question. I combined an .wav and .mp4 file to output.mp4 using ffmpeg in python :

      !ffmpeg -i /content/input.mp4 -i audio.wav -c:v copy -c:a copy output.mp4

    Now how do I save the output.mp4 to an .mp4 file on my computer ?
    Thank you very much in advance