
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (94)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (10612)
-
How do I accurately extend the duration of a tiny video clip ?
18 avril 2018, par joeycatoI noticed that ffmpeg doesn’t always scale the duration of a clip to the desired value ( even accounting for milliseconds of precision loss.) For example, whenever I attempt to scale the duration of this tiny 67ms clip to 7 seconds :
ffmpeg -i input.avi -filter:v "setpts=(7/0.067)*PTS" -an output.avi
the resulting video is only 3.5 seconds in duration.
Not really sure why this is off by multiple seconds, but I suspect it has something to do with the input clip itself ( which is only 2 frames @ 29.97 fps ) So far, I’ve discovered that if I scale the duration to a much larger value first, then scale back from that to 7 seconds, it works fine :
ffmpeg -i input.avi -filter:v "setpts=(1000)*PTS" -an input_scaled_high.avi
ffmpeg -i input_scaled_high.avi -filter:v "setpts=(7/33.400033)*PTS" -an output.aviBut I’m hoping I don’t need to resort to an intermediate file. Is it possible to solve this with a single ffmpeg call ?
If it helps, here is the video file I’m working with : https://drive.google.com/drive/folders/1hI5Xo6kfAfMd8ZylM6XrPX5fuO88gncE?usp=sharing
Note : I should mention that I don’t need sound at all in this experiment ( hence the
-an
) -
FFMPEG Update Command For Android 7
4 juin 2019, par user2401847I have 300 images and i want to generate video from these images with Audio
i am using below command to generate video
ffmpeg -framerate 15 -i img_%d.jpg -i logo.png -i inputfile.mp3 -filter_complex \
"[0:v][1:v] overlay=25:25:enable='between(t,0,20)'" \
-vcodec libx264 -crf 25 -map 2:a -c:a copy -pix_fmt yuv420p -shortest test_video.mp4Which generates video with audio but video is not working for android 7 and above
Log File (Android 6 - Working) https://drive.google.com/file/d/1uZEjcumY9qUACHvOSdW-3FxMQ66Gr7t4/view?usp=sharing
Log file (Android 7 - not working ) https://drive.google.com/file/d/1QgFYjf-hr33LvIpDZBaV0KxyrO3Z9eUs/view?usp=sharing
-
How to improve the animation quality with ffmpeg ?
17 janvier 2017, par Loïc PoncinWith
ffmpeg
I was able to get animation as an MP4 file and then I converted it into a GIF file.# Animation
ani = animation.ArtistAnimation(fig, film, interval=100, blit=True, repeat_delay=100)
ani.save('animation.mp4', writer="ffmpeg", fps=30)
os.system("ffmpeg -i C:\my_path\\animation.mp4 C:\my_path\\animation.gif")My problem is that the quality is not really good.
In my google drive (https://drive.google.com/open?id=0B7P95aWmH4DUbzJCaVZQM3Y0Y1U) you can find 3 files showing the animation : 1 PNG image (good quality), 1 MP4 file (normal quality), 1 GIF file (bad quality).
How can I keep a good quality during the process ?