Recherche avancée

Médias (91)

Autres articles (77)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5384)

  • Convert video to hequirect while setting the background black and blur the transitional area [closed]

    11 février 2024, par Zurechtweiser

    I am using

    


    ffmpeg -i input.mp4 -vf "v360=input=fisheye:ih_fov=122.6:iv_fov=94.4:output=hequirect:h_fov=180:v_fov=180:in_stereo=2d:out_stereo=sbs,format=yuv420p" -b:v 25M -maxrate 60M -bufsize 25M output.mp4


    


    Which works as advertised to convert a fisheye to hequirect except for two problems :

    


      

    1. The background is not black but seems to try and set it to the average color of the video. It should be black throughout.

      


    2. 


    3. The corners are not blurred but should be, there should be a soft transition from the corner of the video into black.

      


    4. 


    


  • FFMPEG Replacing black color fragments with alpha channel transperency

    31 décembre 2017, par kostya572

    I have "file.mov" video. It has a lot of blank black color fragments that have different durations.

    I need to replace black color fragments that durates more than 5 seconds with transparency ? Is that possible to add some alpha channel for that purpose ?

  • how to run a system command in xcode in background

    2 janvier 2017, par andrei

    I need to run an ffmpeg command with this paramater : -i ’url_of_input_here’. so using NSTask with parameter array as such does not work :

    NSString * ffm_address = [NSString stringWithFormat:@"'udp://%d.%d.%d.%d:%d?fifo_size=1000000000&overrun_nonfatal=1'",addr_1,addr_2,addr_3,addr_4,portFFM];
    [task setArguments:
    [NSArray arrayWithObjects:@"-f", @"mpegts", @"-i", ffm_address, @"-re",@"-y",@"-strict",@"experimental",@"-vcodec", @"copy", @"-f", @"mp4", @"video.mp4", nil]];

    since the quotes are being processed in such a way that ffmpeg thinks that the udp ://.... address is a file

    XCode has system() function that lets me execute system commands, but when i run the ffmpeg command it stalls the process (since ffmpeg is processing a stream) :

    char ffm_cmd[512];
    sprintf(ffm_cmd,"ffmpeg -f mpegts -i 'udp://%d.%d.%d.%d:%d?fifo_size=1000000&overrun_nonfatal=1' -re -y -strict experimental -vcodec copy -f mp4 video.mp4",addr_1,addr_2,addr_3,addr_4,portFFM);
       system(ffm_cmd);

    how can i run the system() command in the background so it doesn’t stall the rest of the app ? I would rather not use a separate thread, but start the ffmpeg and move on with the process.