Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (111)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (10231)

  • How to use subtitles filter to a video VFR ( variable frame rate ) video ? [migrated]

    14 février 2019, par iaaflaafc

    I have created a VFR (variable frame rate) video from a list of images by using the following ffmpeg command.

    ffmpeg -f concat -i concat.txt -vsync vfr -pix_fmt yuv420p output.mp4

    where the concat.txt is a text file which contains the list of the image locations and durations in the below format.

    file image01.png
    duration 3
    file image02.png
    duration 5
    file image02.png

    I have a subtitle file (.srt file) that I would like to add to the generated video by using the subtitles filter.

    I tried to use the subtitles filter by running the following command

    ffmpeg -i output.mp4 -codec:a copy -vf subtitles=subtitles.srt -max_muxing_queue_size 4096 outputWithSubtitles.mp4

    I find that the resultant output file does not show any subtitles.

    I find that if instead of VFR video if constant frame rate video is generated, then this issue is not observed i.e., during the generation of the first video from images if -vsync vfr option is not used, then a constant frame rate video is generated and using subtitles filter works.

    Is there a way to use the subtitles filter on a VFR video ?

  • Creating image overlay on video like tiktok on a video in flutter [closed]

    12 octobre 2020, par Sarthak Singhal

    I 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.

    


    As you can see, we can move image and draw text in canvas over a video. After doing all this, how to get exact positions about where to merge the images

    


  • Ruby Video Upload - Cocaine error when trying to transcode video

    21 janvier 2015, par Scottagecheeze

    I 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' and gem '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