Recherche avancée

Médias (91)

Autres articles (71)

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

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

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

  • Merge video with facebook profile photo and username

    5 juillet 2016, par undefinedtoken

    Is there any way to Dynamically generate a video by pulling facebook user’s profile photo and username ?

    I know how to merge dynamic images with text but i have no clue about videos.

  • Convert mp3 to aac stream for facebook video with ffmpeg

    17 août 2022, par Miro Barsocchi

    I want to start a live video in a Facebook page and I can do this using ffmpeg. The input is, as a video stream, a static image, suppose image.jpg and as audio a streaming content that currently is in mp3 format.
Due to facebook limitation, the audio format should be aac, so the idea is to convert the audio from mp3 to aac and send everything to facebook. What I'm using is this command

    


    ffmpeg -loop 1 -f image2 -i image.jpg -i https://some.streaming.service/mp3 -c:a libfdk_aac -pix_fmt yuv420p  -profile:v baseline  -bufsize 6000k  -maxrate 1500k  -vcodec libx264  -preset veryfast  -g 30  -r 30  -f flv  -flvflags no_duration_filesize  "rtmps://live-api-s.facebook.com:443/rtmp/FB-KEYTOSTREAM"


    


    where https://some.streaming.service/mp3 is a streaming in mp3 format. It "almost" work in the sense that it returns no error but I can not start streaming because, from facebook side, it seems that I'm not sending the stream : the "Start Live session" is not enabled

    


    enter image description here

    


    If I stop ffmpeg, then for a second, the button is enabled and I can stream a few seconds of what I want. It seems that the error is related to the fact that there is no buffer of data that arrives, will be converted, and directly sent to the output. If, instead of a mp3 streaming audio, I use a mp3 file then no problem.

    


    I'm quite sure that ffmpeg can do this type of conversion, but can someone help me understand the flag(s) that I'm missing ?

    


    I've tried also with -re with no luck.

    


  • ffmpeg : how to save h264 raw data as mp4 file

    15 avril 2016, par monkid

    I encode h264 data by libavcodec.
    ex.

    while (1) {
     ...
     avcodec_encode_video(pEnc->pCtx, OutBuf, ENC_OUTSIZE, pEnc->pYUVFrame);
     ...
    }

    If I directly save OutBuf data as a .264 file, it can`t be play by player. Now I want to save OutBuf

    as a mp4 file. Anyone know how to do this by ffmpeg lib ? thanks.