Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (51)

  • 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

  • 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

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

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