Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (73)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (9111)

  • How to code transcoding of TS to MP4 using ffmpeg

    28 juillet 2016, par CodeLearner
    ffmpeg -i testFile.ts -c:a aac -strict -2 -c:v copy testOutputFile.m4a

    The above command successfully converts testFile.ts(H264 video + Mpeg2 audio) to testOutputFile.m4a(H264 video + AAC audio).

    I need to implement the same functionality via code (using the ffmpeg library preferably ffmpeg v1.2).

    Does anybody know how to copy from one container(TS) to another(MP4) while encoding audio but not video ?

  • Complex, how to -o, -mv or similar into this code ? [closed]

    13 décembre 2020, par Sounds Good

    Trying to change location of output file
Using Windows>Ubuntu app>Shell/Cmd>Bash (because Windows alone code does not work at all)
Using Ffmpeg/Youtube-dl/Sed together
It works on its own :

    


    ffmpeg $( youtube-dl -f bestvideo+bestaudio --youtube-skip-dash-manifest -g https://www.youtube.com/watch?v=zSyNOO_gvUY | sed "s/.*/-ss 04:09 -to 04:15 -i &/") -map 0:v -map 1:a -c:v libx264 -c:a aac name.mp4

    


    Bash starts as : :/mnt/c/Users/Machine$

    


    Fallowing just few of many problems I tried to figure out for this :

    


    should I use / or \ to "subfolder"

    


    Start from / or C or Desktop etc.

    


    does -o need to be configured and if so how

    


    placements after Youtube-dl or in the ending by keeping name.mp4 or not, or changing it to
'-o %(title)s.%(ext)s' (title change needed as well thought)

    


    help.

    


  • Evolution #3230 (Nouveau) : Ajouter une pagination standard intégrant les informations sur les pag...

    17 juin 2014, par RastaPopoulos ♥

    Nous n’avons pas de modèle de pagination contenant déjà les informations correctes à propos des pages générées, afin de répondre à la bonne pratique 133 :
    http://checklists.opquast.com/fr/oqs-v2/criteria/la-page-des-resultats-de-recherche-indique-le-nombre-de-resultats-le-nombre-de-pages-de-resultats-et-le-nombre-de-resultats-par-page

    Sur les trois informations demandées, le nombre total de résultats et facilement accessible grâce à #GRAND_TOTAL, et il est généralement utilisé en début de page. Ce point-là n’est donc pas un problème.

    En revanche, au moins un de nos modèles de pagination standard, devrait générer les informations suivantes :
    - Le nombre de pages de résultats
    - Le nombre de résultats par page

    Par exemple quelque chose comme "4 pages de 10 articles". À placer avant (ou après, mais je dirais plutôt avant) la liste des liens de pages.

    Idées en plus :
    - cela pourrait être une option à passer pour l’avoir, ce qui permettrait de l’ajouter sur tous les modèles fournis par défaut
    - il faudrait que la chaîne soit personnalisable pas trop difficilement (si on veut mettre "résultats" plutôt que le nom de l’objet par ex)