Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (107)

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

  • cmdutils : Only do the windows-specific commandline parsing on _WIN32

    7 août 2013, par Diogo Franco
    cmdutils : Only do the windows-specific commandline parsing on _WIN32
    

    Fixes commandline parsing on Cygwin (on 64 bit, and on very recent
    32 bit), where the configure check does find the CommandLineToArgvW
    function (since it exists in the link libraries and in the headers),
    but whose GetCommandLineW() only returns the application’s path.
    (This is due to a cygwin internal optimization, see
    http://cygwin.com/ml/cygwin/2013-07/msg00538.html for details.)
    Arguments are only given through main’s argc/argv, and they’re already
    UTF-8.

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

    • [DBH] cmdutils.c
  • FFmpeg Error Checking : Broken or missing AVI Index

    17 avril 2017, par Jake

    I have three example videos, good.avi, damaged1.avi, and damaged2.avi. The first will play in VLC, but the second two both error with the same "Broken or missing AVI Index" message.

    I have thousands of these videos which I need to process in MATLAB, so I’m trying to error check using FFmpeg like this : ffmpeg -v error -i vidname.avi -f null - 2>&amp;1

    Now here’s the part I don’t understand :
    On good.avi it completes with no output -OK
    On damaged1.avi it outputs [mjpeg @ 0x7fc1dd813800] overread 1 -OK
    On damaged2.avi it completed with no output as in good.avi - ?????

    Would someone with video codec/FFmpeg experience please help me understand what’s going on here so I can develop a more robust error check ?

    They also both have identical codec details in VLC :
    enter image description here

  • Restream TS file in HTTP server to RTMP server using ffmpeg

    15 juin 2018, par MatrixCow08

    I want to restream http://example.com/1.ts to a RTMP server.

    The command I use is :

    ffmpeg -i http://example.com/1.ts -ar 44100 -preset medium -crf 22 -x264-params keyint=2:min-keyint=2 -bufsize 500k -vcodec libx264 -b:v 700k -maxrate 700k -r 25 -f flv rtmp://janjuapublisher.com/live/MY_CHANNEL_NAME?key=MY_KEY&amp;id=MY_ID

    I use www.janjua.tv to create my TV channel and it give me the RTMP details as follows :

    FMS URL : rtmp ://janjuapublisher.com/live

    Stream Name : MY_CHANNEL_NAME ?key=MY_KEY&id=MY_ID

    However, I get Connection failed: application rejected and unsupported authentication method when I run this ffmpeg command.

    My command work fine in Twitch’s RTMP server because it is easy to use, but I can’t figure out how to use JanJua.tv .. Where to put the Stream Name, Key, Secret ?

    Any help would be appreciated.

    Thanks !