Recherche avancée

Médias (91)

Autres articles (95)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Online Server with Local Storage + FFMPEG

    25 mars 2014, par user2876479

    I'm making a website that uses videos from local hard disk as well as online.

    The website will be online and all the infos are pulled from online server & online database. But videos are pulled from local harddisk if found locally, otherwise pulled from online server. Is this possible ?

    BTW, planning to host it in hostgator with normal account.

    Also, I'm converting high res videos into low res with ffmpeg using exec.

    Does anybody using this website has to install local server like wamp and ffmpeg in their local system to get all these features ?

    SORRY I'M NEW TO WEB DEVELOPMENT. MY QUESTIONS MAY BE FUNNY. BUT I'M LEARNING.

  • Can't display live streaming video from mobile to wowza streaming software

    11 février 2016, par Muthukumar S

    You have to record frame are convert to video.mp4 files. i need rtmp url live streaming videos in mp4 format. but i work in java CV 1.1 . the mp4 and flv video is working. and it can’t display(any video format) in wowza streaming engine software. thanks.

  • Error Exception : You do not have ffmpeg installed on your machine when using python bar_chart_race with reticulate in rstudio

    27 septembre 2020, par Zhiqiang Wang

    I have run python bar_chart_race successfully in jupyter notebook.

    


    import bar_chart_race as bcr
bcr.bar_chart_race(df=wide_1, filename=None, title='Mortality (per million) by Country')


    


    I have ffmpeg installed on my machine.

    


    > Sys.which("ffmpeg")
                       ffmpeg 
"C:\\ffmpeg\\bin\\ffmpeg.exe" 


    


    However, when I tried the same code in rmarkdown with rstudio reticulate,

    


    import bar_chart_race as bcr
bcr.bar_chart_race(wide_1)


    


    I received the following message :

    


    Exception: You do not have ffmpeg installed on your machine. Download
                            ffmpeg from here: https://www.ffmpeg.org/download.html.
                            
                            Matplotlib's original error message below:

                            [WinError 6] The handle is invalid


    


    reticulate::py_config()

    


    > reticulate::py_config()
python:         C:/ProgramData/Anaconda3/python.exe
libpython:      C:/ProgramData/Anaconda3/python38.dll
pythonhome:     C:/ProgramData/Anaconda3
version:        3.8.3 (default, Jul  2 2020, 17:30:36) [MSC v.1916 64 bit (AMD64)]
Architecture:   64bit
numpy:          C:/ProgramData/Anaconda3/Lib/site-packages/numpy
numpy_version:  1.18.5


    


    ffmpeg works fine with R animated graph packages in rstudio, and with python bar_chart_race. I have tried to re-install ffmpeg several times. Any advice would be appreciated.