Recherche avancée

Médias (91)

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (6919)

  • h265 source video seems ok but when rewrite to h264 not good [closed]

    9 décembre 2023, par Xingdi

    I have a h265 video file from a video camera. If I play it, everything seems OK. But if I re-encode it into a h264 file using ffmpeg, I got some corrupt frames. There are some error messages :

    


    [hevc @ 0x14993c0] Could not find ref with POC 3
[hevc @ 0x1476140] Could not find ref with POC 16
[hevc @ 0x1487a80] Could not find ref with POC 19
[hevc @ 0x14f2240] Could not find ref with POC 3
[hevc @ 0x1eadd00] Could not find ref with POC 39
[hevc @ 0x14993c0] Could not find ref with POC 28



    


    Does this mean the encoder in the video camera has problem ? Why the video player plays it well ?

    


    Thanks.

    


  • What is the good library for video editing module in react.js ? [closed]

    23 mai 2024, par tayyab manzoor

    I want to add a module for video editing in my web app. I have researched about video editing tools like ffmpeg but it is not working. is there any plugin for video editing or I have to build my own with jquery ?
Thanks

    


    I have tried with npm package like ffmpeg but it is not working and I want to know is there any other pacakge for video editing.

    


  • ffmpge command to merge file with good quality

    21 janvier 2016, par Hemant Kumar

    Hi I am looking for a better command that can merge both audio & video files into one with a better quality.

    I found this command from Muaz Khan’s WebRTC APIs.

    "ffmpeg -i {$audioFile} -i {$videoFile} -map 0:0 -map 1:0 {$mergedFileName}"

    Later on server i had to add "-strict -2" with this command as on server it says that above command is experimental if I still want to use it you should add "-strict -2" with it.

    It is working well but my video file (.webm) with size 2.2MB and audio file (.wav) with size 1.5MB was merged into a new file (.webm) with size 422.5KB. This new video file is having lag.

    Also I want the meta information for duration of video is already written on the resulting video file.

    Is there any command which can give the merged file without lagging and both video and audio of the new file are of good quality.