Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (76)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (4898)

  • FFMPEG download m3u8 faster

    23 août 2018, par Bruno Andrade

    I have a server with 1 Gbps port speed where I am trying to download m3u8 videos from a website. But he is very slow. I want to know if there is something in my ffmpeg code that I can do to make it get faster ?

    ffmpeg -hide_banner -loglevel verbose -n -i http://example.com/list.m3u8 -map 0:4 -map 0:5 -acodec copy -bsf:a aac_adtstoasc -vcodec copy video.mp4 1> log.tx  2>&1

    Does the CPU influence this type of ffmpeg download ? What I understand of the code is that it is saying not to encode anything. Download the same video is on the site. So CPU processing would not influence the speed correct ?

  • Download video from a url [on hold]

    27 mai 2018, par Emilio Maingi

    I’m writing a program to download a video when given a link to the video. From my research i have learned that i am supposed to use ffmpeg to do the conversion and download. But my ffmpeg does not execute. I have tried shell_exec() and exec() but none of them seem to be working. Can somebody help me with some guidelines to get the videos downloadable from any video site like youtube, vimeo, twitch tv. I’ll appreciate any ideas that will come through. Thanks

  • 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