Recherche avancée

Médias (91)

Autres articles (32)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (7090)

  • ffmpeg not splitting into EXACT same length chunks

    4 octobre 2018, par jupiar

    I am trying to use ffmpeg to split a long video into exactly 20second long clips, and accomplishing that by :
    inside docker as a python sub-process

    subprocess.run(["/usr/sbin/ffmpeg",
           "-i", video_loc,
           "-async", "1",
           "-map", "0",
           "-segment_time", "20",
           "-f", "segment",
           "-reset_timestamps", "1",
           "n-%05d.mp4"], cwd=r'/clips')

    My problem is that each are roughly 20seconds, some are as low as 10seconds, some as high as 27 seconds, i would say most are around 16-23. Is there something else that I can do to ensure the split of exactly 20 seconds ? I am open to any technique possible, aside from anything manual...

  • ffmpeg encoding outputs a file with incorrect metadata

    20 juillet 2013, par user2554615

    I use ffmpeg to convert a flv file to an mp3 file like so in bash :

    ffmpeg -i path/to/file.flv path/to/output.mp3

    say the flv is 5 minutes long, the output file is supposedly say, 3 minutes long. however when played back it will reach the 3 minute mark and keep playing (as it should) the full length. when i try to skip to a portion of the song it only skips by fractions of the time it should, take for example if the video is labeled as 3 minutes long and i skip to the end, it will actually be playing the area that is about 30 seconds in. why is it doing this and how do i fix it ? is there any other utility that i can use that will effectively convert .flv and .mp4 files to .mp3 or .wav in a loss-less fashion while maintaining the correct metadata, preferably for windows ? perhaps an API i can use in java or c++ ?

    PS : i ask here because it relates to a command line utility and i assume that the the solution will relate to the options used in the command.

    PPS : i am using the ffmpeg that comes with puppy linux (precise) 5.4

  • How can I use ffmpeg to split videos into 3 minute chunks ?

    29 janvier 2023, par TheBryan

    i want to split a video that is 21 minutes long into 7 videos of 3 minutes long using ffmpeg in cmd windows. The command I'm using is this but it gives me an error.
for /L %i in (0,1,7) do ffmpeg -i test.mp4 -ss 00 :$(%i*3):00 -t 00:03:00 -c copy outputs%i.mp4
If someone could tell me the error and how to fix it I would appreciate it.

    


    that the video is trimmed consecutively