Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (44)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5692)

  • avutil/frame : add an LCEVC enhancement data payload side data type

    20 juillet 2024, par James Almer
    avutil/frame : add an LCEVC enhancement data payload side data type
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] doc/APIchanges
    • [DH] libavutil/frame.c
    • [DH] libavutil/frame.h
    • [DH] libavutil/version.h
  • MoviePy does not save anything anywhere. But also no error

    27 mai 2023, par Paul Spieker

    I tried running simple moviepy code. It does not save anything. Exit code 0. No error message. No sucessfully saved print. I have the newest version of moviepy and ffmpeg. Doesnt work with or without specifying an output directory. I am on windows 10, working in PyCharm with Python 3.9 . I am super new to coding if it isnt obvious, thankful for any help !! Here is the code I used :

    &#xA;

    from moviepy.editor import VideoClip&#xA;from moviepy.video.io.ffmpeg_writer import FFMPEG_VideoWriter&#xA;&#xA;&#xA;&#xA;&#xA;    w, h = 640, 480&#xA;    red = int(255 * t)&#xA;    green = int(255 * (1 - t))&#xA;    blue = 0&#xA;    frame = np.zeros((h, w, 3), dtype=np.uint8)&#xA;    frame[:, :, 0] = red&#xA;    frame[:, :, 1] = green&#xA;    frame[:, :, 2] = blue&#xA;    return frame&#xA;&#xA;&#xA;duration = 5  # in seconds&#xA;fps = 30&#xA;width, height = 640, 480&#xA;video_clip = VideoClip(make_frame, duration=duration)&#xA;&#xA;&#xA;output_path = "output.mp4"&#xA;&#xA;&#xA;video_clip.write_videofile(output_path, fps=fps, codec=&#x27;libx264&#x27;)&#xA;&#xA;print("File saved successfully!")&#xA;

    &#xA;

    I was expecting to get any file saved at all. Nothing shows up in my folder. I have double checked MoviePy and ffmpeg as stated.

    &#xA;

  • where to save mpd file in raspberry pi so dash.js can access it remotely ?

    11 mai 2016, par Djm

    This is very high level question. I want to stream a live video from raspberry pi. I want to be able to watch live video in the browser remotely being streamed by the Raspberry pi.I want to use DASH stream protocol, and Dash.js as client to HTML5. I have looked through different tutorials but i am still puzzled about how this works.I understand that (assuming you have already prepared your videos with FFMPEG tool) from the client Dash.js
    you have to make a call/request and pass a url to your mpd file. My question is where would you save the file in raspberry pi especially if the Dash client is in a different web app(i want to make the call remotely) ?