Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (101)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (16547)

  • PHP - Executing ffmpeg using exec() and shell_exec() does nothing

    27 avril 2012, par 8vius

    I'm trying to convert an audio file in PHP using ffmpeg, I get the audio file via post as a m4a and I want to turn it into mp3. I do the following to do this :

    $commandOutput = shell_exec('ffmpeg -i '.$filePath.' -ar 8000 -ab 16000 '.str_replace('m4a', 'mp3', $filePath));

    Yet it does nothing, and commandOutput also contains nothing. The file is saved properly but not converted to mp3, when I run the same command in terminal it converts the file properly. Any idea what might be happening ?

  • streaming webcam via rtp protocol

    18 août 2016, par vasu gupta

    i am trying to stream and receive my webcam feed on two terminal on same laptop.For this purpose I am using the following commands :-

    foo.sdp :

    SDP:
    v=0
    o=- 0 0 IN IP4 127.0.0.1
    s=No Name
    c=IN IP4 127.0.0.1
    t=0 0
    a=tool:libavformat 55.2.100
    m=video 1235 RTP/AVP 96
    a=rtpmap:96 H264/90000
    a=fmtp:96 packetization-mode=1

    Transmitting :

    ffmpeg -re -i /dev/video0 -r 24 -b 50k -s 858x500 -f mulaw -f rtp rtp://127.0.0.1:3000> foo.sdp

    Receiving :

    ffplay -i foo.sdp

    While transmission seems to be working fine , but when i am using receiving command I am getting en error :

    Protocol not on whitelist 'file,crypto'!/0  
    foo.sdp: Invalid data found when processing input
  • Keep converting video when quitting ssh session [on hold]

    13 août 2015, par JimZer

    I have a dedicated server with Debian Jessie, I connect to it with ssh.
    I launched a list of video conversion with ffmpeg using my terminal with ssh. More precisely it convert a list of videos contained in a folder using this command :

    for file in *.avi; do ffmpeg -i "$file" "${file%.avi}".webm; done

    However I would like the list of tasks to continue even if I close my ssh session.
    Is that possible ?

    Thank you in advance for helping me.