Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (34)

  • 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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (4906)

  • Compile ffmpeg with flascc with network support

    24 février 2015, par uulker

    I have compiled ffmpeg with flascc expcept networking. Because flascc cant use sockets,poll and select function. I realized network.c file in ffmpeg is a wraper for socket functions. I think socket problem can be solve by writing network.c again with flash socktes.

    But i have no idea with poll and select. Can i implement poll and select function with flash or can i compile ffmpeg without them.

  • Anomalie #4354 : Problème de recherche REGEX sur la recherche multiterme, c’est la merde

    10 février 2021, par cedric -

    cf #3930 qui signalait le problème deja

    En complèment donc, en mysql

    SELECT * FROM `spip_articles` WHERE `chapo` REGEXP ’règles’ 
    


    trouve bien les chapo contenant le mot "règles"
    mais

    SELECT * FROM `spip_articles` WHERE `chapo` REGEXP ’regles’ 
    

    ne trouve rien,
    pas plus que

    SELECT * FROM `spip_articles` WHERE `chapo` REGEXP ’r.gles’ 
    

    et finalement

    SELECT * FROM `spip_articles` WHERE `chapo` REGEXP ’r..?gles’ 
    


    trouve aussi

  • How can I make standard command for video transcoding with ffmpeg

    24 juillet 2019, par parsa

    I want to make a standard command for getting different multi qualities from video with using one ffmpeg command.
    I want to have the standard measures for making each qualities bandwidth for streaming.
    How can I make that.
    Is there any guide for make sure which my below code have standards for streaming ?

    ffmpeg -i input.mp4 -filter_complex [0:v]split=4[s0][s1][s2][s3]; \
    [s0]scale=hd720[v0];[s1]scale=hd480[v1];[s2]scale=nhd[v2];[s3]scale=cga[v3] \
    -map [v0] -map [v1] -map [v2] -map [v3] -map 0:a -c:v libx264 -c:a aac -f tee -g 48 -threads 0 \
    "[select='v\:0,a':f=hls:hls_list_size=0]../video/720p/out.m3u8|
    [select='v\:1,a':f=hls:hls_list_size=0]../video/480p/out.m3u8|
    [select='v\:2,a':f=hls:hls_list_size=0]../video/360p/out.m3u8|
    [select='v\:3,a':f=hls:hls_list_size=0]../video/200p/out.m3u8"