Recherche avancée

Médias (91)

Autres articles (99)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (13810)

  • FFmpeg Brrip or Dvdrip To Mp4

    8 décembre 2013, par Ahmet KAPIKIRAN

    I want to compress a film which has dvdrip and brrip with mp4 and h.264 codecs.

    ffmpeg -i video.avi -vcodec libx264 -crf 25 -acodec libfaac -vpre slower \
      -acodec copy video.mp4
    

    error message

    Invalid option or argument: 'directpred=3', parsed as 'directpred' = '3'

    Console output

  • how to call avconv via shell_ exec in php ?

    8 janvier 2018, par Blurry Script

    when I call a command to convert video from console linux its all working, but when I call the same command from shell_exec in php, it gives no errors it returns nothing.

    even tough I added sudo 2>&1 to redirect the output, for example this command :

    $res = shell_exec("avconv -i film.mkv 2>&1");
    echo $res //nothing
    exit;
  • what parameters for SD ?

    6 janvier 2015, par SledgehammerPL

    I have this :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'film.mp4':
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: mp42mp41
       creation_time   : 2013-07-09 17:41:04
     Duration: 00:00:15.04, start: 0.000000, bitrate: 6132 kb/s
       Stream #0.0(eng): Video: h264 (Main), yuv420p, 1280x720 [PAR 1:1 DAR 16:9],                                                               5951 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc
       Metadata:
         creation_time   : 2013-07-09 17:41:04
       Stream #0.1(eng): Audio: aac, 48000 Hz, stereo, s16, 189 kb/s
       Metadata:
         creation_time   : 2013-07-09 17:41:04

    and want to down quality to standard PAL - how to do with ffmpeg/avconv ?