Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (34)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6961)

  • Use ffmpeg in Unity [closed]

    26 avril 2020, par DenVebber

    I need to use FFmpeg library for develop Unity Android application. Are there any specific solutions for this ?
I know how to connect FFmpeg libraries to Java in Android Studio, but is it the best to use in Unity ?

    


  • How to capture a timed screen recording on a Mac with ffmpeg

    28 septembre 2016, par wetjosh

    I’m on a Mac with MacOS Sierra installed. I’ve installed ffmpeg with homebrew. I list my devices via :

    ffmpeg -f avfoundation -list_devices true -i ""

    which returns :

    [AVFoundation input device @ 0x7fc2de40e840] AVFoundation video devices:
    [AVFoundation input device @ 0x7fc2de40e840] [0] FaceTime HD Camera
    [AVFoundation input device @ 0x7fc2de40e840] [1] Capture screen 0
    [AVFoundation input device @ 0x7fc2de40e840] AVFoundation audio devices:
    [AVFoundation input device @ 0x7fc2de40e840] [0] Built-in Microphone

    I don’t need audio so I start my 5 second screen recording via :

    ffmpeg -f avfoundation -t '5' -i '1' test.mov

    It creates an mov file in the working directory but doesn’t stop after 5 seconds. In fact, I can’t even stop the recording as it suggests by pressing ’q’. Ctl-C doesn’t work either, and I am left with force quitting via Activity Monitor. I’ve tried this same command but using device 0 (FaceTime camera) and it stops after 5 seconds.

    If someone can solve that riddle, my next question is how can I watch the newly created file in quicktime (I’m thinking I’ll need to encode or decode or something) because even the FaceTime video file would not open in QuickTime. It just says "The document could not be opened". It does, however, open with VLC.

    UPDATE : I’ve tried this on an older OS (Yosemite) and got the same results (thought it might be the new OS that broke it).

  • Same command but different result, odd behavior between cmd and python subprocess

    22 juin 2020, par Josh Katz

    Hello and thanks everyone, I am having a very strange phenomenon and I hope you can help me solve it, I run a command through the cmd to save video coming from a camera to a local file in my computer,the command is :

    


    ffmpeg -rtsp_transport tcp -i "rtsp ://root:senswim2018@10.0.0.101/axis-media/media.amp" -c copy foo.mp4

    


    when I run the command through the cmd it works fine (recorded a video longer than 12 hours), but when I run it as a command "Using the subprocess in Python, it only records around 5:30 minutes

    


    cmd = ["ffmpeg","-rtsp_transport","tcp", "-i", "rtsp ://root:senswim2018@10.0.0.101/axis-media/media.amp" ,"-c", "copy","foo.mp4"]

    


    process = subprocess.Popen(cmd , stdout=subprocess.PIPE, stderr=subprocess.STDOUT)

    


    time.sleep(600000)

    


    process.terminate()

    


    This matter is very confusing and unclear to me, I would be very happy if you could give some insight thanks.