Recherche avancée

Médias (91)

Autres articles (51)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (7490)

  • avcodec/version : re-enable FF_API_MPV_OPT until the open ABI period is over

    21 octobre 2017, par James Almer
    avcodec/version : re-enable FF_API_MPV_OPT until the open ABI period is over
    

    ffserver depends on it, so keep it in place until the two can be
    removed together.

    • [DH] libavcodec/version.h
  • Windows FFMPEG : Open Icecast Stream and output Metadata / "icy_metadata_packet" continuously

    6 octobre 2017, par Henry

    I managed to open a mp3 stream and save it to 6-second-files continuously.

    What I can’t find is a way to save the song titles to a file or output them.

    I came across "icy_metadata_packet" which should do exactly what I need but it is not well-documented as it seems. Can I use that option in the command line as an option or do I need a script of some sort to put this value somewhere ?
    If so, what’s the easiest way/language for a script like this ? (maybe a .bat file ?)

    Thanks in advance for your help !

  • the ffmpeg library cannot open camera on android

    27 septembre 2013, par GilGaMesh

    I have successfully ported ffmpeg 2.0.1 lib to android. The code to open camera is very simple :

    AVFormatContext *fmt_ctx = NULL;
    AVInputFormat *input_fmt;

    input_fmt = av_find_input_format("video4linux2");
    if (input_fmt == NULL)
       return -1;

    char f_name[] = "/dev/video0";
    if ((ret = avformat_open_input(&fmt_ctx, f_name, input_fmt, NULL)) < 0)        // stuck here
    {
       LOG_D("can not open camera, ret = %d", ret);
       return ret;
    }

    the strange thing is the ret value is always negative with the following logcat output by av_log :

    09-26 15:27:48.901: E/Codec-FFMpeg(17716): ioctl(VIDIOC_G_PARM): Invalid argument

    I change the f_name to /dev/video1 and /dev/video2 (these files indeed exist on my tablet, and my tablet has 2 cameras) and the problems remains.
    Do i forget anything before calling avformat_open_input() ? Thank you !