
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (93)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (8638)
-
Creating image overlay on video like tiktok on a video in flutter [closed]
12 octobre 2020, par Sarthak SinghalI am trying to create an app in flutter in which user can add image on a video like the given screenshot. The user should be able to move the image widget anywhere on the screen, resize it, and rotate it also. When this is done, the image should be merged on the video.


For now I have used Stack and MatrixGestureDetector to let the user move the images on the screen.


I want to know how to merge this image along with the exact scale, rotation and position as seen on the screen.


Also if I am going in wrong direction then please guide me the right way to do image overlay on a video in flutter like that of tiktok or snapchat.




-
Ruby Video Upload - Cocaine error when trying to transcode video
21 janvier 2015, par ScottagecheezeI am having a bit of trouble when it comes to transcoding a video being uploaded by Paperclip to S3. I have tried both
gem 'paperclip-ffmpeg'
andgem 'paperclip-av-transcoder
. Both fail when I try to add a new style ::styles => {
:medium => { :geometry => "640x480", :format => 'flv' }
},
:s3_credentials => {:bucket => ENV['S3_BUCKET_NAME'], :access_key_id => ENV['ACCESS_KEY_ID'], :secret_access_key => ENV['SECRET_ACCESS_KEY']},
:processors => [:ffmpeg],
:path => ":id/:style/:style_:basename.:extension"I am able to upload my video as is but I am not able to transcode them. Here is the error that it gives me, sorry for the link, I am not able to post images yet.
Essentially I want to be able to upload a video in any format and transcode it into a specific format. Any help is greatly appreciated.
Thanks
-
FFmpeg video to still images and back to video lossless
28 novembre 2012, par RigoniI'm trying to extract an image from an uncompressed AVI video using FFmpeg with the command :
ffmpeg -i sorce.avi -f image2 -pix_fmt bgr24 images/%1d.bmp
All is okay, but now I need to convert these images back to a video file.
I'm trying using this command :ffmpeg -f image2 -r 24 -i marked/%1d.bmp -y -vcodec ffv1 -pix_fmt bgr24 test.avi
But the output video is compressed and poor quality.
Is there any way to extract the images in RGB format and than back to a lossless video ?
I also tryed to use
-vcodec rawvideo
, but the quality still bad.