
Recherche avancée
Autres articles (72)
-
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 (...) -
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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (6206)
-
ffmpeg copy video in video with a specific time
13 février 2017, par AlklIm new in this topic (beginner) and Im german... So it’s a bit difficult to find the correct words...
I’ll try to explain what I’ve done and what I want to do :
-
Extract video area from the original video converted in PRORES codec :
ffmpeg.exe -i test.mkv -ss 00:06:21.99 -t 00:00:01.94 -async 1 -strict -2 -c:v prores_ks -pix_fmt yuva444p10le -profile:v 4444 -bits_per_mb 8000 -s 1920x1080 cut_video.mov
-
Edit the cut in After Effects
- Convert the PRORES in Matroska
ffmpeg.exe -i "C :\Users\Alex\Desktop\ffmpeg-20170202-08b0981-win64-static\bin\cut_video\cut_video.mov" -vcodec ffv1 -acodec pcm_s16le temp.mkv
- Replace the video area in the originale video file at the time 00:06:21.99...
I spend 4 hours for the two commands...
So I despair at the fourth step. Is it possible ? Can you help me ?I made a picture, so you can understand better what Im doing... : http://i.imgur.com/HqlNxzW.jpg
Best regards from germany,
Alex
-
-
Looking for video libraries for editing video on windows/ios/azure service [on hold]
17 juillet 2015, par sanyamWhich library would be a good bet in terms of ...
1. Richness in features (I want to create a video from short clips and images with effects and filters). Think auto videos created from Google Photos.
2. Extensibility - I would prefer using similar tech on IOS and Windows apps. Might have to offload some processing to a web service on Azure (windows or linux).
3. Programmability - An API is preferred over command line as it gives more flexibility and better error handling.Given all these options, what is my best bet ? I’ve only looked at ffmpeg till now, is there a better alternative ?
-
Poor video quality in first few frames using video output options in gganimate
27 janvier 2021, par NauticaI'm trying to export some animations I've made using gganimate through video format as the gifs I'm creating are quite large.


Sample code :


library(gganimate)

p <- ggplot(mtcars, aes(factor(cyl), mpg)) +
 theme_dark() +
 theme(panel.grid = element_line(colour = "white")) +
 geom_boxplot() +
 transition_states(
 gear,
 transition_length = 2,
 state_length = 1
 ) +
 enter_fade() +
 exit_shrink() +
 ease_aes('sine-in-out')

anim_save("example.mp4",
 animate(
 p,
 nframes = 450,
 fps = 25,
 width = 1280,
 height = 720,
 type = "cairo",
 start_pause = 50,
 end_pause = 50,
 renderer = av_renderer()
 ))



Produces the video seen here : https://vimeo.com/505019987


With the standard ggplot2 theme : https://vimeo.com/505020822


This is another example of something I made using gganimate : https://www.youtube.com/watch?v=fHzjl_z_sSo


You can see that the video quality in the first few frames are very bad. In the video with the standard ggplot2 theme and the YouTube video, the gridlines and watermark text are not visible at the start but fade in much later. I don't know much about video codecs but I assume it has something to do with the ffmpeg library the
av
package/av_renderer()
is using. Has anyone experienced something like this ?