Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (111)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (11633)

  • Anomalie #4674 (En cours) : SPIP 3.1.5 : déclaration de tableau trop moderne

    27 février 2021, par b b

    Ha oui, on annonce PHP 5.1 mini pour la 3.1, tu payes ta PR ?

  • Anomalie #1964 : Le compilateur mange les ancres #Map

    26 mai 2013, par cedric -

    ah la limite de 3 caractères mini a du disparaitre un jour car je n’en ai pas trouvé trace

  • Apply multiple text filters at once and burn into video for captioning without re-encoding, and fix error [ffmpeg-python wrapper]

    13 mai, par Baldi

    Is there any way to burn text into a video without re-encoding ? I ask this because the re-encoding process goes at around 0.1x speed on my device when writing to WEBM. Alternatively, if there is a faster way to render high quality video quickly while still re-encoding that would be great. I vaguely remember someone writing to a temporary file to solve this problem.

    


    Also small error in program, code attatched

    


    def processVideo(self):
    print("creating video")

    # File location management
    font_path = self.input_path / "CalSans-Regular.ttf"
    background_path = self.input_path / "new_video_background.webm"
    audio_path = self.sound_output_path
    video_ouput_path = self.parent_path / "new_result.webm"
    sound_input = ffmpeg.input(str(audio_path))
    video_input = ffmpeg.input(str(background_path))

    # Adding captions
    print(self.text_caption)
    previous_timepoint = 0
    for caption, timepoint in zip(self.text_caption, self.timepoints, strict=False): 
        # Text caption and timepooints are lists where the end of the words in text_caption correspond
        # to the timepoint with the same index in timepoint
        video_input = video_input.drawtext(
                                            text=caption, 
                                            fontfile = font_path, 
                                            x='w-text_w/2', 
                                            y='h-text_h/2', 
                                            escape_text=True, 
                                            fontsize= 32,
                                            bordercolor = "black",
                                            borderw = 4,
                                            enable=f'between(t,{previous_timepoint},{timepoint["timeSeconds"]})'
                                            )
        previous_timepoint = timepoint["timeSeconds"]
        
    # Combining sound and video and writing output
    command = ffmpeg.output(sound_input, video_input, str(video_ouput_path), codec='copy').overwrite_output().global_args('-shortest')
    print("args =", command)
    print(command.get_args())
    command.run()
    print("done!")


    


      File "c:\Desktop\Projects\video_project\main.py", line 239, in <module>&#xA;    post_list[0].processVideo()&#xA;    ~~~~~~~~~~~~~~~~~~~~~~~~~^^&#xA;  File "c:\Desktop\Projects\video_project\main.py", line 223, in processVideo&#xA;    command.run()&#xA;    ~~~~~~~~~~~^^&#xA;  File "C:\Desktop\Projects\video_project\.venv\Lib\site-packages\ffmpeg\_run.py", line 313, in run&#xA;    process = run_async(&#xA;        stream_spec,&#xA;    ...&lt;5 lines>...&#xA;        overwrite_output=overwrite_output,&#xA;    )&#xA;  File "C:\Desktop\Projects\video_project\.venv\Lib\site-packages\ffmpeg\_run.py", line 284, in run_async&#xA;    return subprocess.Popen(&#xA;           ~~~~~~~~~~~~~~~~^&#xA;        args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream&#xA;        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&#xA;    )&#xA;    ^&#xA;  File "C:\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1038, in __init__&#xA;    self._execute_child(args, executable, preexec_fn, close_fds,&#xA;    ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&#xA;                        pass_fds, cwd, env,&#xA;                        ^^^^^^^^^^^^^^^^^^^&#xA;    ...&lt;5 lines>...&#xA;                        gid, gids, uid, umask,&#xA;                        ^^^^^^^^^^^^^^^^^^^^^^&#xA;                        start_new_session, process_group)&#xA;                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&#xA;  File "C:\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1550, in _execute_child&#xA;    hp, ht, pid, tid = _winapi.CreateProcess(executable, args,&#xA;                       ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^&#xA;                             # no special security&#xA;                             ^^^^^^^^^^^^^^^^^^^^^&#xA;    ...&lt;4 lines>...&#xA;                             cwd,&#xA;                             ^^^^&#xA;                             startupinfo)&#xA;                             ^^^^^^^^^^^^&#xA;FileNotFoundError: [WinError 206] The filename or extension is too long&#xA;</module>

    &#xA;