Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (37)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9477)

  • Anomalie #3863 : liste de tous les plugins dans les résultats de recherche du back-office

    25 novembre 2016, par b b

    gogogo :)

  • Configuration of video device failed, falling back to default

    4 février 2021, par hgwd

    I'm writing a program to open my mac osx's facetime hd camera and get h264 data with ffmpeg, but i encounter encounter a hard problem at the first step.

    


    AVFormatContext *Producer::OpenCamera()
{
    AVFormatContext *pContext = avformat_alloc_context();
    AVInputFormat *infmt = av_find_input_format("avfoundation");
    if (infmt != nullptr)
    {
        AVDictionary *paramDict = nullptr;
        av_dict_set(&paramDict, "video_device_index", "1", 0);
        av_dict_set(&paramDict, "video_size", "1280x720", 0);
        av_dict_set(&paramDict, "framerate", "30", 0);
        av_dict_set(&paramDict, "pixel_format", "yuyv422", 0);

        int ret = avformat_open_input(&pContext, "0", infmt, &paramDict);
        if (ret != 0)
        {
            std::cout << "cannot open input" << std::endl;
            avformat_free_context(pContext);
            return nullptr;
        }
    }

    return pContext;
}


    


    When I call the function, I get the result below :

    


    '' opened
Configuration of video device failed, falling back to default.


    


    Addtionally, when I set av_dict_set(&paramDict, "video_device_index", "0", 0) ; I'll get sig abort, which makes me confused. Can anyone help me ?

    


  • ffmpeg scale down video dynamically (squeeze-back) or zoompan out to smaller than original

    27 avril, par Sam

    I have 2 videos, I'm trying to overlay one on top of the other, and have it shrink down in an animated fashion until it appears like a picture-in-picture setup. Then, after a few seconds it should scale back up.

    


    This is what I am trying to achieve (these would be videos, not images) :
enter image description here

    


    This is the closest I've been able to get, but, crucially, zoompanning "out" (as opposed to "in") does not appear to work ; so, of course, this does not work :

    


    ffmpeg -i bg.mov -i top.mov -filter_complex "[0:v]zoompan=z='pzoom-0.1':d=1, setpts=PTS-STARTPTS[top]; [1:v]setpts=PTS-STARTPTS+2/TB, scale=1920x1080, format=yuva420p,colorchannelmixer=aa=1.0[bottom]; [top][bottom]overlay=shortest=0" -vcodec libx264 out.mp4

    


    Is this achievable with ffmpeg ?