Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (71)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque 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, par

    Accé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, par

    Dixit 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 (10621)

  • Convert *.OMG with FFMPEG

    26 janvier 2020, par Jimmy88

    I would like to convert my old Atrac Files that I recorded with my Sony MiniDisc (and copied to my PC with the Sony Software SonicStage.

    I tried with FFMPEG but it seems to fail.

    jim@my-mac ~/Downloads/asdf $ ffmpeg -i JAM.omg  -codec:a libmp3lame -qscale:a 0 Car myjam.mp3
    ffmpeg version 4.0.2 Copyright (c) 2000-2018 the FFmpeg developers
     built with Apple LLVM version 10.0.0 (clang-1000.10.43.1)
     configuration: --prefix=/usr/local/Cellar/ffmpeg/4.0.2 --enable-shared --enable-pthreads --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-gpl --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --enable-videotoolbox --disable-lzma
     libavutil      56. 14.100 / 56. 14.100
     libavcodec     58. 18.100 / 58. 18.100
     libavformat    58. 12.100 / 58. 12.100
     libavdevice    58.  3.100 / 58.  3.100
     libavfilter     7. 16.100 /  7. 16.100
     libavresample   4.  0.  0 /  4.  0.  0
     libswscale      5.  1.100 /  5.  1.100
     libswresample   3.  1.100 /  3.  1.100
     libpostproc    55.  1.100 / 55.  1.100
    [oma @ 0x7ff54c800e00] Format oma detected only with low score of 1, misdetection possible!
    [oma @ 0x7ff54c800e00] Couldn't find the EA3 header !
    JAM.omg: Invalid data found when processing input
    jim@my-mac ~/Downloads/asdf $

    There could be DRM on the file (which is a joke as I recorded myself with the MiniDisc and copied it over to the PC to archive it) but I heard the rumour that ffmpeg can crack the DRM.

    What could I do ?

  • Add graphical annotations to a video e.g random drawings using flutter

    17 décembre 2019, par Tahir

    I have developed a flutter app in which i am using FFmpeg library for video manipulation ,
    Actually i want to draw some random drawings in to a video and make it a part of the video.
    what i am already doing is that , i added some annotated images into a video by using ffmpeg library in flutter , but the problem with ffmpeg is that it is very time consuming ,it is taking almost 10sec for a 10sec video clip.

    ffmpeg command i am using is :

    ffmpeg.execute("-y -i input.mp4" " -i input.png -filter_complex \"[0:v][1:v] overlay=(W-w)/2:(H-h)/2'\" -pix_fmt yuv420p -c:a copy output.mp4")

    I want to do it as fast as whatsapp annotations...
    any idea how to do that ?

  • Rails 6 ActiveStorage re-encode videos

    14 novembre 2019, par gorgon

    Tried to use ActiveStorage::Previewer:VideoPreviewer to reencode original videos into smaller resolution and length, but it seems that it can only produce/extract image from video.

    Also tried to create a custom VideoPreviewer by using ffmpeg command to reencode videos, and rails seems to always favor the default ActiveStorage::Previewer::VideoPreviewer. Even if i kick out default video preview from rails previewer and put the custom one, rails still tried to use imagemagick and generates images

    class VideoPreviewer < ActiveStorage::Previewer
     ARGS = %w"ffmpeg args..."

     def self.accept?(blob)
       blob.content_type == 'video/mp4'
     end

     def preview
       download_blob_to_tempfile do |input|
         draw "ffmpeg", "-y", "-i", input.path, *ARGS do |output|
           yield io: output, filename: "#{blob.filename.base}.mp4", content_type: "video/mp4"
         end
       end
     end

     private

     def capture(*argv, to:)
       argv << to.path
       to.binmode
       IO.popen(argv) { |out| puts out.read }
       to.rewind
     end
    end

    Is there a way to achieve this with ActiveStorage or i need to go back using paperclip or some other gem ?