Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (56)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • How can I use ffmpeg to convert all HEVC videos to h.264 videos only on linux ? [closed]

    13 juillet 2022, par Jayden Lo

    I am trying to import all my images and videos from Google Photos to Nextcloud. I used Google Takeout to download them, but some videos are in HEVC format, which is not supported by most devices. How can I batch convert all HEVC videos to h.264 ? I am using Ubuntu and here is my file structure :

    


    ./Photos/
  Image1.jpg
  Image2.jpg
  ...
  HEVC-Video1.mp4
  HEVC-Video2.mp4
  HEVC-Video3.mp4
  ...
  H.264-Video1.mp4
  H.264-Video2.mp4
  ...


    


    Thanks in advance.

    


  • Unable to get the original quality after resizing in ffmpeg

    24 septembre 2018, par Sabha

    I am trying to resize a high res video into 480x ??? and with to maintain aspect ratio and also without losing quality. I wish to maintain the original quality of the video. I tried this command line but it loses quality.

    ffmpeg -i a.mp4 -filter:v scale=480:-1 -c:a copy b.mp4

    I got some filters and options from google search such as -qscale,-sameq etc but it is not working.

    Can you please tell me the exact command ?

    Thanks

    EDIT : I also need to place two videos one below the other and wish to know if there is any such option in ffmpeg coz I cannot find anything on google.

  • How to extract small video chunk with ffmpeg ?

    3 décembre 2017, par Édouard Lopez

    I’m writing a script to split a video in multiple small files based on subtitles timing. Each chunk illustrated how to sign a word LSF (French Sign Language).

    However, some file are blank once extracted and when converted to webm they are 0kb.

    Timing data

    I extract the timing from a .ass file to get this kind of file

    0:00:01.01 0:00:04.07
    0:00:04.09 0:00:07.00
    0:00:07.00 0:00:10.36
    0:00:10.36 0:00:13.28

    First column is start_time, second is end_time

    Extraction

    extract_word_chunk() {
     ffmpeg \
       -i "$INPUT_FILE" \
       -ss "$start" \
       -to "$end" \
       -vcodec copy \
       -acodec copy \
       -loglevel error \
       "$chunk" < /dev/null
    }

    Conversion to webm

    convert_to_webm() {
     ffmpeg \
       -y \
       -i "$chunk" \
       -acodec libvorbis \
       -codec:v libvpx \
       -b:v 192k \
       -b:a 96k \
       -minrate 128k \
       -maxrate 256k \
       -bufsize 192k \
       -quality good \
       -cpu-used 2 \
       -deadline best \
       -loglevel error \
     "$chunk.webm" < /dev/null
    }

    Output

    # extract_word_chunk
    ffmpeg \
     -i 'assets/raw/partie 1: Apprendre 300 mots du quotidien en LSF.jauvert laura.mkv' \
     -ss 0:00:01.01 \
     -to 0:00:04.07 \
     -vcodec copy \
     -acodec copy \
     -loglevel error \
     assets/raw/0:00:01.01.mkv

    # convert_to_webm
    ffmpeg -y \
     -i assets/raw/0:00:01.01.mkv \
     -acodec libvorbis \
     -codec:v libvpx \
     -b:v 192k \
     -b:a 96k \
     -minrate 128k \
     -maxrate 256k \
     -bufsize 192k \
     -quality good \
     -cpu-used 2 \
     -deadline best \
     -loglevel error \
     assets/raw/0:00:01.01.mkv.webm

    Error

    [buffer @ 0x16d8be0] Unable to parse option value "-1" as pixel format
       Last message repeated 1 times
    [buffer @ 0x16d8be0] Error setting option pix_fmt to value -1.
    [graph 0 input from stream 0:0 @ 0x16e6fc0] Error applying options to the filter.

    Question

    Only some chunk are blank/empty.

    How do I prevent my video to be blank/empty ?