Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (69)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

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

  • Python get list of streams from video (audio/video)

    2 août 2019, par user972014

    I have a video file and I want to get the list of streams from it. I can see the needed result by for example executing a simple `ffprobe video.mp4 :

    ....
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661) ......
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), ......
    ....

    But I need to use python and code that will work both on Windows and Ubuntu, without executing an external process.

    My real goal is to check whether there is ANY audio stream within the video (a simple yes/no would suffice), but I think getting extra information can be helpful for my problem, so I’m asking about the entire streams

    EDIT : Clarifying that I need to avoid executing some external process, but looking for some python code/library to do it within the process.

  • Is there a way to concatenate mp4 video files in ffmpeg without video resolution switching ? [closed]

    15 mai 2024, par Micery999

    So i tried this command from windows

    


    (echo file 'first file.mp4' & echo file 'second file.mp4' )>list.txt
ffmpeg -safe 0 -f concat -i list.txt -c copy output.mp4


    


    while making a batch file

    


    Then i concatenate two video's and as soon as the one video ended. It changes resolution, then the video player started to glitch out pixel's like in vlc.

    


    Even if i typed

    


    ffmpeg -safe 0 -f concat -i list.txt -vf scale=640:360 -c copy output.mp4


    


    Nothing happened.

    


  • Extracting audio from video per video frame (C++) [on hold]

    5 septembre 2015, par PaulZyCZ

    Several days ago I had written an interface (in C) to simple DLL library which processes video in OpenCV using Qt5 framework. There is a function which takes frame ID and returns the raw picture data of the frame (so it can be played in Unity using C#). There is however no function to extract corresponding audio. So I am looking for a way to write such a function.

    I am thinking of a way to extract audio from video file (say MP4 with MPEG-4), with length of the corresponding video frame. But so far I have found only tutorials about extracting whole track (via FFMPEG) either to save or play the sound.

    Is there a way to extract only a "frame" (1/fps seconds of audio) ? Or would it be better to create indexes and extract whole track ?

    Thank you for answers.

    PS : Usual questions deal with whole track, not one frame-length sample specified by video frame ID. I have little knowledge of the FFMPEG and it has been several months since I used it last in uni project.

    I have frame, it’s ID, but no sound to it.