Recherche avancée

Médias (91)

Autres articles (109)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9889)

  • avcodec/dvbsubdec : Clear w/h/size on region buffer allocation failure

    14 mai 2015, par Michael Niedermayer
    avcodec/dvbsubdec : Clear w/h/size on region buffer allocation failure
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dvbsubdec.c
  • lavc/dvbsub : Do not fail hard in the region block for 256-colour encoding.

    24 octobre 2017, par JULIAN GARDNER
    lavc/dvbsub : Do not fail hard in the region block for 256-colour encoding.
    

    Adds a hunk forgotten in 8a6799d2

    • [DH] libavcodec/dvbsub.c
  • run command that gets error thought python

    3 octobre 2020, par kali_xyyali

    Wassup.&#xA;
    &#xA;I have shell command.

    &#xA;

    ffmpeg -list_devices true -f dshow -i dummy -hide_banner&#xA;

    &#xA;

    When i run that command i get output data(see text bellow)

    &#xA;

    [dshow @ 00000281450fbdc0] DirectShow video devices (some may be both video and audio devices)&#xA;[dshow @ 00000281450fbdc0]  "HD WebCam"&#xA;[dshow @ 00000281450fbdc0]     Alternative name "@device_pnp_\\?\usb#vid_0408&amp;pid_a060&amp;mi_00#6&amp;391c16c1&amp;0&amp;0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\global"&#xA;[dshow @ 00000281450fbdc0] DirectShow audio devices&#xA;&#xA;[dshow @ 00000281450fbdc0]  "Microphone (Realtek High Definition Audio)"&#xA;[dshow @ 00000281450fbdc0]     Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{4727F33A-DE04-4706-8312-03696FACC791}"&#xA;[dshow @ 00000281450fbdc0]  "Stereo mix (Realtek High Definition Audio)"&#xA;[dshow @ 00000281450fbdc0]     Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{534A8FBC-6C02-4384-B51C-D0363BB7F8FD}"&#xA;[dshow @ 00000281450fbdc0]  "Microphone (Avsoft Virtual Audio Device)"&#xA;[dshow @ 00000281450fbdc0]     Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{5CE20B48-361E-4B96-B113-B3E02BA448EC}"&#xA;dummy: Immediate exit requested&#xA;

    &#xA;

    I have to get list of all audio devices.&#xA;And i don't want to parse that string, i will be hard.&#xA;How can i get list of all audio devices using ffmpeg-python module ?&#xA;Thank u.

    &#xA;

    UPD :&#xA;i have decided to parse that string. But when i type :

    &#xA;

    command = subprocess.check_output(&#x27;ffmpeg -list_devices true -f dshow -i dummy -hide_banner&#x27;, shell=True)&#xA;

    &#xA;

    i get this error :

    &#xA;

    subprocess.CalledProcessError: Command &#x27;ffmpeg -list_devices true -f dshow -i dummy -hide_banner&#x27; returned non-zero exit status 1.&#xA;

    &#xA;

    How can i call that command and put its result into my variable "command" ?

    &#xA;