Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (65)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (6431)

  • moviepy problem with audio export : AttributeError : 'FFMPEG_AudioWriter' object has no attribute 'proc'

    3 novembre 2018, par Jaivin Wylde

    In this example, I need to create an audio export for speech recognition.

    clips = moviepy.editor.concatenate_videoclips(videoPart, method="compose")

    clips.audio.write_audiofile("Clips/", game.replace(" ", "_") +
                               "/audio_export.mp3", verbose=False, codec="libmp3lame")

    Then I get this error message.

    Traceback (most recent call last):
    File "/usr/local/lib/python3.5/dist-packages/moviepy/audio/io/ffmpeg_audiowriter.py", line 134, in __del__
    self.close()
    File "/usr/local/lib/python3.5/dist-packages/moviepy/audio/io/ffmpeg_audiowriter.py", line 122, in close
    if self.proc:
    AttributeError: 'FFMPEG_AudioWriter' object has no attribute 'proc'

    I would appreciate any help, thank you.

  • WebRTC H264 video live streaming (w FFMPEG) from OpenGL

    25 novembre 2022, par OBI

    I am trying to make a peer-to-peer game streaming platform. At this point I managed to capture the OpenGL frames and I have a functional Java websockets server, I can have 2 clients that establish a peer to peer connection (I have solved the STUN/TURN servers part) and transfer text at this point.

    



    I do not quite understand how I could stream a video made out of the Opengl frames with a low latency (<100ms). The problem mainly lies in the FFMPEG part, I want to use this to encode the frames, get the result (stdin/stdout redirect for ffmpeg ?), somehow link to the the JS API of the host (maybe a local websocket to which the JS of the hoster will connect to).

    &#xA;&#xA;

    I tried several FFMPEG arguements/commands with stdin and stdout pipes and they did not work.

    &#xA;&#xA;

    enter image description here

    &#xA;

  • FFMPEG : How to extract a PNG sequence from a video, remove duplicate frames in the process and keep the original frame number ?

    16 mai 2020, par Simon

    I have a recording of an old game which has variable framerate. Since I want to process individual frames to upscale and modernize the footage I would like to avoid any duplicate frames. I know that I can use this function to extract all frames from a video :

    &#xA;&#xA;

    ffmpeg -i input.mov -r 60/1 out%04d.png&#xA;

    &#xA;&#xA;

    And I know that I can remove duplicate frames using this function :

    &#xA;&#xA;

    ffmpeg -i input.mov -vf mpdecimate,setpts=N/FRAME_RATE/TB output.mov&#xA;

    &#xA;&#xA;

    However, the above command removes duplicate frames and puts frames next to each other whereas in order to keep a timecode of sorts it would be a lot more useful to be able to extract PNGs with frame number (video is progressive 60fps) but without all of the duplicates.

    &#xA;&#xA;

    So, the question is : what if I want to extract PNG files BUT maintain the original corresponding framenumber within the sequence ? So, if we have a video with 10 frames and frames 2-8 are duplicates it spits out 1.png 2.png 9.png and 10.png ? How do I combine both bits of code listed above ?

    &#xA;