Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (97)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (6215)

  • ffmpeg - escaping special characters

    21 février 2023, par Riz

    I want to record screen using ffmpeg. Here is a simple command which I use and works fine

    


    ffmpeg -f dshow -i audio="Microphone Array (Full HD 1080P PC Camera Audio)" -f gdigrab -offset_x 0 -offset_y 0 -video_size 500x500 -framerate 30 -i desktop -pix_fmt yuv420p -vcodec libx264 -crf 28 -preset ultrafast -tune zerolatency  -movflags +faststart  "recording.mp4"


    


    But I have another USB mic (Microphone 1:2 (USB PnP Sound Device)), which has a colon ( :) in its name. When I use it for recording, it gives error

    


    [dshow @ 0000028f718db740] Malformed dshow input string.
audio=Microphone 1:2 (USB PnP Sound Device): I/O error


    


    I have tried to escape colon sign with & \ but still get same error. How to fix this ?

    


  • OpenCV no longer working after Homebrew install

    28 mars 2014, par Tom smith

    I have have been running OpenCV from QT creator on Mac OSX.
    I was having trouble getting VideoWriter to work so it was suggested I try installing ffmpeg with opencv.
    Using brew I executed this command

    brew install homebrew/science/opencv --with-ffmpeg

    However, during this process I received the following error

    Warning: Could not link opencv. Unlinking...
    Error: The `brew link` step did not complete successfully
    The formula built, but is not symlinked into /usr/local
    You can try again using `brew link opencv'

    The "possible conflicting files were mostly from "/usr/local/include/opencv2/"

    I tried the command brew suggested but this gave me a permission denied warning so I found a fix to execute before the command, both of which are below.

    sudo chown -R `whoami` /usr/local
    brew link --overwrite opencv

    This appeared to execute correctly giving me the following response

    Linking /usr/local/Cellar/opencv/2.4.8.2... 251 symlinks created

    The problem is this now seems to have broken my working project. When I try to run the project now I get the following errors
    Unfortunately after trying to rebuild the project I cannot get the error below to show up in the terminal again but it said the following error, was expected in /usr/local/include but not found in the build directory (afraid I cannot be sure of the exact wording)

    dyld: lazy symbol binding failed:

    In QT creator however, when trying to build the project it says

    error: symbol(s) not found for architecture x86_64
    error: linker command failed with exit code 1 (use -v to see invocation)

    Any suggestions for a fix, and also how I can get VideoWriter to work with opencv on Mac OSX after I have my project working again ?

  • Edit duration of video with ffmpeg/ffprobe

    16 octobre 2020, par ashish1512

    Currently in my application, I extract the duration of the video from the metadata.
The objective is that even if the video metadata has incorrect duration, I'll use ffmpeg to decode the video and calculate the correct duration.
I want to test this and want a video which has an incorrect duration in its metadata.
How can I edit the metadata of a regular video using ffmpeg or other ways to create one with an incorrect duration ?

    


    Or if any of you have such a video, could you pls share it with me ?