Recherche avancée

Médias (91)

Autres articles (101)

  • 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

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (6208)

  • libavformat/mov : Accept known codepoints in ’colr’

    17 août 2016, par Steven Robertson
    libavformat/mov : Accept known codepoints in ’colr’
    

    This change relaxes the whitelist on reading color metadata in MOV/BMFF
    containers. The whitelist on writing values is still in place.

    As a consequence it also fixes an apparent bug in reading ’nclc’ values.
    The ’nclc’ spec [1] is in harmony with ISO 23001-8 for the values it
    lists, but the code getting removed was remapping 5->6 and 6->7 for
    primaries, which is incorrect, and was remapping 6->5 for color matrix
    ("colorspace" in the code), which is equivalent but an unnecessary
    inconsistency. This logic error doesn’t appear in movenc.

    Removing the whitelist allows proper conversion when the source codec
    relies on the container for proper signaling of newer codepoints, such
    as DNxHR and VP9. If converting to a codec or container that has updated
    its spec to include the new codepoints, the metadata will be preserved.
    If going back to MOV/BMFF, the output whitelist will still kick in, so
    this won’t result in out-of-spec files being created.

    [1] https://developer.apple.com/library/mac/technotes/tn2162/_index.html

    Signed-off-by : Steven Robertson <steven@strobe.cc>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c
  • Concatenate two mp4 files using FFmpeg with Android

    4 juillet 2013, par vijay

    I need to merge video files in Android using FFmpeg.I used the code from halfninja and passed the following parameters to run method in Videokit.c.

    ffmpeg -i "concat:input1.mpg|input2.mpg" -c copy output.mpg

    It causes error when these parameters are passed from Android through JNI. Then i replaced -c copy with -vcodec copy -acodec copy.It worked fine.

    Now i tried to concat two .mp4 files / two .3gp files by using the above method and my output format is mp4.The output file is generated but it is empty(0kb).

    When i googled it out, i was asked to convert all mp4 or 3gp files into mpg and then concat it and again convert back to mp4 in the following post :

    Concatenate mp4 files in Android using halfninja ffmpeg (Refer Steven Penny's answer).

    But i have problems(only first input file is converted and the app exits) when converting and storing the intermediate file(i am calling run method thrice).Also this method stores all the input files in the device sdcard and this should not be done.

    -c copy works fine when passing parameters for ffmpeg executable(generated when ndk-build is made) through terminal but it throws an error "unrecognized option c" when called through JNI from android device.Can anyone let me know why this happens ?

    When we look at Steven's answer, we have to call the run method multiple times to covert all the input files and one more time to concat all these.Is it possible to it in a single call ?

    Is it possible to concat video files with different formats without storing the input files in device(mp4+mp4, mp4+3gp,3gp+3gp are my possible combinations of input) ?

    Any help is appreciated.

  • could use some help on ffprobe

    27 décembre 2016, par Telkoboy

    I’m currently running the following command and it’s giving me mostly what I need, but I would like to also have it include the file name.

    for %%A IN (%VAR0%\*.wav) DO "C:\program files (x86)\ffmpeg\bin\ffprobe" -i "%%A" -show_entries format=duration -v quiet -of csv="p=0" >>output.txt

    The above produces this :

    110.994375

    This is great, but what I would really want is something like this as I need to import this data into a db for further processing. I need to know which file the 110.9943765 came from.

    recording1.wav, 110.994375

    Thanks,

    Steven