Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (66)

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

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

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

  • How to install ffmpeg-php on CentOS 7

    8 février 2015, par Mark van Marion

    I have succesfully installed ffmpeg on CentOS 7, but just wont succeed installing the ffmpeg-php, because i get the following error (this is when i do the ’./configure’ command) :

    checking for PHP extension directory... /usr/lib64/php/modules
    checking for PHP installed headers prefix... /usr/include/php
    checking if debug is enabled... no
    checking if zts is enabled... no
    checking for re2c... no
    configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
    checking for gawk... gawk
    checking for ffmpeg support... yes, shared
    checking whether to force gd support in ffmpeg-php... no
    checking for ffmpeg headers...
    configure: error: ffmpeg headers not found. Make sure ffmpeg is compiled as     shared libraries using the --enable-shared option

    But ffmpeg is compiled as shared libary..

    ffmpeg version 2.2.1 Copyright (c) 2000-2014 the FFmpeg developers
     built on Jun 17 2014 01:25:46 with gcc 4.8.2 (GCC) 20140120 (Red Hat 4.8.2-16)
     configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --mandir=/usr/share/man --enable-shared --enable-runtime-cpudetect --enable-gpl --enable-version3 --enable-postproc --enable-avfilter --enable-pthreads --enable-x11grab --enable-vdpau --disable-avisynth --enable-frei0r --enable-libdc1394 --enable-libgsm --enable-libmp3lame --enable-libnut --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librtmp --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --disable-stripping
     libavutil      52. 66.100 / 52. 66.100
     libavcodec     55. 52.102 / 55. 52.102
     libavformat    55. 33.100 / 55. 33.100
     libavdevice    55. 10.100 / 55. 10.100
     libavfilter     4.  2.100 /  4.  2.100
     libswscale      2.  5.102 /  2.  5.102
     libswresample   0. 18.100 /  0. 18.100
     libpostproc    52.  3.100 / 52.  3.100
    Hyper fast Audio and Video encoder
    usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

    I have searched all over the internet, but cant find a answer. I hope someone can help me !

  • VB.Net Stream/Port Image To FFmpgeg using Standard Input

    31 janvier 2015, par Zakir_SZH

    hope all active member of this community are fine.
    in my project i need to convert several image to video file.
    Currently i have to first save the images to PC then use ffmpeg to read that images from the pc and convert it to movie.

    But rather than save image to pc, i want to send image directly to ffmepg using StandardInput call. Ffmped does support that. but i don’t know how to use that.

    i have search internet a lot and all i found is getting output/response from ffmpeg using standarderror as ffmepg write to standerror instead of standardouput.

    below link something similar to what i look for that that code don’t work and also that use mp3 file instead of image/graphics.

    http://tiku.io/questions/3075356/convert-wma-stream-to-mp3-stream-with-c-sharp-and-ffmpeg

    can any one help me out, how to send image from picturebox/graphics object to ffmpeg one by one ?

    thanks in advance

    best regards

  • Receiving and Manipulating RTSP stream using FFMPEG library in Java Application

    14 janvier 2015, par Bilal Ahmed Yaseen

    Hope you all be fine and doing great.

    I am currently working on a Java Web Application. I am getting Streaming video using RTSP URL. This URL is like :

    rtsp://---.---.---./6ca714ae28e52f31

    I have been able to capture video, diplay/listen it and store it in .mp4 file using FFMPEG with the following command :

    fmpeg -i rtsp://username:password@---.---.---.---/6ca714ae28e52f31 -f mov e:/bay.mov (with authentication)

    Now, I want to achieve the same in my Java application using ffmped library. I am sure if all this possible through commands then It will also be possible using its library. But unfortunately couldn’t get any working useful material regarding this on web.

    So, I simply want to ask that :

    1.  How can I fetch Streams using this RTSP URL in my Java Application with FFMPEG library
    2.  How can I Manipulate this fetched streaming such as start, stop, end etc.
    3.  How can I store this streaming in media file in playable form in any specified format.

    I have found a FFMPEG’s Java Rapper JJMPEG. Now I have two options either to issue FFMPEG command to CMD using Java Application or use JJMPEG library directly. Don’t know which one will be better choice.

    Thanks for your time and considerations.