Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (61)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (10785)

  • SWAY at RFWS using Coviu

    14 février 2016, par silvia

    A SWAY session by Joanne of Royal Far West School. http://sway.org.au/ via https://coviu.com/ SWAY is an oral language and literacy program based on Aboriginal knowledge, culture and stories. It has been developed by Educators, Aboriginal Education Officers and Speech Pathologists at the Royal Far West School in Manly, NSW.

    Category : Array
    Uploaded by : Silvia Pfeiffer
    Hosted : youtube

  • sting up ffmpeg to work in XAMPP

    1er juin 2012, par danny

    I'm trying to figuring out how to install and use ffmpeg on windows 64 with XAMPP.

    I have flow this tutorial and install the ffmpeg-php librarys and I can see the expansion in the phpinfo().

    Now I put my ffmpeg.exe in the site root folder and I run this php script :

    extension_loaded('ffmpeg') or die('Error in loading ffmpeg');

    function convertTo( $input, $output )
    {
    echo $cmd = "ffmpeg -i $input $output";
    $outputData = array();
    exec( $cmd , $outputData);
    echo "<br />";
    print_r($outputData);
    }

    convertTo( "input.mp4", "output.flv" );

    and I get this output :

    ffmpeg -i input.mp4 output.flv
    Array ( )

    but no encoded file.
    My php safe mode is off and the movie file is in the root folder too.

    workplace info :

    • win7 64bit
    • XAMPP 1.7.2
    • Apache 2.2
    • php 5.3.5

    Help will be appreciated.

  • ffmpeg doesn't see yt_dlp stream

    24 décembre 2022, par matiz22

    I making discord bot and i am trying to move from youtube_dl to yt_dlp to get +18 videos from youtube, I am getting error Output file #0 does not contain any stream.

    &#xA;

    self.YTDL_OPTIONS = {&#x27;format&#x27;: &#x27;bestaudio&#x27;, &#x27;nonplaylist&#x27;: &#x27;True&#x27;, &#x27;youtube_include_dash_manifest&#x27;: False}&#xA;&#xA;self.FFMPEG_OPTIONS = {&#xA;    &#x27;before_options&#x27;: &#x27;-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5&#x27;,&#xA;    &#x27;options&#x27;: &#x27;-vn&#x27;&#xA;}&#xA;

    &#xA;

    with YoutubeDL(self.YTDL_OPTIONS) as ydl:&#xA;    try:&#xA;        info = ydl.extract_info(url, download=False)&#xA;    except:&#xA;        return False&#xA;return {&#xA;    &#x27;link&#x27;: &#x27;https://www.youtube.com/watch?v=&#x27; &#x2B; url,&#xA;    &#x27;thumbnail&#x27;: &#x27;https://i.ytimg.com/vi/&#x27; &#x2B; url &#x2B; &#x27;/hqdefault.jpg?sqp=-oaymwEcCOADEI4CSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&amp;rs=AOn4CLD5uL4xKN-IUfez6KIW_j5y70mlig&#x27;,&#xA;    &#x27;source&#x27;: info[&#x27;formats&#x27;][0][&#x27;url&#x27;],&#xA;    &#x27;title&#x27;: info[&#x27;title&#x27;]&#xA;}&#xA;

    &#xA;

    self.vc[id].play(discord.FFmpegPCMAudio(&#xA;    song[&#x27;source&#x27;], **self.FFMPEG_OPTIONS), after=lambda e: self.play_next(interaction))&#xA;

    &#xA;

    This config works with youtube_dl, but not with yt_dlp. Any ideas what i should change ?

    &#xA;