Recherche avancée

Médias (91)

Autres articles (101)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (10138)

  • mpegtsenc : stop impersonating ses in sdt

    17 mai 2016, par Francois Cartegnie
    mpegtsenc : stop impersonating ses in sdt
    

    Unless specified, users must use non registered
    range for network id

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavformat/mpegtsenc.c
  • avformat/rtpenc_mpegts : stop leaks

    28 mars 2021, par Gyan Doshi
    avformat/rtpenc_mpegts : stop leaks
    

    Fixes CID 1474460 & 1474461

    • [DH] libavformat/rtpenc_mpegts.c
  • 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.