Recherche avancée

Médias (91)

Autres articles (72)

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

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (13717)

  • Stream MP4 over HTTP without segments

    23 novembre 2017, par Ben van Hartingsveldt

    I’m trying to stream MP4.

    If you stream MP3, you can stream it to something (maybe via RTMP or via IceCast) and watch it via HTTP (but no HLS). Your live MP3 file is something like : http://example.com/live.mp3. Here you can listen to live generated MP3.

    Now I want something simular with MP4.
    I want to stream MP4 (AVC/H.264) to a server (maybe via RTMP) and want to receive the livestream on this location : http://example.com/live.mp4.
    I don’t want to use HLS (with it’s M3U8 file and TS-files).

    Is this possible ?

    I know it works with a already generated MP4, after you converted it to a FastStart/WebOptimised MP4, but I want a LIVE mp4.

  • I can't start dream recording ? [closed]

    5 mars 2024, par usny1986

    I'm looking for an app to record my dreams so i can watch them later. (I want it to record speech sounds too). The apps i've tried so far haven't worked properly.

    


    When I start to see my dream, the applications usually give an error that ffmpeg is not installed. Yes, this error doesn't occur if I dream in the dark at night. But the problem is that i sleep during the day, so i dream during the day. Even though I installed the latest version of FFmpeg, I was not successful.

    


    Is there a successful app to record daytime dreams ?

    


    I tried the "HD Dream Captura" application. But it didn't work. It doesn't work during the day. It also gives a memory full error and is constantly interrupted. But I have enough free space in my brain to be able to see my dreams.

    


  • Console windows displayed during python script execution [closed]

    15 janvier 2020, par vivitare

    i’m trying to create a Youtube converter with python and Tkinter.
    The problem is during the conversion with ffmpeg encoder, a console appear. But I don’t want to display her.

    Windows console displayed during encoding with ffmpeg

    Is there a parameter or something like that to disable this console ?

    I’m using this code to launch dowlnoad and youtube-dl do the rest :

    ydl_opts = {
       'format': 'bestaudio/best',
       'postprocessors': [{
           'key': 'FFmpegExtractAudio',
           'preferredcodec': 'mp3',
           'preferredquality': '192',
       }],
       'logger': MyLogger(),
       'progress_hooks': [my_hook],
    }
    with youtube_dl.YoutubeDL(ydl_opts) as ydl:
       ydl.download(['https://www.youtube.com/watch?v=BaW_jenozKc'])