Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (80)

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

  • 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 version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (5357)

  • Revision 527f88316c : Nextgen branch cleanup : remove real-time speed features Removed inter_mode_mask

    14 juillet 2015, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_speed_features.c


     Modify /vp9/encoder/vp9_speed_features.h



    Nextgen branch cleanup : remove real-time speed features

    Removed inter_mode_mask and max_intra_bsize.

    Change-Id : I835d31f95af64a524b2fdb685d1d09a6b0ad5c9f

  • avisynth : Bump minimum required version to interface version 6

    2 avril 2015, par Stephen Hutchinson
    avisynth : Bump minimum required version to interface version 6
    

    The AVSC_API changes in the new headers mean that the 2.6 alphas
    are just as incompatible as 2.5 is.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/avisynth.c
  • Python : How to clip/trim required part from the video and move the trimmed video file to other directory

    4 avril 2021, par saurabh

    I'm trying to remove duplicate segments from videos from a directory and paste these trimmed videos to other directory.

    &#xA;

    For example :

    &#xA;

    I've following directory structure for saving live rtsp stream (each 1 min long) :-

    &#xA;

    Live_videos&#xA;------2021-04-04&#xA;      ------stream1&#xA;            -------14 36 08.avi( 1 min)&#xA;                   14 37 08.avi( Saved only till 14 37 39 mark due to disconnect with stream1 camera)&#xA;                   14 38 35.avi( 1 min)&#xA;            stream2&#xA;            -------14 36 15.avi( 1 min)&#xA;                   14 37 15.avi( 1 min)&#xA;                   14 38 14.avi( 1 min)&#xA;

    &#xA;

    So, the disconnect and reconnect time are 14 37 40 and 14 38 34 respectively which will be sent to some other server and that server will search for videos saved in their machine which contains segments from the given timestamps and sends the video file in following directory structure : -

    &#xA;

    Edge_videos&#xA;-----------2021-04-04&#xA;           ----------stream1&#xA;                     -------14 36 35.avi&#xA;                     -------14 37 35.avi&#xA;

    &#xA;

    Now, you can see that the received video files have the required segments from disconnect period as well as duplicate segments which are already saved in Live_videos directory.

    &#xA;

    How do I remove the duplicate segments from the received videos and move only the required trimmed video file to the Live_videos----> stream1 directory and delete all the files from Edge_videos afterwards.

    &#xA;