Recherche avancée

Médias (91)

Autres articles (34)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10719)

  • lavc/h264_slice : use sps directly when checking for invalid 8x8 inference

    2 juillet 2016, par Clément Bœsch
    lavc/h264_slice : use sps directly when checking for invalid 8x8 inference
    
    • [DH] libavcodec/h264_slice.c
  • How to segment mp4 with ffmpeg or avconv, fast, where times are specified ?

    14 février 2018, par Vts

    I need to segment mp4 in specified pieces. They are all different durations. Example segmentation :

    1 - 0:00:00 to 0:01:11
    segment 2 - 0:01:11 to 0:04:24
    segment 3 - 0:05:51 to 0:06:30
    ...

    I already wrote a script extracting them one by one, but it is pretty slow.
    I guess because it wastes a lot of time opening the file, decoding and seeking from the beginning.

  • ffmpeg not letting me use variables in place of actual urls or start and stop times to download a portion of a video

    25 novembre 2020, par sathu-beep

    so I have been trying to download some videos using ffmpeg. Im using the subprocess.call('ffmpeg -i $(youtube-dl -f 133 --get-url  l) -ss 0.4 -to 5.5 -c:v copy -c:a copy happy.mp4',shell=True) command, however, It works fine when I replace the l after "get url" with an actual url, but when I set l as a variable that points to a url, it takes l literally, and says that l is an invalid url. How do I get ffmpeg to recognize that l is a variable and use the url stored in it. Ive tried putting quotes, turning it into a string, and nothing works. Any help is appreciated. It also wont let me use variables for stop and start times