Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

  • can't install ffmpeg in ubuntu

    5 février 2013, par john

    I tried to install ffmpeg in ubundu.using the command sudo apt-get install ffmpeg

    But i can't install it.It Shows an error.Following is the out put when i tried to install ffmpeg.

    wds@wds:~$ sudo apt-get install ffmpeg
    [sudo] password for wds:
    Reading package lists... Done
    Building dependency tree      
    Reading state information... Done
    The following extra packages will be installed:
     libavfilter1
    The following NEW packages will be installed:
     ffmpeg libavfilter1
    0 upgraded, 2 newly installed, 0 to remove and 3 not upgraded.
    Need to get 357kB of archives.
    After this operation, 1,282kB of additional disk space will be used.
    Do you want to continue [Y/n]? y
    WARNING: The following packages cannot be authenticated!
     libavfilter1 ffmpeg
    Install these packages without verification [y/N]? y
    Err http://us.archive.ubuntu.com/ubuntu/ maverick-updates/main libavfilter1 i386 4:0.6-2ubuntu6.3
     404  Not Found [IP: 91.189.91.15 80]
    Err http://security.ubuntu.com/ubuntu/ maverick-security/main libavfilter1 i386 4:0.6-2ubuntu6.3
     404  Not Found [IP: 91.189.92.200 80]
    Err http://security.ubuntu.com/ubuntu/ maverick-security/main ffmpeg i386 4:0.6-2ubuntu6.3
     404  Not Found [IP: 91.189.92.200 80]
    Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/f/ffmpeg/libavfilter1_0.6-2ubuntu6.3_i386.deb  404  Not Found [IP: 91.189.92.200 80]
    Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/f/ffmpeg/ffmpeg_0.6-2ubuntu6.3_i386.deb  404  Not Found [IP: 91.189.92.200 80]
    E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
    wds@wds:~$

    It shows a 404 error.when installing.

  • Anomalie #4230 : Limite à la longueur des paramètres d’un modèle

    10 février 2021, par b b

    Si tout le monde est d’accord et que SPIP 3.3 est compatible PHP 7.3, on peut fermer non ? Sinon on attend la version de SPIP qui nécessitera PHP 7.3 mini et zou :p

    PS : j’ai bien ri avec le coup de guerre & paix en argument, merci :D

  • Unable to set thumbnail image to mp3 file using ffmpeg sending it's output to console (ffmpeg pipe:1) [duplicate]

    3 mai 2019, par remort

    This question already has an answer here :

    I need to add thumbnails (album art) to mp3 (and other) files programmatically (using python) and save ffmpeg output in memory (to be able to send resulting bytes to another process).

    Pay attention to '-f', 'mp3', 'pipe:1' in last example please. Ffmpeg breaks working with pipe unless you set format for resulting stream.

    What I have now :
    1. This example bash oneliner works as expected making proper mp3 files with thimbnails (Telegram plays audio and shows thumbnail) :

    ffmpeg -i qwe.mp3 -i asd.png -acodec copy -map 0 -map 1 -disposition:v:1 attached_pic out.mp3
    1. This python code does the same with same result :
    subprocess.run(['ffmpeg', '-i', 'qwe.mp3', '-i', 'asd.png', '-acodec', 'copy', '-map', '0', '-map', '1', '-disposition:v:1', 'attached_pic', 'out.mp3'])
    1. But I need bytes, not file on file system, so I do the following and get bytes. But then, if I save those bytes to file, it results to broken mp3 file. I cant play it with Deadbeef and Telegram.
    audio_data = subprocess.run(['ffmpeg', '-i', 'qwe.mp3', '-i', 'asd.png', '-acodec', 'copy', '-map', '0', '-map', '1', '-disposition:v:1', 'attached_pic', '-f', 'mp3', 'pipe:1'], stdin=None, stdout=subprocess.PIPE, stderr=subprocess.PIPE)

    len(audio_data.stdout)
    2621690  # 2,6 Mbytes, it's ok


    with open('out.mp3', 'wb') as f:                                                                                                                                                                                                                                    
       f.write(audio_data.stdout)

    Last example gives me a broken mp3 file. It can’t be played in deadbeef and Telegram.

    I suggest that problem is somewhere around several streams (-map parameters) or/and with -f mp3 directive (since I have an image inside an mp3 stream or something like that).

    I tried setting additional id2v3 tags and changing other options but no luck. Any suggestions in this ?