Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (60)

  • 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 ;

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

Sur d’autres sites (9836)

  • lpc : remove "decay" argument

    18 juin 2013, par Loren Merritt
    lpc : remove "decay" argument
    

    We never used the rolling-average mode, and this makes av_update_lls 15% faster.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/lpc.c
    • [DBH] libavutil/lls.c
    • [DBH] libavutil/lls.h
  • Extremely slow rendering time using Moviepy

    15 janvier 2024, par pacorisas

    I'm trying to create the following : two stacked videos (one on top of each other) with subtitles (like those videos you see in tiktok) from an srt file. For this, I'm first taking the top and bottom video and creating a CompositeVideoClip :

    &#xA;

    clips_array([[video_clip], [random_bottom_clip]])&#xA;

    &#xA;

    Then, I'm taking this CompositeVideoClip and using a generator, creating the SubtitlesClip which then I will add to another CompositeVideoClip :

    &#xA;

    sub = SubtitlesClip(os.path.join(temp_directory, f"subtitles.srt"), generator)&#xA;final = CompositeVideoClip([myvideo, sub.set_position((&#x27;center&#x27;, &#x27;center&#x27;))]).set_duration("00:02:40")&#xA;

    &#xA;

    Lastly, I'm adding some more text-clips (just an small title for the video) and rendering :

    &#xA;

    video_with_text = CompositeVideoClip([final] &#x2B; text_clips)&#xA;video_with_text.write_videofile(part_path, fps=30,threads=12,codec="h264_nvenc")&#xA;

    &#xA;

    Here is the problem. I tried to render a video of 180 seconds (3 minutes) and the video takes up to hour and a half (80 minutes) which is wild. I tried some render settings as you can see like changing 'codec' and using all the 'threads' of my CPU.&#xA;I tried to not use so many CompositeVideoClips, I read that when you concatenate those the final render will suffer a lot, but I didn't manage to find a way "not to use" that many CompositeVideoClips, any idea ?

    &#xA;

    My PC is not that bad. 16GB, AMD Ryzen 5 5600 6-Core , NVIDIA 1650 SUPER.

    &#xA;

    My goal is to at least bring the render to less than an hour. Right now is like 1.23s/it

    &#xA;

  • avformat/subtitles : support standalone CR (MacOS).

    8 septembre 2013, par Clément Bœsch
    avformat/subtitles : support standalone CR (MacOS).
    

    Recent .srt files with CR only were found in the wild.

    • [DH] libavformat/subtitles.c
    • [DH] libavformat/subtitles.h