
Recherche avancée
Autres articles (81)
-
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (5958)
-
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.