Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (82)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

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

  • Laravel FTP conversion when App is on another server

    11 mars 2016, par yakuzafu

    I’ve got Server A where application is located.

    When you upload a video to application, it is putting a video via FTP to another server. I don’t know how to make something likes this :

    • User uploads a video (like avi, webm, mkv)
    • Application puts it on FTP server
    • FTP server is converting that video to .mp4

    Well, I’ve tried using ffmpeg on PHP, but it is executing only on server where application is located, but I need it on FTP server. Does anyone one how to make it ?

  • 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