Recherche avancée

Médias (0)

Mot : - Tags -/albums

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (39)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Subtitle not visible while converting GIF with ffmpeg

    16 avril 2017, par 0rhodabasi

    I couldn’t make a subtitled gif with a proper quality and a subtitle. Here is my bash script :

    start_time=00:00:45
    duration=5


    PALETTE="palette.png"
    SUBTITLE="subtitles=sub.srt:force_style='Fontsize=24'"
    FILTERS="fps=20,scale=400:-1:flags=lanczos"




    ffmpeg -ss $start_time -t $duration -i $1 -vf "$FILTERS,palettegen" -y $PALETTE
    ffmpeg -ss $start_time -t $duration -i $1 -i $PALETTE -lavfi "$FILTERS[x];[x][1:v] paletteuse" -y $2 -vf $SUBTITLE

    It returns no error, just no subtitle on the output gif. There is a relevant question already here, but it didn’t work neither.

  • crystalhd : Fix up the missing first sample

    15 octobre 2016, par Philip Langdale
    crystalhd : Fix up the missing first sample
    

    Why on earth the hardware returns garbage for the first sample of
    a decoded picture is anyone’s guess. The simplest reasonable way
    to patch it up is to copy the first sample of the second line. This
    should result in the correct chroma values (because the data was
    original 4:2:0 upsampled to 4:2:2) even if the luma is isn’t.

    • [DH] libavcodec/crystalhd.c
  • Ffmpeg command not found in inside laravel. Even it is working in bash

    14 février 2018, par Vimal Mistry

    I am working in Laravel 5.4 project. I have to use ffmpeg for generate thumbnail from videos. I am using cloudlinux on my server. I installed ffmpeg in my server.

    It is working fine in ssh bash. All the functionality working there.
    But problem is when I am trying to call from inside laravel using exec() or shell_exec(). Its returns error like "sh : ffmpeg command not found". I tryied full path also like "/usr/bin/ffmpeg -etc-". In that case ’No file or directory found’ errors shows. While it is installed in this path. and working in bash command.

    Please give some suggestion or solution for it.