Recherche avancée

Médias (91)

Autres articles (71)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (11087)

  • How to stream only a part of a video without downloading the whole thing ?

    11 mai 2024, par Abbas

    I am building a YouTube video trimmer, and currently, it takes the YouTube video ID, downloads the whole video from the server (Even it is like 10 hours long), and then it trims it according to user's inputted timeframe using ffmpeg.

    


    Now the problem with this is that it takes so much time to download the whole video even if we want a small piece of it hence it is highly impractical.

    


    I was thinking to implement something like an HTML5 video player does when you seek the video forward. It just jumps to the part where you seek-ed to without downloading the part you skipped over. How can I only download a part of a video file from a server in form of a buffer and then generate an already trimmed video file from that ? I don't know if that is even possible on the server-side, but video players do it on the client-side.

    


  • How to exclude night images to be passed for ffmpeg ?

    4 novembre 2019, par LA_

    My files have the following filenames -

    YYYYMMDDHHmmSS.jpg

    I pass them to ffmpeg (on MacOS) for timelapse creation :

    ffmpeg -framerate 500 -pattern_type glob -i '*.jpg' -c:v libx264 -pix_fmt yuv420p out.mp4

    Now I would like to exclude night photos, for ex., if filename is between YYYYMMDD200000.jpg and YYYYMMDD080000.jpg, then files shouldn’t be passed to ffmpeg.

    How could I achieve that (ideally - without moving files) ?

    Upd. Using the following command now, but it captures the following hours only : 10-19.

    ffmpeg -framerate 500 -pattern_type glob -i '2019[01][089][012][0123456789]1*.jpg' -c:v libx264 -pix_fmt yuv420p out3.mp4
  • Best options for producing 2160p videos with ffmpeg

    15 janvier 2016, par Cotta1000

    I’ve been using ffmpeg to convert a stream of CGI frames into a video for uploading to Youtube, but the quality is always very poor even when the raw frames are 4096x2048 or 8192x4096. The Youtube setting always defaults to 360p. I’ve spent hours Googling for help with this, but the best I could find was a way to get a list of available -pix_fmt options.
    I’ve tried command line options such as the following two examples, both of which produce the same poor results in spite of the differences in parameters :

    ffmpeg -framerate 30 -i "C :\test360\Test 360_%%06d.bmp" -an -c:v libx264 -r 30 -pix_fmt yuv420p -preset veryfast -crf 18 test.mp4

    ffmpeg -framerate 30 -i "C :\test360\Test 360_%%06d.bmp" -an -c:v libx264 -r 30 -pix_fmt gbrap16le -preset slow -crf 18 test.mp4