Recherche avancée

Médias (91)

Autres articles (83)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

Sur d’autres sites (7763)

  • How to convert images to a video by the time they have been taken/saved and not by name ?

    26 avril 2019, par Xester Menia

    I have a Livestream that takes pictures every one or two seconds. Then I have a folder in which the pictures are being saved.
    Usually I would just simply take ffmpeg -start_number -i IMG_%d.JPG video.webm (I need the end format in .webm). I want to use the saved pictures to form a time-lapse to put up next to the stream. So people can see the last 24h/ 7d and 90d. So I wondered if I could code that all the pics of that time period are used and only them.
    I later want it to happen automatic, so i dont have to write the code new every day.

    Thanks for your help

  • How to loop thorough my text file and call the name of picture

    17 août 2022, par Ionut Bejinariu

    I need to take all audio files from a directory, and export them along with one of multiple pictures listed in a text file.

    


    It's working to take all the audio files one by one, but I cannot make it have a different picture for each video. I have same picture all the time.

    


      

    1. I don't know how to make the loop working for the pictures files.
    2. 


    3. Will be nice if someone can tell me how I can group pictures in order to export as a slideshow.
    4. 


    


    Thank you.

    


    In .txt file my pictures are like this :

    


    1.jpg
2.jpg
3.jpg


    


    And my code looks like this :

    


    @echo off
set "sourcedir=E:\test slideshow imagini"  
set "outputdir=E:\test slideshow imagini\1" 
PUSHD "%sourcedir%"
for /F "tokens=*" %%A in (poze3.txt) do (
    echo %%A
    :: pictures names
     for %%F in (*.wav *.mp3) DO ffmpeg -loop 1 -i %%A -i "%%F" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest -vf scale=1920:1080 "%outputdir%\%%F.mp4" 
    POPD
)


    


  • How to loop through my text file and call the name of picture

    18 août 2022, par Ionut Bejinariu

    I need to take all audio files from a directory, and export them along with one of multiple pictures listed in a text file.

    


    It's working to take all the audio files one by one, but I cannot make it have a different picture for each video. I have same picture all the time.

    


      

    1. I don't know how to make the loop working for the pictures files.
    2. 


    3. Will be nice if someone can tell me how I can group pictures in order to export as a slideshow.
    4. 


    


    Thank you.

    


    In .txt file my pictures are like this :

    


    1.jpg
2.jpg
3.jpg


    


    And my code looks like this :

    


    @echo off
set "sourcedir=E:\test slideshow imagini"  
set "outputdir=E:\test slideshow imagini\1" 
PUSHD "%sourcedir%"
for /F "tokens=*" %%A in (poze3.txt) do (
    echo %%A
    :: pictures names
     for %%F in (*.wav *.mp3) DO ffmpeg -loop 1 -i %%A -i "%%F" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest -vf scale=1920:1080 "%outputdir%\%%F.mp4" 
    POPD
)