Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (65)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

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

  • every 3 seconds will pause 1 second repeat until the end of the video [FFMpeg]

    7 septembre 2020, par Monti

    I have a video I want to watch for 3 seconds, then pause for 1 second and repeat it until the end of the video. Please help me complete it thank you. This is but what I have tried.

    


    I want it to repeat at the end of the video and also the audio to pause every 3 seconds the audio pause 1 second until the video ends

    


     ffmpeg -i 1.mp4 -vf select='not(between(t\3\,4)' -vsync vfr output.mp4


    


  • ffmpeg - make video for online web players (flowplayer, jw player) [on hold]

    7 janvier 2016, par Ba Ta

    Im restreaming a link in ffmpeg using this command line

    -vcodec copy -c:a libmp3lame -ab 48k -ar 22050

    so if i play in flowplayer (web PLayer) i just listen audio perfect and video has problems "so i just see images insteand of video" its very slow and it blocks

    When i play same video link on pc on vlc player its working perfect and in video codec i see

     H264 - MPEG-4 AVC (avc1)     MPEG Audyo layer 3 (mp3)

    so how to convert this stream so i can watch on web players like flowplayer or jw player

  • OpenCV - Generate adaptive background for video

    17 avril 2019, par bozzmob

    I want to achieve something like this-

    Reference Video

    Say I have a video which is a vertical video(Dimension- 720x1280). I want to create a horizontal video with adaptive background like the video I’ve shown.
    I have written some code for reading and writing to a file.

    video_index = 0
    cap = cv2.VideoCapture(videofiles[0])

    # video resolution: 1920x1080 px
    out = cv2.VideoWriter("video.mp4v",
                         cv2.VideoWriter_fourcc(*'MP4V'),
                         30, (1920, 1080), 1)

    What is the effect of having background to the video which smudges on the sides called in opencv/ffmpeg or otherwise ?
    How do I achieve this effect using code or tools(I am open to using OSS desktop tools) ?