Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (89)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (12515)

  • ffmpeg : Audio input device not recognized

    8 février 2020, par shrimpwidget

    What is needed for my ffmpeg command to recognize my audio input device ?

    The following reference has not helped resolve my problem : enter link description here

    I want to record me talking (to my Windows laptop) while my screen activity is captured. While I have succeeded in capturing what’s on the screen (by removing all mention of audio from my command), I have been unable to capture audio, as the device I mention is not recognized by ffmpeg. (I routinely use the default laptop for audio input to Audacity...surely there’s some way to use it in this ffmpeg command, too.)

    My audio devices :

    ffmpeg -list_devices true -f dshow -i dummy

       [dshow @ 000000000044a940] DirectShow audio devices
       [dshow @ 000000000044a940]  "Microphone Array (IDT High Defi"
       [dshow @ 000000000044a940]     Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Microphone Array (IDT High Defi"
       [dshow @ 000000000044a940]  "Dock Mic (IDT High Definition A"
       [dshow @ 000000000044a940]     Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Dock Mic (IDT High Definition A"
       [dshow @ 000000000044a940]  "Jack Mic (IDT High Definition A"
       [dshow @ 000000000044a940]     Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Jack Mic (IDT High Definition A"
       [dshow @ 000000000044a940]  "Rec. Playback (IDT High Definit"
       [dshow @ 000000000044a940]     Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Rec. Playback (IDT High Definit"

    The full name is found via regedit : Microphone Array (IDT High Definition Audio CODEC)

    Why isn’t the audio input device found ?

    ffmpeg -y -f gdigrab -i desktop -framerate 10 -f dshow -i audio="Microphone Array (IDT High Definition Audio CODEC)" -vcodec libx264 "C:\jed\ffmpeg\_mydata\clip.mp4"

       [gdigrab @ 0000000000498540] Capturing whole desktop as 1366x768x32 at (0,0)
       [gdigrab @ 0000000000498540] Stream #0: not enough frames to estimate rate; consider increasing probesize
       Input #0, gdigrab, from 'desktop':
         Duration: N/A, start: 1575576239.093815, bitrate: 1006131 kb/s
           Stream #0:0: Video: bmp, bgra, 1366x768, 1006131 kb/s, 29.97 fps, 1000k tbr, 1000k tbn, 1000k tbc
       [dshow @ 000000000049a5e0] Could not find audio only device with name [Microphone Array (IDT High Definition Audio CODEC)] among source devices of type audio.
       [dshow @ 000000000049a5e0] Searching for audio device within video devices for Microphone Array (IDT High Definition Audio CODEC)
       [dshow @ 000000000049a5e0] Could not find audio only device with name [Microphone Array (IDT High Definition Audio CODEC)] among source devices of type video.
       audio=Microphone Array (IDT High Definition Audio CODEC): I/O error
  • Is H.264 used with CRF 0 really strictly lossless ?

    23 décembre 2017, par Mephisto

    I am surprised by how small files are when encoded in ffmpeg with the libx264 codec in Constant Rate Factor mode equals zero (-crf 0) that, according to the documentation, is "lossless".

    I would like to make sure what the word "lossless" here means. I would like to know if it follows my personal definition of lossless video : After encoding a video, you can confidently bet the life of your mother that, once you play it, the numerical values in the pixels of the restored video will be identically equal (within maybe a factor 0.00001 due to the floating point arithmetic) to the original.

    Does the H.264 lossless encoding follow my definition, or do they call it "lossless" because it is visually very close, very beautiful, whatever... ?

  • Text recognition from each frame of long Video Stream [closed]

    19 mars 2020, par Shashikant Sharma

    I am a naive android app developer who comes from reactJS background and it’s my First project in android. I have a requirement to develop an android app that needs to capture all of time intervals at which a particular text appears in the video stream. Actually I am not able to find the approach in order to proceed for the app development. I know it sounds stupid to post such a question on such portal but I am not asking for any source code or link to GitHub repo.
    (NOTE : Video stream would be 30min+ log and Text that needs to be recognized would appear at a fixed position in the video).