Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (91)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (4228)

  • Multiple running with executable built with pyinstaller

    2 avril 2020, par seokrae.kim

    I build my main.py to exe by pyinstaller like this.

    



    pyinstaller main.py --add-binary C:\sources\untitled\venv\Lib\site-packages\cv2\opencv_videoio_ffmpeg420_64.dll;.


    



    It is simple RTSP receiver program so it need opencv_ffmpeg binary to run.
Running command like this

    



    main.exe -address rtsp://127.0.0.1/profile1/media.smp


    



    It works I expected.
But when the process running in multiple, (I mean more than 2 same process running)
all process not responding and shutting down.

    



    I try clone whole result (dist folder content) to another folder
and run process another path but result is same. like this.

    



    D:\main1\main.exe -address rtsp://127.0.0.1/profile1/media.smp
D:\main2\main.exe -address rtsp://127.0.0.2/profile1/media.smp


    


  • What containers support pcm_s16le audio for ffmpeg ?

    24 mars 2020, par ENunn

    I’m trying to get this file working in Vegas, it’s a 4:2:2 mov file that I rendered with avisynth+/ffmpeg. I don’t want the audio sounding like crap so my audio codec is set to pcm_s16le.

    I sometimes edit these in Vegas Pro, however I’m trying to import them and I’m having so many problems. MOV has a green video, AVI is datamoshed garbage, MKV you can’t even edit in Vegas Pro (even with the MKV reader enabled). I know a "fix" for the green video, and that’s converting to 4:2:0, but I cannot stand the trailing of reds when I do it directly in Avisynth or ffmpeg. I know my final output is going to be 4:2:0 regardless but rendering it in Vegas doesn’t have those trailing reds.

    What other containers support pcm_s16le ? I’m trying to convert to as many containers as I can in ffmpeg and dial down what works best for me.

  • A third-party library (FFMpeg) is spamming output

    14 janvier 2015, par Maciej Stachowski

    I’m using otherwise brilliant AForge library in my console project to encode video. When I run the project from under Visual Studio (both in Debug and Release modes), it works fine. However, running it as a stand-alone application produces the following :

    errors

    (the prompt being in the third line is an artifact of me using Console.SetCursorPosition extensively).

    As far as I can tell, there’s no way to configure ffmpeg from under AForge to avoid this error, and the resulting video files are fine anyway, so I’d like to simply shut it up.

    It seems, however, that even setting

    Console.SetError(StreamWriter.Null);
    Console.SetOut(StreamWriter.Null);

    does nothing - my app is trying to write something in the first two lines (another oddity), but gets spammed out by ffmpeg output.

    Can I do anything about it ?