Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (47)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (5303)

  • 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

    


  • 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

    


  • 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;
}