Recherche avancée

Médias (91)

Autres articles (49)

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

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

Sur d’autres sites (10922)

  • Dynamic Watermarking Videos Strategy

    8 mai 2020, par Rakesh Guha

    I am running a video player that would play MPEG-DASH encoded video from an S3 bucket, I need to have it watermarked for each user when they play it. Can you suggest a non-removable watermarking method ?

    



      

    • So far I have tried


        

      • Css overlay (fairly easy and removable)
      • 


      • FFMPEG Transcoding (CPU consuming, would need a huge infra)
      • 


      • Video.js Dynamic watermarking plugin(looks okay, but not sure if removable or not)
      • 


    • 


    



    Suggestions would be very much appreciated

    


  • Create a subtitle mpd file with MP4box

    13 juillet 2020, par 123abc

    I'm creating a mpd file for a video player and for now I have everything to cover the video, audio and language settings but I'm struggling with the subtitles.

    


    Here's the command I used for audio and video :

    


    mp4box -dash 10000 -profile dashavc:264:onDemand -rap video/audio.mp4#audio/video


    


  • Subprocess call invalid argument or option not found

    14 septembre 2018, par NickB

    I’m trying to call ffmpeg command using subprocess.call() on linux, but I’m unable to get the arguments right. Before hand, I used os.system and it worked, but this method is not recommended.

    Using arguments with a dash such as "-i" gets me this error

    Unrecognized option 'i "rtsp://192.168.0.253:554/user=XXX&password=XXX&channel=0&stream=0.sdp?real_stream"'.
    Error splitting the argument list: Option not found

    Using arguments without dash like "i" gets me this error

    [NULL @ 0x7680a8b0] Unable to find a suitable output format for 'i rtsp://192.168.0.253:554/user=admin&password=&channel=0&stream=0.sdp?real_stream'
    i rtsp://192.168.0.253:554/user=XXX&password=XXX&channel=0&stream=0.sdp?real_stream: Invalid argument

    Here’s the code

    class IPCamera(Camera):
    """
       IP Camera implementation
    """
    def __init__(self,
                path='\"rtsp://192.168.0.253:554/'
                     'user=XXX&password=XXX&channel=0&stream=0.sdp?real_stream\"'):

       """
           Constructor
       """
       self.path = path

    def __ffmpeg(self, nb_frames=1, filename='capture%003.jpg'):
       """
       """

       ffm_input = "-i " + self.path
       ffm_rate = "-r 5"
       ffm_nb_frames = "-vframes " + str(nb_frames)
       ffm_filename = filename

       if platform.system() == 'Linux':
           ffm_path = 'ffmpeg'
           ffm_format = '-f v4l2'

       else:
           ffm_path = 'C:/Program Files/iSpy/ffmpeg.exe'
           ffm_format = '-f image2'

       command = [ffm_path, ffm_input, ffm_rate, ffm_format, ffm_nb_frames, ffm_filename]
       subprocess.call(command)

       print(command)

    BTW, I’m running this command on a MT7688.

    Thanks