Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (111)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (11059)

  • mp4 muxing problems on dm365 board

    25 mai 2013, par Ulterior

    I happen to be stuck with strange TI codec issues while encoding video. To cut story short - the encoded data which is generated by TI mpeg4 codecs are not 'understood' by nothing else, but VLC and media classic player.

    After really long googling and several seasons I face to you stackoverlowers to help me understand what is wrong in the encoded frame headers, because I really fail to find any answers.

    AviDemux 2.6.1 opens and remux-es video data without problems. So there is hope to understand whats is wrong with mp4 generated data...

    I would really appreciate any help from mp4 gurus out there...

    the link to the problem file

  • How do we redirect the output of 1 ffmpeg processing as input in the same command ?

    9 septembre 2020, par Farhan

    I want to attach 2 videos using hstack filter and this is what I am doing, resizing 1 of the video files (to match same height) and then proceeding to merge. This is happening as 2 different steps,

    


      

    1. ffmpeg -y -i inputVideo1 -vf scale=-2:900 outputVideo1
    2. 


    3. ffmpeg -y -i outputVideo1 -i inputVideo2 -c:v libx264 -filter_complex hstack outputVideo2.mp4
    4. 


    


    This is taking longer time. How do I make this happen in a single step ? Something like,

    


    ffmpeg -i inputVideo1 (something here) outputVideo1 (take this as input) -i inputVideo2 (hstack and stuff) outputVideo2.mp4```



    


  • opencv dont receive camera stream

    11 juillet 2022, par Ofek nourian

    I have a simple IP camera connected to a video encoder "barracuda haivision S-280E-SDI"
I can receive the camera feed just fine with vlc, using the folowing URL :

    


    


    rtsp ://10.5.1.2:554

    


    


    then, I tried to play the video with python and opencv, using the following code :

    


    cap = cv2.VideoCapture('rtsp://10.5.1.2:554', cv2.CAP_FFMPEG)

while cap.isOpened():
  ret, frame = cap.read()
  cv2.imshow('frame', frame)
  if cv2.waitKey(1) == ord(1):
    break
cap.release()
cap.destroyALLWindows()


    


    but I get Error message :

    


    


    [rtsp @ 0000219d1e4e580] method SETUP failed : 500

    


    


    why does it happen ? what can I do to fix it ?