Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (50)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

Sur d’autres sites (8437)

  • configure : Allow log2 with MSVC 2013 onwards.

    11 mai 2014, par Matt Oliver
    configure : Allow log2 with MSVC 2013 onwards.
    

    Only MSVC 2010 in x64 mode, in the static msvcrt, had a
    stray log2 function (which wasn’t available in the headers).

    MSVC 2013 has got a proper log2 function though.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
  • How can I configure ffserver to support rtmp instead of http?

    27 avril 2016, par randomuser1

    I grab the image from my camera using ffmpeg and the following command :

    ffmpeg -y -f vfwcap -r 25 -i 0 http://10.172.180.235:8090/feed2.ffm

    and on other machine (with the ip mentioned above) I have the ffserver running with the following config file :

    HttpPort 8090
    HttpBindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 3000
    CustomLog -
    <stream>
       Format status
       ACL allow localhost
       ACL allow 192.168.0.0 192.168.255.255
       ACL allow 10.172.180.199
       ACL allow 10.172.180.216
       ACL allow 10.172.180.215
    </stream>
    <feed>
       File /tmp/feed2.ffm
       FileMaxSize 1G
       ACL allow 127.0.0.1
       ACL allow 10.172.180.199
       ACL allow 10.172.180.216
       ACL allow 10.172.180.236
       ACL allow 10.172.180.109
    </feed>
    <stream>
       Format flv
       Feed feed2.ffm

       VideoCodec libx264
       VideoFrameRate 30
       VideoBitRate 800
       VideoSize 1280x720
       AVOptionVideo crf 23
       AVOptionVideo preset medium
       AVOptionVideo me_range 16
       AVOptionVideo qdiff 4
       AVOptionVideo qmin 10
       AVOptionVideo qmax 51
       AVOptionVideo flags +global_header
    NoAudio
       AudioCodec aac
       Strict -2
       AudioBitRate 128
       AudioChannels 2
       AudioSampleRate 44100
       AVOptionAudio flags +global_header
    </stream>

    And that works, I can stream video in flv over http... But now I would like to use rtmp, becase I want to display the live stream on my webpage with some player. I wanted to use the video.js, but it seems like in the latest versions it doesn’t support live video any more... I found mediaelement.js, but to stream live content there I need the rtmp protocol, so that’s the cause of my question.
    Thanks for your help

  • i want ffmpeg command to do transition effect and fadein fadeout between images

    21 avril 2017, par praveen s

    please give the perfect command for to do image animation effects.

    public static String[] cmdCreateVideo(int frame,String videoSource, String outPut){
       float duration_frame=1.0F;
       if (frame&lt;= 20) {
           duration_frame = 1.0F;
       }else {
           duration_frame = 0.6F;
       }
       String str5 = "-framerate 1/" + duration_frame + " -start_number 0 -i " + videoSource + " -vcodec mpeg4 -q:v 3 -r 20 -vf scale=480x800 " +outPut;
       return str5.split(" ");
    }

    this is my command to create video from images ,but i want to add image trasition effect between two images.