Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (9500)

  • Anomalie #3654 : Régression jointure en 3.1 ?

    16 janvier 2016, par tcharlss (*´_ゝ`)

    Juste pour voir, j’ai désactivé la jointure sur les auteurs pour toutes les tables en commentant la ligne 369 de ecrire/base/objets.php : https://core.spip.net/projects/spip/repository/entry/spip/ecrire/base/objets.php#L368
    On se retrouve une nouvelle jointure sur spip_forum !

    SELECT abonnements.id_abonnement, L2.nom
    FROM spip_abonnements AS `abonnements`  
    INNER JOIN spip_forum AS L1 ON ( L1.id_objet = abonnements.id_abonnement AND L1.objet=’abonnement’) 
    INNER JOIN spip_auteurs AS L2 ON ( L2.id_auteur = L1.id_auteur )
    WHERE (abonnements.statut = ’actif’)
    GROUP BY abonnements.id_abonnement
    
  • 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
)


    


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