Advanced search

Medias (1)

Tag: - Tags -/pirate bay

Other articles (62)

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • HTML5 audio and video support

    13 April 2011, by

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Configurer la prise en compte des langues

    15 November 2010, by

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

On other websites (4810)

  • Ffmpeg command not found in inside laravel. Even it is working in bash

    14 February 2018, by 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.

  • crystalhd: Fix up the missing first sample

    15 October 2016, by 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
  • Subtitle not visible while converting GIF with ffmpeg

    16 April 2017, by 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.