Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (17)

  • Les images

    15 mai 2013
  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (4025)

  • Revision 1395b56a1d : Add assembly tests for int projections. BUG=https://code.google.com/p/webm/issu

    19 juin 2015, par Frank Galligan

    Changed Paths :
     Modify /test/vp9_avg_test.cc



    Add assembly tests for int projections.

    BUG=https://code.google.com/p/webm/issues/detail?id=1022

    Change-Id : I5ae4acac39fd75c56d3feff0716cb52133de3b22

  • Output a video file from ffmpeg directly to google cloud storage

    24 juin 2021, par Anup Sedhain

    Background on the problem

    


    We are trying to compress a video using FFmpeg in our server that is hosted in the Google App Engine (GAE). The input file is in Google Cloud Storage (GCS) which can be easily passed as an input to FFmpeg and the processing is done, however, I wanted to output the file directly to GCS. I have referred to the documentation here https://ffmpeg.org/ffmpeg-protocols.html#http that they provided and used the correct headers and method to upload the file using a signed URL, but it doesn't seem to work. As of now, I am not even sure whether this is possible.

    


    Current Implementation

    


    Currently, we are first saving the output file in the GAE workspace and then uploading the file to the bucket. This flow worked fine until we faced another problem. Whenever the file is too big, the processing takes more than 10 mins which seems to be the threshold for Automatically Scaled Instances in the Flexible environment. To get around this problem we could use basic_scaling in a Standard environment but there we cannot seem to write files in the GAE workspace. I could choose to write in the /tmp directory but that uses RAM and we can have many files being uploaded at a time, so it's not an option.

    


    Possible Future

    


    Right now one solution I have seen is to use a Flexible environment with manual scaling, but this is a bad idea when it comes to scaling and cost-effectiveness. Another, which I am not so sure about would be to use Google Compute Engine but I am yet to try this.

    


    Conclusion

    


    The problem that arose from not being able to make a PUT request to Google Cloud Storage from FFmpeg led me to go through tens of problems surrounding GAE and its weird combination of instances and feature set.

    


    Would really appreciate suggestions or possible solutions if I am missing anything. If only we could make the FFmpeg output the file to GCS.

    


  • How to pipe live stream output of ffmpeg to google drive using rclone

    24 février 2021, par CARE HF

    I want to send live captured output of ffmpeg to google drive (not by storing in local and then move using rclone)

    


    ffmpeg -i "$url" -t 00:00:20 -map 0 -c copy "1.mp4" | rclone cat rclone:/rclone/1.mp4


    


    I tried above but fails.