Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (4214)

  • Two character glob pattern

    18 octobre 2022, par eSlavko

    I have camera capturing image every 10 seconds and store in folder with image name as timestamp like
/2022-05-10_19:11:50.jpg
Each week is stored in separate folder.
Now I want to make video from that images using ffmpeg.
It works with images declared as -pattern_type glob -i "*.jpg" Now I want to make video from images captured only in daytime. For example from images /2022-05-10_XX:11:50.jpg where XX is in range from 05, 06, 07 .. 20, 21. I try with glob patterns but seems that it can work only over single digit.

    


  • Dot character in FFMPEG in Python

    17 juin 2023, par Mahdi

    I'm using ffmpeg with python3 with filenames like the below :

    


    27. Air Space


    


    My code is something like this :

    


    for folder, dirs, files in os.walk(rootdir):
    for file in files:
        fullpath = os.path.join(folder, file)
        
        filename = '""' + fullpath + '""'
        actual_filename = fullpath.replace(".mp4","")+".wav"

        os.system('ffmpeg -i {} -acodec pcm_s16le -ar 16000 {}'.format(filename, actual_filename))


    


    The problem is FFMPEG cannot find the file and it gives me an error :

    


    No such file or directory


    


  • Not reading the first character of every second line in a file [duplicate]

    13 janvier 2024, par Monki Majik

    In a BASH script (latest Xubuntu) this successfully reads and prints every line in mp4.txt

    


    ls *.mp4 > mp4.txt
while read F ; do
    echo $F
    echo ${F/mp4}mkv
#        ffmpeg -i "$F" -map 0 -c copy "${F/mp4}mkv"
done < ./mp4.txt


    


    Uncommenting the ffmpeg line causes the first character from every other line in mp4.txt to not be in F.

    


    I'm expecting every file line to be read consistently.

    


    I've tried Bash : Special characters lost when reading file