Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (49)

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

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (10995)

  • build-ffmpeg.sh bad variable name

    25 octobre 2016, par Alex Kombo

    I have added the library to my project successfully but after replacing the Android media player with the FFmpegMediaPlayer and trying to build and run the project, I get the following error :

    :library:buildFFmpeg
    /home/kombo/Radio Africa/Music Player/library/src/main/scripts/build-ffmpeg.sh: 4: export: Africa/Music: bad variable name

    FAILED

    FAILURE: Build failed with an exception.

    * What went wrong:
    Execution failed for task ':library:buildFFmpeg'.
    > Process 'command '/home/kombo/Radio Africa/Music Player/library/src/main/scripts/build-ffmpeg.sh'' finished with non-zero exit value 2

    * Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

    BUILD FAILED

    Total time: 34.148 secs

    How can I solve tackle this since removing the build-ffmpeg.sh file doesn’t look like an option.

  • FFMPEG - Verify frame order

    27 octobre 2015, par RockJake28

    I have created a video of a large number of images using ffmpeg using the following command

    ffmpeg -framerate 25 -pattern_type glob -i "*.png" -c:v libx264 -pix_fmt yuv420p /home/jake/Desktop/output.mp4

    The command works and produces a video, however I need a way to verify that the images have been processed in the correct order as the files have quite obscure names. For example, the first 3 images in the sequence are :

    1. image_20150625T100000.000_550000328.png
    2. image_20150625T100000.033_550330578.png
    3. image_20150625T100000.067_550671379.png

    all the way up to

    image_20150625T100459.987_3546673942.png

    I have tried using the -loglevel switch on various different options in hope that one would output the file name of each frame processed, but none seem to do that.

    Thanks in advance.

  • How to add timestamp to ffmpeg in nginx-rtmp-module

    2 mars 2017, par helyao

    I use nginx-rtmp-module and ffmpeg to record rtmp video stream to mp4 file, but I want to know how to add timestamp to the mp4 file.

    My config as below :

    rtmp
    {
       server
       {
           listen 1935;
           timeout 10s;
           application mylive   {
               live on;
               exec /usr/bin/ffmpeg -i rtmp://localhost/$app/$name -vcodec copy -acodec copy -f mp4 /home/ubuntu/video/${name}.mp4;
           }
       }
    }

    I want to record the file with the name as $name-`date +%Y%m%d_%H%M%S`, but how can i do ?