Recherche avancée

Médias (91)

Autres articles (18)

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

Sur d’autres sites (4243)

  • ffmpeg video cropping "unable to parse option value "" as boolean"

    27 novembre 2018, par Lisa Mitchem

    I am trying to crop .mp4 videos to a specific size using this code :

    ffmpeg -i INPUT.mp4 -filter:v "crop=900:1000:800:300” OUTPUT.mp4

    However, even when I change the crop values, I get this error every time :

    [crop @ 0x7f974e8441c0] Unable to parse option value "1000" as boolean
    [crop @ 0x7f974e8441c0] Unable to parse option value "800" as boolean
    [Parsed_crop_0 @ 0x7f974e8440c0] No option name near '300”'
    [AVFilterGraph @ 0x7f974e843dc0] Error initializing filter 'crop' with
    args '900:1000:800:300” out2.mp4
    ffmpeg -i INPUT.mp4 -vf crop=900:1000:800:300”'
    Error reinitializing filters!
    Failed to inject frame into filter network: Invalid argument
    Error while processing the decoded data for stream #0:0
  • How to set "channel_layout" or "ch_layout" in 6.1 FFMPEG [closed]

    5 janvier 2024, par Steven porite

    In avcodec_open2(), it will set the "avctx->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC ;" when&#xA;avctx->channel_layout is false. If I want to set the ".order = AV_CHANNEL_ORDER_NATIVE",&#xA;what can I do ?

    &#xA;

    enter image description here

    &#xA;

    I don't know how to use the option to set "channel_layout" or "ch_layout" ? Hope someone can help me.

    &#xA;

  • ffmpeg : convert subtitles from "hdmv_pgs_subtitle" to "mov_text" (needed in MP4)

    19 avril 2024, par rgr

    Is there any way to convert subtitles from "hdmv_pgs_subtitle" to "mov_text" (needed in MP4).

    &#xA;&#xA;

    I try :

    &#xA;&#xA;

    ffmpeg.exe i "%%F" c copy -scodec mov_text "test.mp4"&#xA;

    &#xA;&#xA;

    but I get :&#xA;Error while opening encoder for output stream #0:2 - maybe incorrect parameters&#xA;such as bit_rate, rate, width or height

    &#xA;&#xA;

    Stream properties :

    &#xA;&#xA;

    Duration: 00:01:48.14, start: 4199.920000, bitrate: 12394 kb/s&#xA;Program 1&#xA;Stream #0:0[0x1011], 169, 1/90000: Video: h264 (High), 1 reference frame (HDMV / 0x564D4448), yuv420p(top first, left), 1920x1080 (1920x1088) [SAR 1:1 DAR 16:9], 0/1, 25 fps, 25 tbr, 90k tbn, 50 tbc&#xA;Stream #0:1[0x1100], 102, 1/90000: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, stereo, fltp, 256 kb/s&#xA;Stream #0:2[0x1200], 35, 1/90000: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090), 1920x1080&#xA;

    &#xA;