Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (103)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (9480)

  • AVI merging with FFmpeg truncated

    6 juin 2012, par Masud Rahman

    I was using FFmpeg to merge two avi files which were converted to AVI from wmv. The conversion from wmv to avi worked fine, but when I am going to merge those two avi files, some part of the longer video is truncated. Also if the first video is without sound, then the merged video is not containing sound at all. What may be the fix ? Please anybody with FFmpeg expertise, help me.

    Note : Command for merging

    ffmpeg -isync -i "concat:file1.avi|file2.avi" -f avi -c copy merged.avi

    Thanks in advance

  • What's common encoders and decodes on Android

    31 mai 2018, par CoXier

    I do not know whether it’s suitable to ask this question here. If not, please tell me , thanks in advance.

    Recently I am working on FFmpeg for Android. Everything works well but its size is too large so I decide to reduce the size.

    I think I should at first only enable some encoders that I maybe use. What’s common encoders and decodes on Android ?

    In additional, I can use ./configure --list-encoders to show all available encodes.

  • Keep converting video when quitting ssh session [on hold]

    13 août 2015, par JimZer

    I have a dedicated server with Debian Jessie, I connect to it with ssh.
    I launched a list of video conversion with ffmpeg using my terminal with ssh. More precisely it convert a list of videos contained in a folder using this command :

    for file in *.avi; do ffmpeg -i "$file" "${file%.avi}".webm; done

    However I would like the list of tasks to continue even if I close my ssh session.
    Is that possible ?

    Thank you in advance for helping me.