Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (69)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (10910)

  • How can I extract the first frame from a movie AND overlay a watermark on it at the same time ?

    29 mai 2017, par Eric Vasilik

    I want to, with a single ffmpeg command line, extract the first frame from a movie (as a .jpg and sized to fit inside a box of a given size), and overlay a centered PNG on that frame.

    I’ve run into problems using -vf and -filter_complex at the same time.

  • How to directly download ffmpeg output without saving it in the server in PHP Codeigniter

    19 mai 2017, par Jeeva

    I’ve a video which is converted and then i want to output it as a download file. is there any way to do so. below is a small example.

    $video = "C:\Users\user.folder\Downloads\Hamein_Tumse_Pyar_Kitna_no_audio.mp4";
    $audio = "C:\Users\user.folder\Downloads\Hamein_Tumse_Pyar_Kitna_audio.mp3";
    $cmd = FCPATH.'ffmpeg/bin';

    $this->load->helper('download');
    $data = file_get_contents(shell_exec($cmd.'\ffmpeg -i '.$video.' -i '.$audio.' -c:v copy -c:a copy '.$cmd.'\output.mp4 -y 2>&1'));
    force_download('download_file.mp4',$data);exit;
  • python/flask ffmpeg m3u8 download

    17 mai 2017, par kittencornball

    I got ffmpeg working in the command line/app.py just fine with

    os.popen("ffmpeg -i LIVESTREAMURL -c copy thevideo.MP4")

    the end goal is to have this running on a site so i can just plop the m3u8 live stream in and download the video in a mp4 format

    heres what ive tried on my heroku app

    from flask import Flask
    from flask import send_file
    app = Flask(__name__)
    import os
    import subprocess
    import ffmpy


    farts = os.popen("ffmpeg -i LIVESTREAMURL -c copy thevideo.ts")

    @app.route("/")
    def hello():
       return "Hello World!"
       return farts