Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (63)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • 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 (...)

Sur d’autres sites (8551)

  • using FFMPEG to convert to MP4 with maximum browsers compatibilty

    6 mars 2016, par Karim

    I’m converting from WMV to FLV using FFMPEG, and my problem is that the FLV videos are so big ! the 15 minutes video’s size ranges between 150MB and 1GB !
    I’m using the following FFMPEG command to convert and split WMV videos :

    nohup nice -1 ffmpeg -y -ss 00:00:00 -t 00:15:00 -async 1 -i INPUT.WMV -acodec libmp3lame OUTPUT.FLV

    And I’ve tried converting to MP4 before and the video size was much smaller than the FLV video.

    So my questions are :

    • Would the MP4 videos have any
      compatibility issues browsers ?
    • Would it work on iPhone, iPad ? (I
      know FLV videos doesn’t work on
      iPhones or iPads)
    • What is the best FFMPEG command to
      convert to MP4 without losing the
      quality of the video ?
  • Official RealVideo Specifications

    29 juillet 2010, par Multimedia Mike — General

    A little birdie tipped me off to a publicly-accessible URL on the Helix community site (does anyone actually use Helix ?) that contains a bunch of specifications for RealVideo 8 and 9. I have been sifting through the documents to see exactly what they contain as the different files seem to be higher revisions of the same documents. Here is the title, date, and version of each PDF document :

    • RNDecoderPerformanceARM.pdf : Decoder Performance on StrongARM and XScale ; May 12, 2003 ; Version 1.1
    • rv89_decoder_summary.pdf : RealVideo 8/9 Combo Decoder Summary ; October 23, 2002 ; Version 1.0
    • rv9_dec_external_spec_v14.pdf : RealVideo 9 External Specification ; November 7, 2003 ; Version 1.4
    • rv8_dec_external_spec_v20.pdf : RealVideo 8 External Specification ; September 19, 2002 ; Version 2.0
    • RV8DecoderExternalSpecificationv201.pdf : RealVideo 8 External Specification ; October 20, 2006 ; Version 2.01
    • RV8DecoderExternalSpecificationv202.pdf : RealVideo 8 External Specification ; April 23, 2007 ; Version 2.02
    • RV8DecoderExternalSpecificationv203.pdf : RealVideo 8 External Specification ; July 20, 2007 ; Version 2.03
    • RV8DecoderExternalSpecificationv21.pdf : RealVideo 8 External Specification ; September 11, 2007 ; Version 2.1
    • RV9DecoderExternalSpecificationv15.pdf ; RealVideo 9 External Specification ; January 26, 2002 ; Version 1.5
    • RV9DecoderExternalSpecificationv16.pdf ; RealVideo 9 External Specification ; August 17, 2005 ; Version 1.6
    • RV9DecoderExternalSpecificationv18.pdf ; RealVideo 9 External Specification ; September 11, 2007 ; Version 1.8

    Additionally, there is an Excel spreadsheet entitled realvideo-faq.xls that appears to contain some general tech support advice for using Real’s official code. There are also 3 ZIP archives which contain profiling information about the official source code (post processing and entropy decoding top the charts which is no big surprise).

    I guess the latest version of each document (the ones dated September 11, 2007) are worth mirroring. Unfortunately, those latest document versions use a terrible font.

  • how to ignore or fix false 'unmet dependencies' error ?

    31 août 2014, par yy502
    OS: LMDE 201403

    I previously installed OpenShot (a video editing software), which depends on libmlt6, and libmlt6 depends on ffmpeg. The chain of dependencies auto-installed just fine.

    Today I compiled and installed the latest ffmpeg v2.3.3 and apt-get starts to complain :

    You might want to run 'apt-get -f install' to correct these:
    The following packages have unmet dependencies:
    libmlt6 : Depends: ffmpeg (>= 5:0.6.2~) but 2.3.3-1 is to be installed
    E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

    Well, I’m sure my compiled version of ffmpeg is newer than whatever version libmlt6 requires, but the package manager does not seem to understand the new version number. How can I ignore or fix false ’unmet dependencies’ error, please ?

    Thanks for your time !

    Edit :

    Executing apt-get -f install would install the ffmpeg from repository to /usr/bin/ and uninstall/overwrite my compiled version of ffmpeg in /usr/local/bin/... not really the solution I’m after...

    Edit2 :

    the auto fix of apt-get will remove my compiled version of ffmpeg as prompted below :

    sudo apt-get install -f
    Reading package lists... Done
    Building dependency tree      
    Reading state information... Done
    Correcting dependencies... Done
    The following extra packages will be installed:
     ffmpeg
    Suggested packages:
     nvidia-libvdpau1
    The following packages will be upgraded:
     ffmpeg
    1 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
    Need to get 0 B/1,307 kB of archives.
    After this operation, 242 MB disk space will be freed.
    Do you want to continue? [Y/n] n
    Abort.