Advanced search

Medias (1)

Tag: - Tags -/lev manovitch

Other articles (62)

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • HTML5 audio and video support

    13 April 2011, by

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Configurer la prise en compte des langues

    15 November 2010, by

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

On other websites (4810)

  • PHP - Problems running ffmpeg.exe with shell_exec on Windows

    30 September 2012, by King

    I am trying to encode an FLV file to MP4 with ffmpeg.exe, its all working fine when running the code on the commandprompt (I have tried simply echoing the command and pasting it into the cmdline)

    Note: Using windows.

    Here is the code:
    it does not return anything, and does not encode anything, there are no errors, nothing happens :(, system($cmd, $returnval) returns 1 that's all
    running commands like dir works fine, so I have the required access.

    <?php
    $title = $_GET['file'];
    // encoding command > , below shows info "flv/'.$title.'.flv" "mp4/'.$title.'.mp4"
    $cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -i "flv/'.$title.'.flv"');
    $ll = system($cmd, $fv);
    echo "CMD: $cmd \nFull output: $fv \nLL = $ll";
    ?>

    ffmpeg.exe -h will return the help text, I am starting to wonder if it could have something to do with the other outputs having colours in them?

    Any ideas? :O

    (The cd is not the problem because $cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -h'); works fine, its actually already in that directory)

  • Detect Windows Phone 8 in Desktop mode to filter out false positives for file upload support.

    18 July 2013, by blueimp
    Detect Windows Phone 8 in Desktop mode to filter out false positives for file upload support.
    

    Thanks to Achim Stöhr for the findings.

  • Using ffmpeg to play file on windows, should use directshow to render the decoded frame [on hold]

    22 July 2013, by Terry

    I want to write a video file player using ffmpeg(support many format).

    However ffmpeg(/ffplay.exe) using SDL to render the video frame and play the audio sound. I only want to support windows platform. I think the default windows technology/api is more suitalbe for me to render the decoded frame. Do you think so?

    If so, should I use direct show, or just using direct draw for video frame and direct sound for audio frame.

    If using direct show, I think I need to wrapper a direct show source filter(/splitter), then pass down the decoded video/audio frame data to render filter.

    Please help me which is the best choice?