Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (47)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (3961)

  • reverse Video : Moviepy Error, by using time.mirror (ffmpeg)

    26 mars 2023, par stelidakis

    im desperately trying to reverse a movie with moviepy by using .time_mirror.

    


    from moviepy.editor import *
import moviepy.video.fx.all as vfx
# Load the video
video = VideoFileClip("/videos/uncut/videogames/other/001.mp4")


popreversed_video = video.fx(vfx.time_mirror)

# Save the reversed video
reversed_video.write_videofile("videos/cut/videogames/other/001_rev.mp4")

print("done")


    


    but im always getting this error :

    


    MoviePy error: failed to read the first frame of video file /videos/uncut/videogames/other/001.mp4. That might mean that the file is corrupted. That may also mean that you are using a deprecated version of FFMPEG. On Ubuntu/Debian for instance the version in the repos is deprecated. Please update to a recent version from the website.&#xA;  File "/Shorts Project/codefiles/video_play_and_rewinde_test_001.py", line 11, in <module>&#xA;    popreversed_video = video.fx(vfx.time_mirror)&#xA;OSError: MoviePy error: failed to read the first frame of video file /videos/uncut/videogames/other/001.mp4. That might mean that the file is corrupted. That may also mean that you are using a deprecated version of FFMPEG. On Ubuntu/Debian for instance the version in the repos is deprecated. Please update to a recent version from the website.&#xA;</module>

    &#xA;

    the funny thing is, moviepy is installed, uninstalled, reinstalled and updated.&#xA;further, ffmpeg is installed, uninstalled, reinstalled, updated.

    &#xA;

    but stimm its not working.

    &#xA;

    Please help

    &#xA;

    Thank you

    &#xA;

      &#xA;
    • pip install moviepy
    • &#xA;

    • pip uninstall moviepy
    • &#xA;

    • pip install ffmpeg
    • &#xA;

    • pip install ffmpeg-python
    • &#xA;

    • brew install ffmpeg
    • &#xA;

    • pip uninstall ffmpeg
    • &#xA;

    • pip install —upgrade moviepy
    • &#xA;

    &#xA;

    probably not in this order, but everything is on the currently newest version.&#xA;Operator : MacOs

    &#xA;

  • reverse Video : Moviepy Error, by using time.mirror

    22 août 2023, par stelidakis

    im desperately trying to reverse a movie with moviepy by using .time_mirror.

    &#xA;

    from moviepy.editor import *&#xA;import moviepy.video.fx.all as vfx&#xA;# Load the video&#xA;video = VideoFileClip("/videos/uncut/videogames/other/001.mp4")&#xA;&#xA;&#xA;popreversed_video = video.fx(vfx.time_mirror)&#xA;&#xA;# Save the reversed video&#xA;reversed_video.write_videofile("videos/cut/videogames/other/001_rev.mp4")&#xA;&#xA;print("done")&#xA;

    &#xA;

    but im always getting this error :

    &#xA;

    MoviePy error: failed to read the first frame of video file /videos/uncut/videogames/other/001.mp4. That might mean that the file is corrupted. That may also mean that you are using a deprecated version of FFMPEG. On Ubuntu/Debian for instance the version in the repos is deprecated. Please update to a recent version from the website.&#xA;  File "/Shorts Project/codefiles/video_play_and_rewinde_test_001.py", line 11, in <module>&#xA;    popreversed_video = video.fx(vfx.time_mirror)&#xA;OSError: MoviePy error: failed to read the first frame of video file /videos/uncut/videogames/other/001.mp4. That might mean that the file is corrupted. That may also mean that you are using a deprecated version of FFMPEG. On Ubuntu/Debian for instance the version in the repos is deprecated. Please update to a recent version from the website.&#xA;</module>

    &#xA;

    the funny thing is, moviepy is installed, uninstalled, reinstalled and updated.&#xA;further, ffmpeg is installed, uninstalled, reinstalled, updated.

    &#xA;

    but stimm its not working.

    &#xA;

    Please help

    &#xA;

    Thank you

    &#xA;

      &#xA;
    • pip install moviepy
    • &#xA;

    • pip uninstall moviepy
    • &#xA;

    • pip install ffmpeg
    • &#xA;

    • pip install ffmpeg-python
    • &#xA;

    • brew install ffmpeg
    • &#xA;

    • pip uninstall ffmpeg
    • &#xA;

    • pip install —upgrade moviepy
    • &#xA;

    &#xA;

    probably not in this order, but everything is on the currently newest version.&#xA;Operator : MacOs

    &#xA;

  • Is there a way to store packet header information from an incoming h.264 stream ?

    13 septembre 2021, par SOSparachuter1

    The issue : I need to convert an h.264 stream streamed over RTP into MJPEG, but for very convoluted reasons I am required to use the libjpeg-turbo library, not the mjpeg encoder that comes with ffmpeg. So the only thing FFMPEG needs to do is convert the h.264 RTP stream to rawvideo in RGBA and output to a socket where I then manually do the transcoding.

    &#xA;

    However, libjpeg-turbo only expects complete frames, meaning I need to collect rawvideo packet fragments and somehow synchronize them. Putting incoming raw video fragments into a buffer as they come results in heavily broken images.

    &#xA;

    Is there some way of saving the header information of the initial h.264 RTP packets ? The command I'm currently using is very straightforward :

    &#xA;

    -i rtsp :// : -vcodec rawvideo -f rawvideo udp :// :

    &#xA;