Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (103)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

  • FFmpeg : calculate time to convert images and .mp3 to a video

    22 novembre 2018, par domi

    Is there any formula that I can use to calculate the time that FFmpeg uses to convert a single .jpg image and .mp3 song to a video ?

    I am using the following code :

    ffmpeg -loop 1 -r ntsc -i image.jpg -i song.mp3 -c:a copy -c:v libx264 \
      -preset fast -threads 0 -shortest
    

    Lets say we have an image with X resolution and .mp3 length of L. Would the formula be :

    time = X * L(in seconds) ?

    Thanks for any tips.

  • FFmpeg : calculate time to convert images and .mp3 to a video

    6 avril 2013, par DomenK

    Is there any formula that I can use to calculate the time that FFmpeg uses to convert a single .jpg image and .mp3 song to a video ?

    I am using the following code :

    ffmpeg -loop 1 -r ntsc -i image.jpg -i song.mp3 -c:a copy -c:v libx264 \
      -preset fast -threads 0 -shortest
    

    Lets say we have an image with X resolution and .mp3 length of L. Would the formula be :

    time = X * L(in seconds) ?

    Thanks for any tips.

  • ffmmpeg output filename manipulation - extract every n seconds and put time of frame in output file

    27 août 2022, par Fat Robert

    I have an mpg file. I want to extract a frame every 'n' seconds (example below every 2 minutes) and make a filename that matches the frame time + the start time. Can I do this in ffmpeg.

    


    ffmpeg -i '20220804 - 091910_3.mpg' -vf fps=1/120 ../test_video_images/OUTFILE03d.jpg

    


    I sse that part of the output as the command executes has time info :

    


    frame= 1 fps=0.1 q=5.3 size=N/A time=00:02:00.00 bitrate=N/A speed= 15x

    


    Can I get to the time variable and append it onto the output name ?

    


    Regards,