
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (47)
-
Supporting all media types
13 avril 2011, parUnlike 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, parAccé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 2011You 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 stelidakisim 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.
 File "/Shorts Project/codefiles/video_play_and_rewinde_test_001.py", line 11, in <module>
 popreversed_video = video.fx(vfx.time_mirror)
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.
</module>


the funny thing is, moviepy is installed, uninstalled, reinstalled and updated.
further, ffmpeg is installed, uninstalled, reinstalled, updated.


but stimm its not working.


Please help


Thank you


- 

- pip install moviepy
- pip uninstall moviepy
- pip install ffmpeg
- pip install ffmpeg-python
- brew install ffmpeg
- pip uninstall ffmpeg
- pip install —upgrade moviepy
















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


-
reverse Video : Moviepy Error, by using time.mirror
22 août 2023, par stelidakisim 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.
 File "/Shorts Project/codefiles/video_play_and_rewinde_test_001.py", line 11, in <module>
 popreversed_video = video.fx(vfx.time_mirror)
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.
</module>


the funny thing is, moviepy is installed, uninstalled, reinstalled and updated.
further, ffmpeg is installed, uninstalled, reinstalled, updated.


but stimm its not working.


Please help


Thank you


- 

- pip install moviepy
- pip uninstall moviepy
- pip install ffmpeg
- pip install ffmpeg-python
- brew install ffmpeg
- pip uninstall ffmpeg
- pip install —upgrade moviepy
















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


-
Is there a way to store packet header information from an incoming h.264 stream ?
13 septembre 2021, par SOSparachuter1The 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.


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.


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 :


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