Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (24)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (4288)

  • Remove flicker, crop and upscale in ffmpeg

    22 août 2024, par Sabha

    I spent one full day on ffmpeg line commands by searching a lot on google but could not achieve what I wanted to and therefore I came here to seek some advice.
I have a video testinput.mpg which I believe is a mpeg-2 video. It is of 720x576 dimensions having 25 fps and a total bitrate of 4224 kbps

    


    First problem is that the exported footage is flickering which I wasn't able to remove using ffmpeg with lots of commands I tried like adjusting brightness, contrast, hue, saturation and all.

    


    Second problem was to extract the center portion which I was able to do it with the crop feature using following command.

    


    ffmpeg -i testinput.mpg -filter:v "crop=468:374" testoutput.mpg


    


    But after cropping I observed that that bitrate fell from 4224 kbps to 761 kbps and I assume this has reduced the quality of video.

    


    What I want to achieve is :

    


      

    1. Crop the video properly keeping the same quality (acodec copy vcodec copy) -> ffmpeg did not allow me to do both the things together (cropping and having same codec)
    2. 


    3. Remove the flicker from video and upscale it to 4K or HD quality so that it looks nice on big televison (preferably 4K)
    4. 


    


    I request some help on how to achieve the desired result. Can someone shed some light on it ?

    


    Here are 10 seconds sample videos on google drive that I am working on

    


    testinput.mpg

    


    testoutput.mpg

    


    Thanks

    


  • Video encryption cannot be played, no key file is found [closed]

    15 août 2021, par rin ye

    This is a video clip downloaded from a software, but I don't know what encryption method is used for this video. Does anyone know what encryption method is used ?https://drive.google.com/file/d/15ZypIca-ljzF-Oh_9jBMXPFUuXbOr16P/view?usp=sharing

    


  • How to get CMSampleBufferRef from AudioQueueBufferRef

    26 novembre 2015, par arturdev

    I am using a private library which was made for live broadcasting from iPhone.
    In every time of recording each frame it call a delegate function

    void MyAQInputCallback(void *inUserData, 
                                  AudioQueueRef inQueue,
                                  AudioQueueBufferRef inBuffer,
                                  const AudioTimeStamp *inStartTime,
                                  UInt32 inNumPackets,
                                  const AudioStreamPacketDescription *inPacketDesc) ;

    Now how I can append this inBuffer to my AVAssetWriterInput as usual :

    [self.audioWriterInput appendSampleBuffer:sampleBuffer];

    I think maybe convert AudioQueueBufferRef to CMSampleBufferRef somehow ?

    Thank you.