Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (46)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (5430)

  • I can't play mp3 by iOS browser

    13 avril 2015, par SPnova

    I merge several files by ffmpeg :

    ffmpeg -i "concat:file1.mp3|file2.mp3" -acodec libmp3lame -metadata "title=Some Song"  c2.mp3

    But I can’t play this file by iOS browser (I use iPad 2 iOS 8). In my PC chrome this mp3 plays correctly.

    https://learn.core.kochi-tech.ac.jp/moodle/c2.mp3

    Where is the problem ?

  • [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

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