Recherche avancée

Médias (0)

Mot : - Tags -/api

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (20)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5695)

  • How to correctly detect window with xdotool in bash script

    24 mai 2020, par wasd

    I'm trying to record screen and also input from my webcam. To show image from a webcam I use ffplay. However I want it to be placed in a specific location of my screen. To do so I use xdotool and following bash script :

    



     #!/bin/bash                                                                                                                                                                                                                                   
 ffplay -i /dev/video0 &                                                                                                                                                                                       
 res=$!                                                                                                                  
 echo $res                                                                                                               
 window_pid=$(xdotool search --pid $res)                                                                                       
 echo $window_pid
 xdotool windowmove $window_pid 1200 200                                                                                                       
 wait


    



    For some reason I get correct process id res but nothing for the window_pid. If I run similar commands in terminal it works correctly (I run ffplay in one terminal instance and the rest of commands in another). What am I missing here ?

    


  • Use ffprobe on Sagemaker Jupyter Notebook : /bin/sh : 1 : ffprobe : not found

    2 juillet 2020, par Guu

    I need to use FFprobe to get the metadata(the orientation of the video) of videos on SageMaker Studio. Even I installed FFmpeg and FFprobe via pip install, the notebook doesn't recognize the packages.

    


    /bin/sh: 1: ffprobe: not found

    


    It is tricky since I've already tried to install them on System terminal and it worked, but it still doesn't work on the Image terminal or Jupyter Notebook.

    


    Is that because of the dependencies ? I've checked other ways to get the metadata but couldn't find one working. I could get simple metadata via hachoir-metadata but it didn't give the orientation. Any advice is welcomed. Thanks.

    


  • Redirecting ffmpeg result into another file

    9 mai 2019, par Enkri_

    I’m trying to get the size of an input video using ffmpeg, below is the code that I use, what I’m trying to do is to first store the result into a txt file and then do some parsing to get the size of the video :

    $ ffmpeg -i TheNorth.mp4

    The terminal says "At least one output file must be specified"
    Then I tried this :

    $ ffmpeg -i TheNorth.mp4 result.txt

    The terminal says "Unable to find a suitable output format for ’size.txt’"

    So how could I get the result and save it to the specified file ?