Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (43)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6166)

  • How to add intro image beginning of video with same video aspect ratio in ffmpeg ?

    10 juin 2021, par Manoj Kag

    I have one image and one video. I would like to add image as video just before actual video so i can stream video with intro frame for 5 seconds.

    


    I found one command and full fill my requirement but in that command image added at the end of the video and i need beginning of the video. Let me share command below :

    


    ffmpeg -i 1.mp4 -loop 1 -t 5 -i 2.jpg -f lavfi -t 5 -i anullsrc -filter_complex "[0]split[base][full];[base]trim=0:5,drawbox=t=fill[base];[1][base]scale2ref=iw:ih:force_original_aspect_ratio=decrease:flags=spline[2nd][base];[base][2nd]overlay='(W-w)/2':'(H-h)/2'[padded];[full][0:a][padded][2:a]concat=n=2:v=1:a=1[v][a]" -c:v libx264 -c:a aac -strict -2 -map "[v]" -map "[a]" output.mp4

    


    Image should be resize dynamically according to the video resolution.
Best solution will be appreciate from bottom of heart.

    


  • Smaller video file size while keeping the quality of video ?

    12 octobre 2016, par user3157841

    I am newbie for Video analysis,
    I am looking for a solution that can decrease (or losing not much) the size of video (bytes) but that does not also decrease the picture quality of video (resolution).

    I also research from FFMPEG lib, but I can not find out any solution ?
    Anyone can help me or give me suggestion for this problem ?
    Thank you so much

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