Recherche avancée

Médias (91)

Autres articles (59)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8269)

  • I have installed ffmpeg on amazon linux 2. How do I add it to the path permanently ?

    17 mai 2021, par suyogx

    I have installed ffmpeg on amazon linux 2. But my application can't seem to find ffmpeg or ffprobe. How do I add these to the path permanently ? I tried doing it, but every time i logout of ssh, the value is erased from the path.

    


  • Save screenshots taken with FFmpeg into Amazon S3 bucket

    30 mars 2021, par HomeAlone

    In my python app I take screenshots of videos. I save them locally and it works just fine but now I want to save them in an Amazon S3 bucket.

    


    subprocess.run(["ffmpeg", "-ss", "00:00:30", "-i", src, "-map", "0:v", "-vframes", "1", "pipe:pic.jpeg | aws s3 cp - s3://mypublicbucket"])


    


    I get an Unable to find a suitable output format when running this command. What I try to do is to upload the picture straight into my public amazon bucket.

    


  • how to stream h265 video from ffmpeg to amazon s3 ?

    22 juin 2020, par herb

    I am trying to stream h265 video to aws s3 from ffmpeg, here is the command that i use :

    


    ffmpeg -f gdigrab -i desktop -r 1 -vframes 5 -c:v libx265 -crf 40 -f mp4 pipe:1 | aws s3 cp -  s3://videosbuket-009212/d5.mp4


    


    and error information :

    


    [mp4 @ 000001c49541bb40] muxer does not support non seekable output
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
Error initializing output stream 0:0 --


    


    what's wrong here ?