Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (78)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • no audio after mp3 + jpg with ffmpeg

    31 octobre 2019, par YongJiang Zhang

    I have a mp3 file. I checked. It has audio. After run command

    ffmpeg -i 31.mp3 -i cover.jpg -c:a copy -s 1280x720 -pix_fmt yuv420p 31.mp4

    I got 31.mp4 but it has no audio.

    I use macbook pro and ffmpeg version 4.1

  • Transcode H264 to AV1

    17 février 2024, par Crear

    We have some roadside cameras deployed and due to the supply chain issue (also the cost) we installed 1080P@H264 encoder.

    


    I know that AV1 is significantly more efficient than H264, but transcoding H264 to AV1 may result in quality loss.

    


    My purpose is to reduce some space while minimizing the quality loss, is there a python or FFmpeg command that can do it ? My major concern is quality loss, but if I use the same bitrate, it won’t reduce the size.

    


    We have years of data so we can’t really look into the videos one by one to determine the optimal bitrate, sometimes when the weather is extreme, the higher dynamic in the frames results in a bigger H264 file size. I don’t want to lose those details because it can help fine-tone the detection models.

    


  • How do I stop FFMPEG-Python from continuing to run in the background after execution ? [closed]

    3 juin 2023, par Alvar Gómez

    I'm using the ffmpeg wrapper for python 'Ffmpeg-python'.

    


    I'm doing a basic program that concatenate different short videos.

    


    I process each video separately to later concatenate them all together. I do it to make sure all the videos have the same resolution and frame rate.

    


    I'm using a basic tkinter interface to modify some parameters.

    


    My problem is that, for any reason, after executing the different ffmpeg commands, some of them keep running in the background(doing nothing, not even using CPU) so I can't open some of the videos in case i want to check something. In the moment i close the python script, those processes dissapear.

    


    This is my first post here, so i don't really know if this is the way I should do the posts. Thanks in advance.

    


    End those ffmpeg processes that keep running in the background without having to close the python script.