Recherche avancée

Médias (91)

Autres articles (48)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (5414)

  • avformat/dv : consider a header match at byte 0 to count as detection of dv in probe

    9 novembre 2013, par Michael Niedermayer
    avformat/dv : consider a header match at byte 0 to count as detection of dv in probe
    

    This reduces the amount of data needed to identify dv

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/dv.c
  • Steps of using ffmpeg in visual studio 2019 ? [closed]

    15 avril 2020, par taimoor1990

    I have to use ffmpeg libraries which I am new to. Currently I am trying to build a basic hello world application that uses ffmpeg. I have googled multiple times there are some answers, saying something like static include these libraries and such comments which I am not sure how. I am looking for a step by step guide to link ffmpeg with a basic hello world app.

    &#xA;

  • Tkinter window and script freeze when filedialog is used

    11 décembre 2020, par RandomInternetPerson

    Im developing a audio player for python. Unfortunately, it appears as if after a modification, the file dialog portion of the script ceased working. The code below is a minimum reproducible example of the offending bit.

    &#xA;

    # -----------------------Setup-----------------------&#xA;# Imports&#xA;from tkinter import * &#xA;from tkinter.ttk import * &#xA;from tkinter import filedialog&#xA;&#xA;import simpleaudio&#xA;import subprocess&#xA;&#xA;# GUI&#xA;root = Tk() &#xA;root.title("CupPlayer") &#xA;menubar = Menu(root)&#xA;file = Menu(menubar, tearoff = 0)&#xA;root.config(menu = menubar)&#xA;# ----------------------Functions---------------------&#xA;def file_selector(): &#xA;    filename = filedialog.askopenfilename()&#xA;    &#xA;    root.update()&#xA;    if filename.endswith(&#x27;.mp3&#x27;):&#xA;            subprocess.call([&#x27;ffmpeg&#x27;, &#x27;-i&#x27;, filename,&#xA;                                &#x27;audio.wav&#x27;])&#xA;btn = Button(root, text = &#x27;search file !&#x27;, bd = &#x27;5&#x27;, &#xA;                          command = file_selector) &#xA;&#xA;mainloop() &#xA;

    &#xA;