Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (12594)

  • How to play, pause and stop a video in the buttons of GUI created in Python ?

    24 juillet 2016, par Purvaj

    I have created a GUI in Python. In the GUI I have three buttons, Play, Pause and Stop. On the click of the respective buttons, i want the respective tasks to be done, that is, play, pause and stop a video. Any body have any idea please help me. This is what i have tried to do so far :

    from tkinter import *
    import subprocess
    import os
    import vlc

    root=Tk()
    root.title("ARP")
    root.geometry("200x100")


    def play():
    left_video = subprocess.Popen(["C:/Program Files (x86)/VideoLAN/VLC/vlc.exe","\\C:\FFmpegTool\\bin\\samplevideo.mp4"])

    right_video = subprocess.Popen(["C:/Program Files (x86)/VideoLAN/VLC/vlc.exe","\\C:\FFmpegTool\\bin\\rotate1.mp4"])


    app=Frame(root)
    app.grid()
    button1=Button(app, text="Play", command=play)
    button1.grid()

    button2=Button(app)
    button2.grid()
    button2.configure(text="Pause")

    button3=Button(app)
    button3.grid()
    button3.configure(text="Stop")

    root.mainloop()

    Please help me.

  • How to ssh vps and play the video ?

    25 juillet 2017, par scrapy

    I build apache2 on vps,start it,and upload test.mp4 into /var/www/html.

    ffplay  http://vps_ip/test.mp4

    I can watch test.mp4 ,maybe there is a other way to play it.

    1.ssh root@vps_ip
    2.mv /var/www/html/test.mp4  /tmp/test.mp4
    3.ffplay /tmp/test.mp4

    Could not initialize SDL - No available video device
    (Did you set the DISPLAY variable?)  

    libsdl2-dev and sdl are all installed on my vps.
    How to ffplay it after sshing login it ?

  • [ffmpeg]How do I play udp streams on my phone

    30 décembre 2018, par 徐思龙

    I used FFMPEG to record the screen push stream [UDP]

    This is the command line I typed

    Ffmpeg-f gdigrab-framerate 25-offset_x 10-offset_y 20-video_size 640x480-i desktop vcodec libx264-preset :v ultrafast-tune :vzerolatency -f h264 udp ://localhost:8888

    ffplay can be played on the localhost :ffplay udp ://192.168.31.18:8888

    Use VLC APP on IPHONE, input udp ://192.168.31.18:8888, it can’t play.

    What do I need to do ?

    thank you