Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (47)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

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

  • HTML5 audio and video support

    13 avril 2011, par

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (10350)

  • tools/target_enc_fuzzer : replace assert by clean exit

    5 mai 2024, par Michael Niedermayer
    tools/target_enc_fuzzer : replace assert by clean exit
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tools/target_enc_fuzzer.c
  • ffmpeg avformat_open_input function return err_code -1414093056, immediate exit requested

    13 septembre 2023, par zyw

    I'm making an upload software, when I unplug the device's camera and plug it in again, utilizing ffmpeg6.0, the first time I open the video screen in thread, avformat_open_input will report an error and return -1414093056, immediate exit requested, the second time I open it in thread it's normal and only In this case, it will report an error, I would like to ask what is the reason.

    &#xA;

    I broke the point in the source code and found that it is in avio.c uc->protocol_whitelist is null to report an error. It's a bit of a rush at work.

    &#xA;

  • exit status 127 when running ffmpeg from golang

    18 mai 2023, par Eran

    Hi I am using the following docker image :

    &#xA;

    FROM golang:alpine3.18&#xA;

    &#xA;

    With ffmpeg : (probably here I am missing something)

    &#xA;

    RUN apk add --no-cache ffmpeg&#xA;

    &#xA;

    However when trying to execute the following :

    &#xA;

    cmd := "ffmpeg -i Untitled.mp4 -vf \"fps=5,scale=320:-1:flags=lanczos\" -c:v pam -f image2pipe - | convert -delay 5 - -loop 0 -layers optimize test.gif"&#xA;_, err := exec.Command("bash", "-c", cmd).Output()&#xA;if err != nil {&#xA;    fmt.Println(fmt.Sprintf("Failed to execute command: %s", err))&#xA;}&#xA;

    &#xA;

    I get this error :

    &#xA;

      Failed to execute command: exit status 127&#xA;

    &#xA;