Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (51)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (4948)

  • FFMPEG Command Freezes

    4 mai 2020, par Amirali Ahmadi

    I'm using this command to concatenate multiple mp3 files

    



    ffmpeg -i http://dev-vigor.s3.eu-de.cloud-object-storage.appdomain.cloud/vigor_cdn_1588425465517.mp3 -i http://dev-vigor.s3.eu-de.cloud-object-storage.appdomain.cloud/vigor_cdn_1588425920670.mp3  -filter_complex "concat=n=2:v=0:a=1[a]" -map "[a]" -codec:a libmp3lame 5eab0137ab513179f4427b79.mp3 -y


    



    the command works perfectly fine when I run it on my local system but when i use it on the server where it's supposed to work, it freezes after fetching the first file or a little into the second one.
I'm using windows 10 on my local system and Centos 8 on the server.

    


  • FFMPEG Images to video - 'file not found' error in command - I'm sure it's something obvious

    8 août 2017, par jgads

    I’m running this command on my Android phone with an FFmpeg library. It works great for combining videos into one resultant video, but not with images. Here’s the command :

    -framerate 4 -start_number 0 -i '/storage/emulated/0/Pictures/phototest/%3d.jpg' -c:v libx264 -r 30 -pix_fmt yuv420p /storage/emulated/0/Pictures/phototest/result.mp4

    The error is :

    '/storage/emulated/0/Pictures/phototest/%3d.jpg': No such file or directory

    The images are just consecutively named, e.g. 1.jpg, 2.jpg and so on, and they’re definitely there - though I think FFMPEG is taking the image file name literally rather than interpreting it. I’m missing something obvious here, I’m sure of it. I looked round StackOverflow and the whole ’%3d’ wildcard is supposed to work ! Any ideas ?

    EDIT : Running the command with just the first image (1.jpg) works fine. Definitely an issue with the wildcard. In addition, running the command without the image path in quotes doesn’t seem to work either.

    EDIT 2 : Adding ’img’ in front of every file so that it it’s ’img1.jpg’, ’img2.jpg’ and so on doesn’t work either. Is there a way to pass multiple images separated by ’|’ like the concat command ?

  • FFMPEG Images to video - 'file not found' error in command - I'm sure it's something obvious

    12 décembre 2014, par jgads

    I’m running this command on my Android phone with an FFmpeg library. It works great for combining videos into one resultant video, but not with images. Here’s the command :

    -framerate 4 -start_number 0 -i '/storage/emulated/0/Pictures/phototest/%3d.jpg' -c:v libx264 -r 30 -pix_fmt yuv420p /storage/emulated/0/Pictures/phototest/result.mp4

    The error is :

    '/storage/emulated/0/Pictures/phototest/%3d.jpg': No such file or directory

    The images are just consecutively named, e.g. 1.jpg, 2.jpg and so on, and they’re definitely there - though I think FFMPEG is taking the image file name literally rather than interpreting it. I’m missing something obvious here, I’m sure of it. I looked round StackOverflow and the whole ’%3d’ wildcard is supposed to work ! Any ideas ?

    EDIT : Running the command with just the first image (1.jpg) works fine. Definitely an issue with the wildcard. In addition, running the command without the image path in quotes doesn’t seem to work either.

    EDIT 2 : Adding ’img’ in front of every file so that it it’s ’img1.jpg’, ’img2.jpg’ and so on doesn’t work either. Is there a way to pass multiple images separated by ’|’ like the concat command ?