Advanced search

Medias (1)

Tag: - Tags -/ipad

Other articles (104)

  • Websites made ​​with MediaSPIP

    2 May 2011, by

    This page lists some websites based on MediaSPIP.

  • Gestion de la ferme

    2 March 2010, by

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Les autorisations surchargées par les plugins

    27 April 2010, by

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

On other websites (9413)

  • Syntax error: "(" unexpected — with !(*.sh) in bash script

    3 October 2016, by Jmv Jmv

    Regards,

    I want to run a sh file:

    #!/bin/bash
    for f in !(*.sh); do ffmpeg -i "$f" -vf yadif=0:-1 -threads 0 -c:v libx264 -pix_fmt yuv420p -r 29.97 -b:v 3000k -s 1280x720 -preset:v slow -profile:v Main -level 3.1 -bf 2 -movflags faststart /mnt/media/out-mp4/"${f%.mxf}.mp4"; rm $f; done

    However I get the following error:

    2: task1.sh: Syntax error: "(" unexpected

    If I try directly on the command line it works perfectly.

    the path and permissions are already reviewed

    Any idea what might be happening?

    Thank you a lot

    UBUNTU 14.04

  • libvpxenc: Don’t spam level errors for VP8 encodes

    12 December 2016, by Alex Converse
    libvpxenc: Don’t spam level errors for VP8 encodes
    

    Fixes "Failed to set VP9E_GET_LEVEL codec control: Codec does not
    implement requested capability" log messages on VP8 encodes.

    • [DH] libavcodec/libvpxenc.c
  • ffmpeg - "Incompatible pixel format 'rgb24' for codec 'gif', auto-selecting format 'rgb8'"

    8 February 2017, by fordprefect

    I’m trying to convert a .webm to .gif at a pretty good quality, so I decided to have a go at ffmpeg (very new to this). I followed some instructions and did some research and after setting everything up figured out what I wanted in the command line:

    ffmpeg -i input.webm -pix_fmt rgb24 -vf scale=-1:720 output.gif

    Whenever I start the conversion it gives me a warning (as seen in the title), and gives me a somewhat low quality gif by using ’rgb8’. I’ve googled around but can’t seem to find an answer, not that my skill level can understand at least.

    Help would be much appreciated! Thanks :)