Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (105)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (18399)

  • ffmpeg-python outputs black screen when trying to save as mp4

    3 mars 2023, par Saya

    This is my code. I am trying to make a video out of all pictures in the pics2 directory using ffmpeg.

    


    import subprocess

command = 'ffmpeg -framerate 1 -i "pics2/Image%02d.png" -r 1 -vcodec libx264 -s 1280x720 -pix_fmt yuv420p Output.mp4'
p = subprocess.call(command, shell=True)


    


    This saves an Output.mp4 successfully but the video has no frames (It is completely black)

    


    How do I solve this ?

    


  • How to stream from a private m3u8 server using ffmpeg

    22 juin 2019, par Yassine Bridi

    I’ve been using ffmpeg to stream m3u8 files to twitch, and similar platforms,
    through this script :

    #! /bin/bash

    PRESET="ultrafast"
    PLATFORM="rtmp://(platform_streaming_url)"
    SOURCE="source of the stream(m3u8)"
    STREAMING_KEY="platform_personal_streaming_key"

    ffmpeg \
       -re -i "$SOURCE" -vcodec libx264 -preset $PRESET -maxrate 3000k -b:v 2500k \
       -bufsize 600k -pix_fmt yuv420p -g 60 -c:a aac -b:a 160k -ac 2 \
       -ar 44100 -f flv -s 1280x720 "$STREAMING_KEY/$PLATFORM"

    But usualy the source of those streams are private, and to stream from private sources i have to use other solutions that take a lot of my computer resources.

    So is there a way to stream through ffmpeg, knowing that i have the credentials of that private stream.

  • How do I create a MPEG stream with private binary data using avconv ?

    19 février 2013, par haole

    I have some binary data that I need to transmit with a MPEG transport stream. I don't need to worry about the tables, because another software in the process is going to insert them into the stream.

    I have a fixed private PID that I have to use. Is there a way to just "break" this binary data into TS packets with the my private PID using only this command line tool (avconv) ? If not, is it possible with the C library ?