Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (111)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

Sur d’autres sites (12241)

  • avutil/frame : Document avcodec_get_frame_class() and the option naming system

    28 mai 2016, par Michael Niedermayer
    avutil/frame : Document avcodec_get_frame_class() and the option naming system
    

    Missing docs found by : nevcairiel

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/frame.h
  • Revision de43d2c67e : Merge "Change naming of end_usage parameter."

    22 avril 2014, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/vp9_cx_iface.c



    Merge "Change naming of end_usage parameter."

  • Naming file output moviepy ffmpeg

    21 avril 2020, par Witness

    I am trying to name clips from a moviepy ffmpeg output based on text in dataframe columns.&#xA;I can create the clips but am having trouble with the naming as Im not sure how to loop through the list &#xA;and add it to the output file name.

    &#xA;&#xA;

    example data frame

    &#xA;&#xA;

    import pandas as pd&#xA;&#xA;data = [["Park","Road",4, 10], ["Road","Street", 80, 95], ["Street","Park",120, 132]] &#xA;df = pd.DataFrame(data, columns = ["Origin", "Destination","Start", "End"])&#xA;&#xA;print (df)&#xA;

    &#xA;&#xA;

    Origin| Destination| Start | End

    &#xA;&#xA;

    0 | Park | Road | 4 | 10

    &#xA;&#xA;

    1 | Road | Street | 80 | 95

    &#xA;&#xA;

    2 | Street| Park | 120| 132

    &#xA;&#xA;

    Id like the output file to show the Origin and Destination text

    &#xA;&#xA;

    videoParkRoad1

    &#xA;&#xA;

    videoRoadStreet2

    &#xA;&#xA;

    videoStreetPark3

    &#xA;&#xA;

    the code I have at the moment

    &#xA;&#xA;

    filename="D:\video" &#x2B; str(i&#x2B;1) &#x2B; ".mp4"&#xA;

    &#xA;&#xA;

    returns

    &#xA;&#xA;

    video1

    &#xA;&#xA;

    video2

    &#xA;&#xA;

    video3

    &#xA;&#xA;

    Hope this makes sense

    &#xA;&#xA;

    Thanks

    &#xA;