Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (36)

  • Ajout d’utilisateurs manuellement par un administrateur

    12 avril 2011, par

    L’administrateur d’un canal peut à tout moment ajouter un ou plusieurs autres utilisateurs depuis l’espace de configuration du site en choisissant le sous-menu "Gestion des utilisateurs".
    Sur cette page il est possible de :
    1. décider de l’inscription des utilisateurs via deux options : Accepter l’inscription de visiteurs du site public Refuser l’inscription des visiteurs
    2. d’ajouter ou modifier/supprimer un utilisateur
    Dans le second formulaire présent un administrateur peut ajouter, (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (5626)

  • build : Conditionally build and run DCT test program

    21 juillet 2014, par Diego Biurrun
    build : Conditionally build and run DCT test program
    
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/dct-test.c
    • [DH] tests/fate/libavcodec.mak
  • Broken pipe when trying to pipe ffmpeg png output to another program

    7 mars 2019, par nicky nick

    Here’s my what I’m trying to do :

    ffmpeg -i video.mp4 -vcodec:png -f image2pipe - | waifu2x-caffe-cui -c 128 -d  8 -p cudnn --model_dir "C:\waifu2x-caffe\models\cunet" -s 2 -n 3 -m noise_scale -e .png -l bmp -o %03d.png -i -

    I get :

    av_interleaved_write_frame(): Broken pipe
    Error writing trailer of pipe:: Broken pipe

    How to make this work ? and if possible I want to pipe it again to ffmpeg to create video.

    Edit : I’m trying to extract all the frame from the video and process them with other programs, so piping the output can save me a lot of time because I don’t have to monitor my computer so often.

  • libavformat / ffmpeg c program "not suitable input format"

    15 novembre 2013, par JonMorehouse

    Hello I'm attempting to encode videos using the C ffmpeg libraries. For some reason, when I attempt to create a format context I get an error with :

    [NULL @ 0x7ff574006600] Requested output format 'mp4' is not a suitable output format

    I know that my ffmpeg is compiled with the x264 flags, as a simple

    ffmpeg -i test.mov test.mp4

    works fine. I'm also linking with all of the generated pch files and everything else from the libav* libraries is working fine. Here's a full working example with the error's I'm recieving :

    #include <libavformat></libavformat>avformat.h>
    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavutil></libavutil>avutil.h>
    #include <libswscale></libswscale>swscale.h>
    #include <libavutil></libavutil>opt.h>
    #include <libswscale></libswscale>swscale.h>
    #include <libavutil></libavutil>imgutils.h>

    #include

    int main() {

       AVFormatContext * output = NULL;

       // now lets initialize the actual format element
       if (avformat_alloc_output_context2(&amp;output, NULL, "mp4", "test.mp4") &lt; 0) {

           printf("%s", "INVALID");
       }

       return 0;

    }