
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (69)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 (10031)
-
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


-
ffmpeg : How to add an image to the end of a video, freeze framing the last frame and using a fade
26 novembre 2019, par Jeremy Thomerson(I’ve looked at a number of other similar questions, but can’t find any with an answer that actually works)
I often need to combine a short video clip with in image. Typically, the video clip is a short explanation of a concept, followed by an image that helps the user visualize the concept. Rarely do the frame sizes / resolution of the video and image match. Typically, I need every second of the video clip to display, so even though I would like a cross-fade between the video and image, I’d like to freeze-frame the final frame of the video, and then cross-fade between that frozen frame and the following image.
I’d like both the video and image, despite the disparity in their resolutions, to "fit to frame", such that I get an output that’s either a) the size of the larger asset, or b) some fixed size (like 720p), and in either case, both the image and video are scaled to fit into those dimensions, while maintaining their original aspect ratio.
For example, given the following two assets (video and image), how could I accomplish what’s described above ? (Note : these assets are just ones I found that are available for examples, and not the actual type of content I’d be using ; however, they do accurately represent the disparity in resolution and aspect ratio I’d often have between video and image file).
- https://file-examples.com/wp-content/uploads/2017/04/file_example_MP4_640_3MG.mp4
- https://upload.wikimedia.org/wikipedia/commons/e/e8/World_blank_map_countries.PNG
Bonus : At times, I’d like to :
- Reverse the order (image, and then video), or
- Have a video and then multiple images, one after the other, faded between each, or
- Video, fade to image, then more video
Note : I’m running ffmpeg on Mac / OSX, installed via brew
Thanks so much if you can help !
-
How to permanently make ffmpeg recognizable from bin/bash in macOS
10 avril 2022, par AnonymousI downloaded a zip for ffmpeg, because brew installation was not compatible with macOS High Sierra 10.13.6. After unzipping, the only file contained was ffmpeg, its icon is similar to the icon of the terminal. I want to get the terminal(which runs bin/bash $SHELL) to permanently recognise
ffmpeg
command.

If I type :


- 

echo export PATH="/Users/imac/Documents/ffmpeg:$PATH" > ~/.bashrc
source ~/.bashrc
ffmpeg

then the commandffmpeg
is recognized, so everything is ok.








However if I exit the terminal and re-open it, or just restart the computer

ffmpeg
gives as output-bash: ffmpeg: command not found
. So I have to do every time steps 1 and 2 that were describe above.

- 

-
Output of
cat .bashrc
:
export PATH=/Users/imac/Documents/ffmpeg:/Library/Frameworks/Python.framework/Versions/3.9/bin:/Library/Frameworks/Python.framework/Versions/3.10/bin:/opt/anaconda3/condabin:/Library/Frameworks/Python.framework/Versions/3.9/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin


-
Output of
echo $PATH
:
/Library/Frameworks/Python.framework/Versions/3.9/bin:/Library/Frameworks/Python.framework/Versions/3.10/bin:/opt/anaconda3/condabin:/Library/Frameworks/Python.framework/Versions/3.9/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin








Note that in step 4
ffmpeg
appears(in the location I have it stored) whereas in step 5ffmpeg
is absent. Also I have little knowledge of bash and terminal, so if you can, please be explanatory in answers and/or comments. Thank you very much !