Recherche avancée

Médias (91)

Autres articles (65)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7451)

  • Running ffmpeg from a windows service on same machine encounters permissions issue

    8 mars 2012, par gaijintendo

    I had been running a Windows Service, form my machine (which has full read/write access to a network drive).

    The command for ffmpeg was something like this :
    - i \filestore\test.avi -b 500000 -s 640x360 -ar 22050 -copyts -y -vcodec libx264 -acodec ac3 -y \filestore\mp4\test.mp4

    Running it from cmd works perfectly. Running it from a windows service, from the same machine, would yield a File Not found type error. Updating to the latest ffmpeg stable changed that to "Permission denied".

    I am running the service it as 'Local Account'. I was intending to run this on another server, so I need to get a grip on this !

    Does running a service on your machine run as a different user to you when you choose 'Local Account' ?

  • Video stream url extract using python

    25 octobre 2016, par AGR

    I am trying to extract video source url from online video, I have tried selenium and scrapy but I can use these tools to extract any data from the website if we know the exact xpath.

    But some websites they don’t have source url on the page (hidden), I can see that on wireshark traffic or “Video DownloadHelper” chrome addon extracts the source.

    Is there any python lib to extract any streaming video url from online page (like Video downloadhelper) ?

    Thanks in advance.

  • How do websites render custom videos programatically ?

    18 juillet 2020, par Eric Smith

    I've noticed a number of websites such as https://biteable.com, https://animoto.com/apps/online-video-maker, etc. that are essentially online video editors that allow users to apply effects, add custom text, etc. and render a video as a result.

    


    I've done a bit of research but can't find any high-level answers on how these websites accomplish creating videos programmatically. I've seen mention of "FFmpeg", but this seems like it would only be able to accomplish basic tasks such as converting a series of images into a video (am I wrong ?).

    


    I know very little about video rendering and was hoping someone had an idea to get me started in my research. Are there libraries that exist that can aid to accomplish what these websites are doing ? Or are these websites starting from the ground up with lower-level languages to accomplish this ?