Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (81)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (6333)

  • Tools to determine video orientation

    6 avril 2014, par JayLev

    I receive videos from different devices and want to encode them using the correct orientation.

    I've seen some of examples of how to determine the orientation of a video from a iPhone.

    With exiftool and mediainfo I can indeed tell if an iPhone video has to be rotated.

    However, for android videos, both portrait and landscape videos have the same rotation and matrix structure as each other.

    Maybe this is just with my phone, I'm trying to find videos taken from newer droid phones.

    My question however is whether there's other tools or a different way to determine the orientation that'll work with all devices.

    EDIT :
    I just checked a video from a Samsung Galaxy S II, and I can get the orientation from exiftool. So it's not a problem with all android phones.
    My android phone is a HTC Desire running on android 2.2.

    And actually (I didn't even notice before) a portrait video will not be correctly oriented even when playing on the phone. So I guess it's not about the tools, the orientation data just doesn't seem to be correct at all.

  • avformat/avi : Added EVC codec tag to the list of supported codec_id-codec_tag pairs...

    18 avril 2024, par Dawid Kozinski
    avformat/avi : Added EVC codec tag to the list of supported codec_id-codec_tag pairs for AVI muxer
    

    Signed-off-by : Dawid Kozinski <d.kozinski@samsung.com>

    • [DH] libavformat/riff.c
  • FFmpeg exit value = 4

    13 mai 2013, par Yuliya Tarasenko

    I try to run ffmpeg command on android devices. On some of them the code below works excellent and the video is created. But on some(e.g. motorola xoom) the exit value is 4. And while debugging on samsung galaxy s 2.3.3 it frozes up on process.waitFor() ;
    Could anyone help me please ? I can't understand what is wrong.

    public void execFfmpeg(){
       try {
           File resultFile = new File(mContext.getFilesDir() + "/ffmpeg");
           String[] command = null;
           command = new String[] {
               resultFile.getAbsolutePath(),
               "-shortest",
               "-i",
               audioPath,
               "-loop",
               "1",
               "-i",
               imagePath, "-acodec", "ac3", "-ab", "128k", "-vcodec",
               "mpeg4", videoFileName };


           if(command != null){
               Process process = Runtime.getRuntime().exec(command);
               process.waitFor();
               dumpStream(process.getInputStream());
               dumpStream(process.getErrorStream());
               mLogger.error("" + process.exitValue());

               if(process.exitValue() == 0){
               }
               }
           }
       } catch (IOException e) {
           e.printStackTrace();
       } catch (InterruptedException e) {
           e.printStackTrace();
       }
    }