Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (87)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (6660)

  • Java JAR file runs on local machine but missing file on others

    22 avril 2022, par john pear

    The JAR file consists of the ffmpeg.exe file and it can run normally on my machine without any problems. However, if I try to run it on another computer it would tell me that java.io.IOException: Cannot run program "ffmpeg.exe": CreateProcess error=2,The system cannot find the file specified from the stacktrace. The way I imported it was

    


    FFMpeg ffmpeg = new FFMpeg("ffmpeg.exe");  //in res folder

...
//ffmpeg class
public FFMPEG(String ffmepgEXE) {
    this.ffmepgEXE = ffmepgEXE;
}


    


  • Convert file.ts to file.aac with ffmeg

    8 mars 2021, par Md Enayat

    I'm new at this point, could you tell me to convert file.ts to file.aac through FFmpeg and using this below command to convert from my command prompt.

    


    ffmpeg.exe -i file.ts -acodec copy file.aac


    


    and I'm getting this as error :

    


    [NULL @ 000002693d53d380] Unable to find a suitable output format for 'file.aac'
file.aac: Invalid argument


    


    Thank you

    


  • Convert file.ts to file.acc with ffmeg

    8 mars 2021, par Md Enayat

    I'm new at this point, could you tell me to convert file.ts to file.acc through FFmpeg and using this below command to convert from my command prompt.

    


    ffmpeg.exe -i file.ts -acodec copy file.acc


    


    and I'm getting this as error :

    


    [NULL @ 000002693d53d380] Unable to find a suitable output format for 'file.acc'
file.acc: Invalid argument


    


    Thank you