Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (84)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

  • How I can load testing my web application if I host it in Azure and Google Cloud

    29 décembre 2018, par Anirudha Gupta

    I am trying to stream the video on Youtube using FFmpeg. Earlier I have a preset which is used to stream at lower resolution.

    Now I want to send the video as it is. I am trying to use this code

    ./ffmpeg -re -i "C:\Users\Anirudha\Desktop\abc.mp4" -codec copy -f flv "rtmp://a.rtmp.youtube.com/live2/mykey1"

    I got this code from here https://www.wowza.com/docs/how-to-configure-security-using-wowza-streaming-engine-manager

    This code is working fine for Wowza but it’s shown running on youtube (in the command line) in Actual it’s not doing anything on the youtube website.

    Is there any way to send the file to youtube the file as it is, What I am looking for is I don’t want to do anything on file. Let the resolution same as it is.

  • What causes "double free or corruption" and "invalid pointer" in javacpp - ffmpeg ?

    7 septembre 2016, par Jiro Matchonson

    I use https://github.com/bytedeco/javacpp-presets/tree/master/ffmpeg

    <dependency>
         <groupid>org.bytedeco.javacpp-presets</groupid>
         <artifactid>ffmpeg</artifactid>
         <version>3.1.2-1.2</version>
    </dependency>

    When i am calling avformat_open_input/avformat_close_input i randomly (never at first call) get those errors :

    Error in `/usr/lib/jvm/java-8-oracle/bin/java': double free or corruption (out): 0x00007fe79c194aa0

    or

    Error in `/usr/lib/jvm/java-8-oracle/bin/java': double free or corruption (!prev): 0x00007fe51c3ffb60

    or

    Error in `/usr/lib/jvm/java-8-oracle/bin/java': double free or corruption (fasttop): 0x00007fcdc40fe4a0

    I cant find out how to solve this, please help.

    There is my implementation :

       private static void registerComponents() {
           if (!componentsRegistered) {
               componentsRegistered = true;
               av_register_all();
           }
       }

       public static void decodeFrame(ByteBuffer frameData) {
           registerComponents();

           AVFormatContext pFormatCtx = avformat_alloc_context();
           int i, videoStream;
           AVCodecContext pCodecCtx = null;
           AVCodec pCodec = null;
           AVFrame pFrame = null;
           AVFrame pFrameRGB = null;

           int[] frameFinished = new int[1];
           int numBytes;
           BytePointer buffer = null;

           AVDictionary    optionsDict = null;
           SwsContext      sws_ctx = null;

           AVIOContext ioContext = avio_alloc_context(new BytePointer(frameData), frameData.capacity(), 0, null, null, null, null);
           pFormatCtx.pb(ioContext);

           if (avformat_open_input(pFormatCtx, "", null, null) &lt; 0) {
               logger.error(MarkerFactory.getMarker("ffmpeg"), "Problem with load video from memory.");
               return;
           }

          avformat_close_input(pFormatCtx);      
       }
  • doc/muxers/hls : change "can used" to "can be used"

    2 janvier 2014, par Stefano Sabatini
    doc/muxers/hls : change "can used" to "can be used"
    

    Spotted-by : Alexander Strasser <eclipse7@gmx.net>

    • [DH] doc/muxers.texi