Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (22)

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

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (4823)

  • ffmpeg can't find codec to cut 10 seconds movie

    19 novembre 2017, par Logan

    I tried to cut 10 seconds from movie and convert to MP4. But sometimes I have a error like below :

    Duration: 00:08:52.40, start: 0.000000, bitrate: 1126 kb/s
       Stream #0:0: Audio: wmav2 (a[1][0][0] / 0x0161), 44100 Hz, stereo, fltp, 96 kb/s
       Stream #0:1: Video: wmv3 (Main) (WMV3 / 0x33564D57), yuv420p, 640x480, 1000 kb/s, SAR 1:1 DAR 4:3, 29.97 tbr, 1k tbn, 1k tbc
    [mp4 @ 0x5614bbea1300] Could not find tag for codec wmv3 in stream #0, codec not currently supported in container
    Could not write header for output file #0 (incorrect codec parameters ?): Invalid argumentStream mapping:

    What does this error mean ? Should I install some extra codec ?

    My exec line looks like :

    ffmpeg -i input.wmv -ss 00:00:00 -to 0 -c copy 0:00:10 output.mp4
  • What is download speed i need to watch a video of bitrate 6130 kbps ???Also does my upload speed has anything to do with it ?

    1er juillet 2017, par Tsurgi Blade

    I want to download a HLS using ffmpeg it has many program ID in playlist but i want to download this specific stream with program id 0.

    I am using -map 0:p:0 to download it but im getting bitrate of around 3000 kbps no where near to the in info...ffmpeg snapshot

    how do i get the bitrate mentioned i.e 6130 kbps....
    My download speed is around 32 Mbps= 4 MBps....
    Does it have anything to do with my upload speed ???
    Also after sometime ffmpeg says "not recieving playlist 1" and bitrate drops ???how to avoid it ??

    Thks

  • extract only a small segment in the middle of an mpeg-TS movie using gstreamer

    21 juin 2019, par user1872072

    I want to extract only a small segment in the middle of an mpeg-TS movie using gstreamer library in c.

    Using ffmpeg in a command line this can be done with following command :
    ffmpeg -ss 00:01:00 -i video.ts -to 00:02:00 -c copy -copyts cut.ts

    How can I do this using Gstreamer ?
    Please help