Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (68)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6024)

  • How to replace the video track in a video file with a still image ?

    22 février 2021, par cornerstore

    I am trying to use ffmpeg to replace the video track in a video file with a still image. I tried some commands I got from other questions such as the one here

    


    ffmpeg -i x.png -i orig.mp4 final.mp4

    


    ffmpeg -r 1/5 -i x.png -r 30 -i orig.mp4 final.mp4

    


    But these didn't work. I'm not sure which of these arguments are required or not. The output should be accepted by YouTube as a valid video - I was able to simply remove the video track, but apparently they don't let you upload a video without a video track.

    


  • How to get convert a avi to mp4 video in order to get a YouTube 1080p HD video ? [closed]

    26 mai 2012, par Swiss12000

    I have an avi video (31568 kbits/s ->video) (1411 kbits/s -> audio).
    The avi video is 7sec long and the size is 24 597KO.

    I'm trying to convert the avi video with ffmpeg to get a lighter mp4 version.

    In the command line, I've entered :

    ffmpeg -i test.avi test.mp4

    However, when I upload the video on YouTube, I can get a 720p quality maximum.

    My question is : how to convert a mp4 in order to get a 1 080p video ?

    Thank you

    edit : Am I missing something in my question. I get negative opinion, if so what can i do in order to improve my question. I'm totaly new in videos encoding. I also did lot of google reasearch about it but i find no specific answer about that issue... So I feel that my question isn't that much bad... :s

  • How to cut video, add audio and burn subtitle while cropping video all in one command - ffmpeg

    15 mars 2023, par constantlyFlagged

    Currently I have the following code,

    


    which cuts the video, adds audio and burns subtitle into the video.

    


    -ss 00:00:30 -t -i video.mp4 -i audio.wav -vcodec copy  -acodec copy -map 0:0 -map 1:0 -vf subtitles=subtitle.srt


    


    but I need to crop the video before the subtitle is added. I know it is possible to crop video using the command :

    


    -vf crop=405:720


    


    or using

    


    -filter:v crop=405:720


    


    but I am unable to use it in conjunction with the above statement. What would be the best approch to get the desribed outcome ?