Recherche avancée

Médias (91)

Autres articles (40)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (9263)

  • Installing FFMPEG via WHM Terminal (VPS Server)

    22 juillet 2020, par Alien Joe

    I apologize in advance if any necessary information is missing. Please don't hesitate to comment if I've made any noob mistakes.

    


    What I'm trying to do is install FFMPEG on our VPS following the instructions here : https://stackposts.com/docs/detail/21747459/installating-ffmpeg

    


    I am getting hung up after step 3 - all commands being executed from the Terminal linked inside of our WHM as the root user. I'm getting a permission denied error at step 4, and then errors on every step thereafter if I try to skip it.

    


    I did notice in the course of trying to ad-hoc the install based on other tutorials that the ffmpeg-3.3.4 directory for some reason belongs to another user NOT root. I'm not sure what part of steps 1-3 would have caused this to happen. There may be something there.

    


    I'm hoping someone has run into similar issues and can provide some direction. I've been at it all morning searching for ways to complete this install. I've checked the source file's site, I've reached out to my host, I've reached out to the software support, and I'm reaching out here.

    


    I've accomplished the FFMPEG file downloads - how to I proceed with install ?

    


  • Record only audio using ffmpeg commands in OSX Terminal

    27 septembre 2017, par Swati

    I have tried multiple commands, the file is created but no audio.

    ffmpeg -f avfoundation -framerate 30 -i "Built In Input" -acodec aac -ab 64000 -ar 48000 -ac 2 -f flv test.wav

    ffmpeg -f avfoundation -i ":Built In Input" -acodec libmp3lame -ab 32k -ac 1 -f flv test.wav

    ffmpeg -f avfoundation -i ":1" -r 25  -c:v libx264 -preset fast -crf 22 -c:a libfdk_aac  -b:a 128k -ar 44100 -s 640x480  test.mp4

    ffmpeg -f avfoundation -i ":1" -acodec libmp3lame -ab 32k -ac 1 -f mp3 swati.mp3




    ffmpeg -f avfoundation -framerate 30 -i ":1" -ab 128000 -ac 2 -f flv /Users/admin/Documents/swati.flv

    Result in terminal :
    video:0kB audio:686kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : 0.810823%

    Above line indicates audio exists but i cant hear anything
    any suggestions what should I do ?

  • C run linux shell command(fmpeg) slower than typing directly in terminal

    11 novembre 2014, par dadylonglegs

    I’m writing an application that execute a linux shell command (ffmpeg) from my C code. Such as :

    char command[2000];
    sprintf(command, "ffmpeg -i %s/%s -r 1 -vf scale=-1:120 -vframes 1 -ss  00:00:00 %s.gif", publicFolder, mediaFile, mediaFile);
    system(command);

    To extract video thumbnail from a specific video. But the strange that it is too much slower when executing shell command form C compare to typing directly to the terminal. I have no idea about this.
    Can anybody help me pls ?. Thanks in advance.